Created
June 17, 2015 10:06
-
-
Save chingovan/d1edeb6ad97af4882650 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Copyright 2015 Chi Ngo ([email protected], chingovan.blogspot.com) | |
*/ | |
package com.blogspot.chingovan.tutorial.search; | |
import javax.portlet.PortletRequest; | |
import com.liferay.portal.kernel.util.ParamUtil; | |
/** | |
* @author chinv | |
* | |
*/ | |
public class StudentSearchTerms extends StudentDisplayTerms { | |
/** | |
* @param portletRequest | |
*/ | |
public StudentSearchTerms(PortletRequest portletRequest) { | |
super(portletRequest); | |
code = ParamUtil.getString(portletRequest, "code"); | |
name = ParamUtil.getString(portletRequest, "name"); | |
gender = ParamUtil.getInteger(portletRequest, "gender"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment