Package | Description |
---|---|
org.springframework.web.portlet.bind |
Provides portlet-specific data binding functionality.
|
Modifier and Type | Class and Description |
---|---|
class |
MissingPortletRequestParameterException
PortletRequestBindingException subclass that indicates a missing parameter. |
Modifier and Type | Method and Description |
---|---|
void |
PortletRequestDataBinder.closeNoCatch()
Treats errors as fatal.
|
static Boolean |
PortletRequestUtils.getBooleanParameter(javax.portlet.PortletRequest request,
String name)
Get a Boolean parameter, or
null if not present. |
static Double |
PortletRequestUtils.getDoubleParameter(javax.portlet.PortletRequest request,
String name)
Get a Double parameter, or
null if not present. |
static Float |
PortletRequestUtils.getFloatParameter(javax.portlet.PortletRequest request,
String name)
Get a Float parameter, or
null if not present. |
static Integer |
PortletRequestUtils.getIntParameter(javax.portlet.PortletRequest request,
String name)
Get an Integer parameter, or
null if not present. |
static Long |
PortletRequestUtils.getLongParameter(javax.portlet.PortletRequest request,
String name)
Get a Long parameter, or
null if not present. |
static boolean |
PortletRequestUtils.getRequiredBooleanParameter(javax.portlet.PortletRequest request,
String name)
Get a boolean parameter, throwing an exception if it isn't found
or isn't a boolean.
|
static boolean[] |
PortletRequestUtils.getRequiredBooleanParameters(javax.portlet.PortletRequest request,
String name)
Get an array of boolean parameters, throwing an exception if not found
or one isn't a boolean.
|
static double |
PortletRequestUtils.getRequiredDoubleParameter(javax.portlet.PortletRequest request,
String name)
Get a double parameter, throwing an exception if it isn't found or isn't a number.
|
static double[] |
PortletRequestUtils.getRequiredDoubleParameters(javax.portlet.PortletRequest request,
String name)
Get an array of double parameters, throwing an exception if not found or one is not a number.
|
static float |
PortletRequestUtils.getRequiredFloatParameter(javax.portlet.PortletRequest request,
String name)
Get a float parameter, throwing an exception if it isn't found or isn't a number.
|
static float[] |
PortletRequestUtils.getRequiredFloatParameters(javax.portlet.PortletRequest request,
String name)
Get an array of float parameters, throwing an exception if not found or one is not a number.
|
static int |
PortletRequestUtils.getRequiredIntParameter(javax.portlet.PortletRequest request,
String name)
Get an int parameter, throwing an exception if it isn't found or isn't a number.
|
static int[] |
PortletRequestUtils.getRequiredIntParameters(javax.portlet.PortletRequest request,
String name)
Get an array of int parameters, throwing an exception if not found or one is not a number..
|
static long |
PortletRequestUtils.getRequiredLongParameter(javax.portlet.PortletRequest request,
String name)
Get a long parameter, throwing an exception if it isn't found or isn't a number.
|
static long[] |
PortletRequestUtils.getRequiredLongParameters(javax.portlet.PortletRequest request,
String name)
Get an array of long parameters, throwing an exception if not found or one is not a number.
|
static String |
PortletRequestUtils.getRequiredStringParameter(javax.portlet.PortletRequest request,
String name)
Get a String parameter, throwing an exception if it isn't found or is empty.
|
static String[] |
PortletRequestUtils.getRequiredStringParameters(javax.portlet.PortletRequest request,
String name)
Get an array of String parameters, throwing an exception if not found or one is empty.
|
static String |
PortletRequestUtils.getStringParameter(javax.portlet.PortletRequest request,
String name)
Get a String parameter, or
null if not present. |
Copyright © 2015. All rights reserved.