Package org.apache.axis2.transport.base
Class ParamUtils
- java.lang.Object
-
- org.apache.axis2.transport.base.ParamUtils
-
public class ParamUtils extends Object
Utility class with methods to manipulate service or transport parameters.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
getOptionalParam(ParameterInclude paramInclude, String paramName)
static boolean
getOptionalParamBoolean(ParameterInclude paramInclude, String paramName, boolean defaultValue)
static Integer
getOptionalParamInt(ParameterInclude paramInclude, String paramName)
static int
getOptionalParamInt(ParameterInclude paramInclude, String paramName, int defaultValue)
static String
getRequiredParam(ParameterInclude paramInclude, String paramName)
static int
getRequiredParamInt(ParameterInclude paramInclude, String paramName)
-
-
-
Method Detail
-
getRequiredParam
public static String getRequiredParam(ParameterInclude paramInclude, String paramName) throws AxisFault
- Throws:
AxisFault
-
getOptionalParam
public static String getOptionalParam(ParameterInclude paramInclude, String paramName) throws AxisFault
- Throws:
AxisFault
-
getOptionalParamInt
public static Integer getOptionalParamInt(ParameterInclude paramInclude, String paramName) throws AxisFault
- Throws:
AxisFault
-
getOptionalParamInt
public static int getOptionalParamInt(ParameterInclude paramInclude, String paramName, int defaultValue) throws AxisFault
- Throws:
AxisFault
-
getOptionalParamBoolean
public static boolean getOptionalParamBoolean(ParameterInclude paramInclude, String paramName, boolean defaultValue) throws AxisFault
- Throws:
AxisFault
-
getRequiredParamInt
public static int getRequiredParamInt(ParameterInclude paramInclude, String paramName) throws AxisFault
- Throws:
AxisFault
-
-