Subversion Repositories bacoAlunos

Rev

Blame | Compare with Previous | Last modification | View Log | RSS feed

package pt.estgp.estgweb.web.form.commons;

import pt.estgp.estgweb.web.form.AddRolesForm;
import pt.estgp.estgweb.web.form.ApplicationForm;
import pt.estgp.estgweb.domain.views.BlogView;
import pt.estgp.estgweb.services.common.SearchTypeEnum;
import org.apache.struts.upload.FormFile;

/**
 * @author Jorge Machado
 * @date 21/Abr/2008
 * @time 14:28:59
 * @see pt.estgp.estgweb.web.form.blogs
 */

public class SearchForm extends ApplicationForm {

    private 1.5.0/docs/api/java/lang/String.html">String query;
    private 1.5.0/docs/api/java/lang/String.html">String searchType = SearchTypeEnum.AllWords.getMessageKey();

    public 1.5.0/docs/api/java/lang/String.html">String getQuery() {
        return query;
    }

    public void setQuery(1.5.0/docs/api/java/lang/String.html">String query) {
        this.query = query;
    }

    public 1.5.0/docs/api/java/lang/String.html">String getSearchType() {
        return searchType;
    }

    public void setSearchType(1.5.0/docs/api/java/lang/String.html">String searchType) {
        this.searchType = searchType;
    }
}