Package org.apache.axis2.description
Class ModuleConfiguration
- java.lang.Object
-
- org.apache.axis2.description.ModuleConfiguration
-
- All Implemented Interfaces:
ParameterInclude
public class ModuleConfiguration extends Object implements ParameterInclude
This is to store deployment time data , described by Right now this just keeps stores the set of parameters....
-
-
Constructor Summary
Constructors Constructor Description ModuleConfiguration(String moduleName, ParameterInclude parent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddParameter(Parameter param)Method addParameter.voiddeserializeParameters(OMElement parameterElement)StringgetModuleName()ParametergetParameter(String name)Method getParameter.ArrayList<Parameter>getParameters()Gets all the parameters in a given description.booleanisParameterLocked(String parameterName)Checks whether the parameter is locked at any level.voidremoveParameter(Parameter param)
-
-
-
Constructor Detail
-
ModuleConfiguration
public ModuleConfiguration(String moduleName, ParameterInclude parent)
-
-
Method Detail
-
addParameter
public void addParameter(Parameter param) throws AxisFault
Description copied from interface:ParameterIncludeMethod addParameter.- Specified by:
addParameterin interfaceParameterInclude- Throws:
AxisFault
-
removeParameter
public void removeParameter(Parameter param) throws AxisFault
- Specified by:
removeParameterin interfaceParameterInclude- Throws:
AxisFault
-
deserializeParameters
public void deserializeParameters(OMElement parameterElement) throws AxisFault
- Specified by:
deserializeParametersin interfaceParameterInclude- Throws:
AxisFault
-
getModuleName
public String getModuleName()
-
getParameter
public Parameter getParameter(String name)
Description copied from interface:ParameterIncludeMethod getParameter.- Specified by:
getParameterin interfaceParameterInclude- Returns:
- Returns Parameter.
-
getParameters
public ArrayList<Parameter> getParameters()
Description copied from interface:ParameterIncludeGets all the parameters in a given description.- Specified by:
getParametersin interfaceParameterInclude- Returns:
- Returns ArrayList.
-
isParameterLocked
public boolean isParameterLocked(String parameterName)
Description copied from interface:ParameterIncludeChecks whether the parameter is locked at any level.- Specified by:
isParameterLockedin interfaceParameterInclude
-
-