| java.lang.Object org.apache.axis2.addressing.wsdl.WSDL11DefaultActionPatternHelper
WSDL11DefaultActionPatternHelper | public class WSDL11DefaultActionPatternHelper (Code) | | Generates a wsa:Action value using the Default Action Pattern defined at
http://www.w3.org/TR/2006/WD-ws-addr-wsdl-20060216/#defactionwsdl11
|
Method Summary | |
public static String | generateActionFromFaultElement(Definition def, PortType wsdl4jPortType, Operation op, Fault fault) | public static String | generateActionFromInputElement(Definition def, PortType wsdl4jPortType, Operation op, Input input) | public static String | generateActionFromOutputElement(Definition def, PortType wsdl4jPortType, Operation op, Output output) | protected static String | getFaultActionFromStringInformation(String targetNamespace, String portTypeName, String operationName, String faultName) | protected static String | getInputActionFromStringInformation(String messageExchangePattern, String targetNamespace, String portTypeName, String operationName, String inputName) | protected static String | getOutputActionFromStringInformation(String messageExchangePattern, String targetNamespace, String portTypeName, String operationName, String outputName) |
generateActionFromFaultElement | public static String generateActionFromFaultElement(Definition def, PortType wsdl4jPortType, Operation op, Fault fault)(Code) | | Generate the Action for a Fault using the Default Action Pattern
Pattern is defined as [target namespace][delimiter][port type name][delimiter][operation name][delimiter]Fault[delimiter][fault name]
Parameters: def - is required to obtain the targetNamespace Parameters: wsdl4jPortType - is required to obtain the portType name Parameters: op - is required to obtain the operation name Parameters: fault - is required to obtain the fault name a wsa:Action value based on the Default Action Pattern and the provided objects |
generateActionFromInputElement | public static String generateActionFromInputElement(Definition def, PortType wsdl4jPortType, Operation op, Input input)(Code) | | Generate the Action for an Input using the Default Action Pattern
Pattern is defined as [target namespace][delimiter][port type name][delimiter][input name]
Parameters: def - is required to obtain the targetNamespace Parameters: wsdl4jPortType - is required to obtain the portType name Parameters: op - is required to generate the input name if not explicitly specified Parameters: input - is required for its name if specified a wsa:Action value based on the Default Action Pattern and the provided objects |
generateActionFromOutputElement | public static String generateActionFromOutputElement(Definition def, PortType wsdl4jPortType, Operation op, Output output)(Code) | | Generate the Action for an Output using the Default Action Pattern
Pattern is defined as [target namespace][delimiter][port type name][delimiter][output name]
Parameters: def - is required to obtain the targetNamespace Parameters: wsdl4jPortType - is required to obtain the portType name Parameters: op - is required to generate the output name if not explicitly specified Parameters: output - is required for its name if specified a wsa:Action value based on the Default Action Pattern and the provided objects |
getFaultActionFromStringInformation | protected static String getFaultActionFromStringInformation(String targetNamespace, String portTypeName, String operationName, String faultName)(Code) | | |
getInputActionFromStringInformation | protected static String getInputActionFromStringInformation(String messageExchangePattern, String targetNamespace, String portTypeName, String operationName, String inputName)(Code) | | |
getOutputActionFromStringInformation | protected static String getOutputActionFromStringInformation(String messageExchangePattern, String targetNamespace, String portTypeName, String operationName, String outputName)(Code) | | |
|
|