com.ibm.websphere.wsaddressing.jaxws
Class EndpointReferenceConverter
- java.lang.Object
-
- com.ibm.websphere.wsaddressing.jaxws.EndpointReferenceConverter
-
Deprecated.
public abstract class EndpointReferenceConverter extends java.lang.ObjectThis abstract class is used to convert EndpointReferences between the type which may be used with the WS-Addressing API and types which can be marshalled by JAXB 2.0.
-
-
Constructor Summary
Constructors Constructor and Description EndpointReferenceConverter()Deprecated.
-
Method Summary
Methods Modifier and Type Method and Description static EndpointReferencecreateIBMEndpointReference(SubmissionEndpointReference epr)Deprecated.This method creates an WS-Addressing API EndpointReference based on the provided SubmissionEndpointReference objectstatic EndpointReferencecreateIBMEndpointReference(W3CEndpointReference epr)Deprecated.This method creates an WS-Addressing API EndpointReference based on the provided W3CEndpointReference objectprotected abstract EndpointReferencecreateIBMEndpointReferenceImpl(SubmissionEndpointReference epr)Deprecated.protected abstract EndpointReferencecreateIBMEndpointReferenceImpl(W3CEndpointReference epr)Deprecated.static SubmissionEndpointReferencecreateSubmissionEndpointReference(EndpointReference epr)Deprecated.This method creates SubmissionEndpointReference object based on the provided WS-Addressing API EndpointReference objectprotected abstract SubmissionEndpointReferencecreateSubmissionEndpointReferenceImpl(EndpointReference epr)Deprecated.static W3CEndpointReferencecreateW3CEndpointReference(EndpointReference epr)Deprecated.This method creates W3CEndpointReference object based on the provided WS-Addressing API EndpointReference objectprotected abstract W3CEndpointReferencecreateW3CEndpointReferenceImpl(EndpointReference epr)Deprecated.
-
-
-
Method Detail
-
createIBMEndpointReference
public static EndpointReference createIBMEndpointReference(W3CEndpointReference epr) throws EndpointReferenceCreationException
Deprecated.This method creates an WS-Addressing API EndpointReference based on the provided W3CEndpointReference object
- Parameters:
epr- The W3CEndpointReference to be converted to a com.ibm.websphere.wsaddressing.EndpointReference- Throws:
EndpointReferenceCreationException- thrown if there was a problem creating the EndpointReference.
-
createIBMEndpointReference
public static EndpointReference createIBMEndpointReference(SubmissionEndpointReference epr) throws EndpointReferenceCreationException
Deprecated.This method creates an WS-Addressing API EndpointReference based on the provided SubmissionEndpointReference object
- Parameters:
epr- The SubmissionEndpointReference to be converted to a com.ibm.websphere.wsaddressing.EndpointReference- Throws:
EndpointReferenceCreationException- thrown if there was a problem creating the EndpointReference.
-
createW3CEndpointReference
public static W3CEndpointReference createW3CEndpointReference(EndpointReference epr) throws EndpointReferenceCreationException
Deprecated.This method creates W3CEndpointReference object based on the provided WS-Addressing API EndpointReference object
- Parameters:
epr- The com.ibm.websphere.wsaddressing.EndpointReference to be converted to a W3CEndpointReference- Throws:
EndpointReferenceCreationException- thrown if there was a problem creating the EndpointReference. For example, if the profived EndpointReference does not have the 2005/08 namespace
-
createSubmissionEndpointReference
public static SubmissionEndpointReference createSubmissionEndpointReference(EndpointReference epr) throws EndpointReferenceCreationException
Deprecated.This method creates SubmissionEndpointReference object based on the provided WS-Addressing API EndpointReference object
- Parameters:
epr- The com.ibm.websphere.wsaddressing.EndpointReference to be converted to a SubmissionEndpointReference- Throws:
EndpointReferenceCreationException- thrown if there was a problem creating the EndpointReference. For example, if the profived EndpointReference does not have the 2004/08 namespace
-
createIBMEndpointReferenceImpl
protected abstract EndpointReference createIBMEndpointReferenceImpl(W3CEndpointReference epr) throws EndpointReferenceCreationException
Deprecated.- Throws:
EndpointReferenceCreationException- See Also:
com.ibm.webshere.wsaddressing.jaxws.EndpointReferenceConverter#createIBMEndpointReference
-
createIBMEndpointReferenceImpl
protected abstract EndpointReference createIBMEndpointReferenceImpl(SubmissionEndpointReference epr) throws EndpointReferenceCreationException
Deprecated.- Throws:
EndpointReferenceCreationException- See Also:
com.ibm.webshere.wsaddressing.jaxws.EndpointReferenceConverter#createIBMEndpointReference
-
createW3CEndpointReferenceImpl
protected abstract W3CEndpointReference createW3CEndpointReferenceImpl(EndpointReference epr) throws EndpointReferenceCreationException
Deprecated.- Throws:
EndpointReferenceCreationException- See Also:
com.ibm.webshere.wsaddressing.jaxws.EndpointReferenceConverter#createW3CEndpointReference
-
createSubmissionEndpointReferenceImpl
protected abstract SubmissionEndpointReference createSubmissionEndpointReferenceImpl(EndpointReference epr) throws EndpointReferenceCreationException
Deprecated.- Throws:
EndpointReferenceCreationException- See Also:
com.ibm.webshere.wsaddressing.jaxws.EndpointReferenceConverter#createSubmissionEndpointReference
-
-