Uses of Class
com.aspectran.core.activity.request.FileParameter
-
Packages that use FileParameter Package Description com.aspectran.core.activity A package for handling an activity that perform requests, business logic, and responses.com.aspectran.core.activity.request com.aspectran.core.adapter A package for providing adapters for integration with a core activity.com.aspectran.core.context.expr -
-
Uses of FileParameter in com.aspectran.core.activity
Methods in com.aspectran.core.activity that return FileParameter Modifier and Type Method Description FileParameterCoreTranslet. getFileParameter(java.lang.String name)FileParameterTranslet. getFileParameter(java.lang.String name)Returns aFileParameterobject as a given activity's request parameter name, ornullif the parameter does not exist.FileParameter[]CoreTranslet. getFileParameterValues(java.lang.String name)FileParameter[]Translet. getFileParameterValues(java.lang.String name)Returns an array ofFileParameterobjects containing all of the values the given activity's request parameter has, ornullif the parameter does not exist.Methods in com.aspectran.core.activity with parameters of type FileParameter Modifier and Type Method Description voidCoreTranslet. setFileParameter(java.lang.String name, FileParameter fileParameter)voidCoreTranslet. setFileParameter(java.lang.String name, FileParameter[] fileParameters)voidTranslet. setFileParameter(java.lang.String name, FileParameter fileParameter)Sets theFileParameterobject to the file parameter with the given name.voidTranslet. setFileParameter(java.lang.String name, FileParameter[] fileParameters)Sets the value to the file parameter with the given name. -
Uses of FileParameter in com.aspectran.core.activity.request
Methods in com.aspectran.core.activity.request that return FileParameter Modifier and Type Method Description FileParameterAbstractRequest. getFileParameter(java.lang.String name)FileParameterFileParameterMap. getFileParameter(java.lang.String name)FileParameter[]AbstractRequest. getFileParameterValues(java.lang.String name)FileParameter[]FileParameterMap. getFileParameterValues(java.lang.String name)Methods in com.aspectran.core.activity.request with parameters of type FileParameter Modifier and Type Method Description voidAbstractRequest. setFileParameter(java.lang.String name, FileParameter fileParameter)voidAbstractRequest. setFileParameter(java.lang.String name, FileParameter[] fileParameters)voidFileParameterMap. setFileParameter(java.lang.String name, FileParameter fileParameter)voidFileParameterMap. setFileParameterValues(java.lang.String name, FileParameter[] fileParameters)Method parameters in com.aspectran.core.activity.request with type arguments of type FileParameter Modifier and Type Method Description voidAbstractRequest. putAllFileParameters(MultiValueMap<java.lang.String,FileParameter> fileParameterMap) -
Uses of FileParameter in com.aspectran.core.adapter
Methods in com.aspectran.core.adapter that return FileParameter Modifier and Type Method Description FileParameterRequestAdapter. getFileParameter(java.lang.String name)Returns aFileParameterobject as a given request parameter name, ornullif the file parameter does not exist.FileParameter[]RequestAdapter. getFileParameterValues(java.lang.String name)Returns an array ofFileParameterobjects containing all of the values the given request parameter has, ornullif the parameter does not exist.Methods in com.aspectran.core.adapter with parameters of type FileParameter Modifier and Type Method Description voidRequestAdapter. setFileParameter(java.lang.String name, FileParameter fileParameter)Sets theFileParameterobject to the file parameter with the given name.voidRequestAdapter. setFileParameter(java.lang.String name, FileParameter[] fileParameters)Sets the value to the file parameter with the given name.Method parameters in com.aspectran.core.adapter with type arguments of type FileParameter Modifier and Type Method Description voidRequestAdapter. putAllFileParameters(MultiValueMap<java.lang.String,FileParameter> fileParameterMap)Copies all of the mappings from the specified file parameters. -
Uses of FileParameter in com.aspectran.core.context.expr
Methods in com.aspectran.core.context.expr that return FileParameter Modifier and Type Method Description protected FileParameterTokenExpression. getFileParameter(java.lang.String name)Returns aFileParameterobject as a given activity's request parameter name, ornullif the parameter does not exist.protected FileParameter[]TokenExpression. getFileParameterValues(java.lang.String name)Returns an array ofFileParameterobjects containing all of the values the given activity's request parameter has, ornullif the parameter does not exist.
-