Package com.axemble.vdoc.sdk.impl
Class EzsPluginRequest
java.lang.Object
com.axemble.vdoc.sdk.impl.EzsPluginRequest
- All Implemented Interfaces:
IPluginRequest
,Serializable
- Author:
- vlygeros
- See Also:
-
Constructor Summary
ConstructorDescriptionEzsPluginRequest
(IModule module, IPlugin plugin, com.axemble.easysite.plugins.mvc.URI uri) -
Method Summary
Modifier and TypeMethodDescriptionConverts the inner value to a string.getParameterValue
(String key) Gets a parameter by its key.String[]
getParameterValues
(String key) Gets all the values associated with a key.Gets the requested string.Gets the requested URIGets the requested URLcom.axemble.easysite.plugins.mvc.URI
getURI()
void
setParameterValue
(String key, String value) Sets the value for the specified parameter.void
setParameterValues
(String key, String[] values) Sets the values associated with a key.
-
Constructor Details
-
EzsPluginRequest
-
-
Method Details
-
getQueryString
Description copied from interface:IPluginRequest
Gets the requested string.- Specified by:
getQueryString
in interfaceIPluginRequest
- Returns:
- The requested string as a java.lang.String object.
-
getRequestURI
Description copied from interface:IPluginRequest
Gets the requested URI- Specified by:
getRequestURI
in interfaceIPluginRequest
- Returns:
- A java.lang.String value.
-
getRequestURL
Description copied from interface:IPluginRequest
Gets the requested URL- Specified by:
getRequestURL
in interfaceIPluginRequest
- Returns:
- A java.lang.String value.
-
getURI
public com.axemble.easysite.plugins.mvc.URI getURI() -
getParameterValue
Description copied from interface:IPluginRequest
Gets a parameter by its key.- Specified by:
getParameterValue
in interfaceIPluginRequest
- Parameters:
key
- The key of the parameter.- Returns:
- The parameter associated with the key.
-
getParameterValues
Description copied from interface:IPluginRequest
Gets all the values associated with a key.- Specified by:
getParameterValues
in interfaceIPluginRequest
- Parameters:
key
- The key of the parameters.- Returns:
- All the values associated with the key.
-
setParameterValue
Description copied from interface:IPluginRequest
Sets the value for the specified parameter.- Specified by:
setParameterValue
in interfaceIPluginRequest
- Parameters:
key
- The key of the parameter.value
- The value of the parameter.
-
setParameterValues
Description copied from interface:IPluginRequest
Sets the values associated with a key.- Specified by:
setParameterValues
in interfaceIPluginRequest
- Parameters:
key
- The key of the parameter.values
- The values to set.
-
convertToString
Description copied from interface:IPluginRequest
Converts the inner value to a string.- Specified by:
convertToString
in interfaceIPluginRequest
- Returns:
- a java.lang.String value.
-