Package chemaxon.marvin.services.soap
Class SoapServiceDescriptor
- java.lang.Object
-
- chemaxon.marvin.services.ServiceDescriptor
-
- chemaxon.marvin.services.soap.SoapServiceDescriptor
-
@PublicAPI public class SoapServiceDescriptor extends chemaxon.marvin.services.ServiceDescriptor
Service descriptor of SOAP type requests.- Since:
- 5.6
-
-
Field Summary
Fields Modifier and Type Field Description static String
NAMESPACE
Property key for namespace asString
static String
PORT
Property key for port name asString
static String
SERVICE
Property key for service name asString
static String
WSDL
Property key for Service descriptor asString
-
Constructor Summary
Constructors Constructor Description SoapServiceDescriptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getNameSpace()
Returns the namespaceString
getPortName()
Returns the port nameClass<?>[]
getReturnTypes()
Returns the array of return typesString
getSimpleName()
String
getWebServiceName()
Returns the service nameString
getWsdlURI()
Returns the WSDL URIvoid
setNameSpace(String nameSpace)
Sets the namespacevoid
setPortName(String portName)
Sets the port namevoid
setReturnTypes(Class<?>[] returnTypes)
Sets the array of return typesvoid
setWebServiceName(String webServiceName)
Sets the webservice namevoid
setWsdlURI(String wsdlURI)
Sets the WSDL URI-
Methods inherited from class chemaxon.marvin.services.ServiceDescriptor
addArgument, getAlias, getArgument, getArgumentCount, getArguments, getDescription, getIcon, getMethodName, getName, getProperty, getPropertyChangeSupport, getPropertyKeys, getServiceHandler, getURL, isAvailable, removeArgument, setAlias, setArgument, setDescription, setMethodName, setName, setProperty, setURL, toString
-
-
-
-
Field Detail
-
WSDL
public static final String WSDL
Property key for Service descriptor asString
- See Also:
- Constant Field Values
-
NAMESPACE
public static final String NAMESPACE
Property key for namespace asString
- See Also:
- Constant Field Values
-
SERVICE
public static final String SERVICE
Property key for service name asString
- See Also:
- Constant Field Values
-
PORT
public static final String PORT
Property key for port name asString
- See Also:
- Constant Field Values
-
-
Method Detail
-
getWsdlURI
public String getWsdlURI()
Returns the WSDL URI- Returns:
- the WSDL URI
-
setWsdlURI
public void setWsdlURI(String wsdlURI)
Sets the WSDL URI- Parameters:
wsdlURI
- the new WSDL URI
-
getNameSpace
public String getNameSpace()
Returns the namespace- Returns:
- the namespace
-
setNameSpace
public void setNameSpace(String nameSpace)
Sets the namespace- Parameters:
nameSpace
- the new namespace
-
getWebServiceName
public String getWebServiceName()
Returns the service name- Returns:
- the service name
-
setWebServiceName
public void setWebServiceName(String webServiceName)
Sets the webservice name- Parameters:
webServiceName
- the new service name
-
getPortName
public String getPortName()
Returns the port name- Returns:
- the port name
-
setPortName
public void setPortName(String portName)
Sets the port name- Parameters:
portName
- the new port name
-
getReturnTypes
public Class<?>[] getReturnTypes()
Returns the array of return types- Returns:
- the array of return types
-
setReturnTypes
public void setReturnTypes(Class<?>[] returnTypes)
Sets the array of return types- Parameters:
returnTypes
- the array of return types
-
getSimpleName
public String getSimpleName()
- Overrides:
getSimpleName
in classchemaxon.marvin.services.ServiceDescriptor
-
-