Class PluggableComponentParameterSoapDOMarshaler
java.lang.Object
com.collabnet.ce.soap60.marshaling.AbstractStatelessSoapMarshaler
com.collabnet.ce.soap60.webservices.cemain.ObjectSoapDOMarshaler
com.collabnet.ce.soap60.webservices.pluggable.PluggableComponentParameterSoapDOMarshaler
- All Implemented Interfaces:
SoapMarshaler
Marshaler class for PluggableComponentDO.
-
Method Summary
Modifier and TypeMethodDescriptionstatic SoapMarshaler
Returns the singleton class instance.protected void
protectedRmiToSoap
(Object soapObject, Object rmiObject) Unmarshals data from an rmi object to a given SOAP object.protected void
protectedSoapToRmi
(Object soapObject, Object rmiObject) Marshals data from a soap object to a given rmi object.Unmarshals an object used by RMI APIs to a SOAP objectstatic PluggableComponentParameterSoapDO[]
rmiToSoapConfigParams
(com.vasoftware.sf.server.services.pluggable.PluggableComponentParameterDO[] rmiDOs) Helper method to convert RMI to SOAP config param objectsConverts a SOAP object to an object type required by RMI APIs.static com.vasoftware.sf.server.services.pluggable.PluggableComponentParameterDO[]
Helper method to convert SOAP to RMI config param objectsMethods inherited from class com.collabnet.ce.soap60.webservices.cemain.ObjectSoapDOMarshaler
getCoreService
Methods inherited from class com.collabnet.ce.soap60.marshaling.AbstractStatelessSoapMarshaler
isStateless
-
Method Details
-
getInstance
Returns the singleton class instance.- Returns:
- Singleton class instance.
-
soapToRmi
Description copied from interface:SoapMarshaler
Converts a SOAP object to an object type required by RMI APIs.- Parameters:
soapObject
- SOAP object to marshal.- Returns:
- Object required by RMI APIs.
- Throws:
SoapMarshalingException
- when an error is encountered during marshaling.- See Also:
-
protectedSoapToRmi
protected void protectedSoapToRmi(Object soapObject, Object rmiObject) throws SoapMarshalingException Description copied from class:ObjectSoapDOMarshaler
Marshals data from a soap object to a given rmi object. This protected method is primarily used by marshaler classes to marshal members from a super-class marshaler.- Overrides:
protectedSoapToRmi
in classObjectSoapDOMarshaler
- Parameters:
soapObject
- SOAP object.rmiObject
- RMI object.- Throws:
SoapMarshalingException
- when an error is encountered during marshaling.- See Also:
-
rmiToSoap
Description copied from interface:SoapMarshaler
Unmarshals an object used by RMI APIs to a SOAP object- Parameters:
rmiObject
- Object used by RMI apis.- Returns:
- Unmarshaled SOAP object.
- Throws:
SoapMarshalingException
- when an error is encountered during unmarshaling.- See Also:
-
protectedRmiToSoap
protected void protectedRmiToSoap(Object soapObject, Object rmiObject) throws SoapMarshalingException Description copied from class:ObjectSoapDOMarshaler
Unmarshals data from an rmi object to a given SOAP object. This protected method is primarily used by the marshaler classes to unmarshal members from a super-class marshaler.- Overrides:
protectedRmiToSoap
in classObjectSoapDOMarshaler
- Parameters:
soapObject
- SOAP object.rmiObject
- RMI object.- Throws:
SoapMarshalingException
- when an error is encountered during marshaling.- See Also:
-
soapToRmiConfigParams
public static com.vasoftware.sf.server.services.pluggable.PluggableComponentParameterDO[] soapToRmiConfigParams(PluggableComponentParameterSoapDO[] soapDOs) Helper method to convert SOAP to RMI config param objects- Parameters:
soapDOs
- an array of SOAP config param object- Returns:
- an array of RMI config param object
-
rmiToSoapConfigParams
public static PluggableComponentParameterSoapDO[] rmiToSoapConfigParams(com.vasoftware.sf.server.services.pluggable.PluggableComponentParameterDO[] rmiDOs) Helper method to convert RMI to SOAP config param objects- Parameters:
rmiDOs
- an array of SOAP config param object- Returns:
- an array of RMI config param object
-