Package org.teiid.translator.ws
Interface WSConnection
-
- All Superinterfaces:
Connection
- All Known Implementing Classes:
BaseWSConnection
public interface WSConnection extends Connection
Simple interface for web services
-
-
Field Summary
Fields Modifier and Type Field Description static String
STATUS_CODE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> Dispatch<T>
createDispatch(Class<T> type, Service.Mode mode)
<T> Dispatch<T>
createDispatch(String binding, String endpoint, Class<T> type, Service.Mode mode)
String
getEndPoint()
QName
getPortQName()
QName
getServiceQName()
String
getStatusMessage(int status)
URL
getWsdl()
-
Methods inherited from interface org.teiid.resource.api.Connection
close
-
-
-
-
Field Detail
-
STATUS_CODE
static final String STATUS_CODE
- See Also:
- Constant Field Values
-
-
Method Detail
-
createDispatch
<T> Dispatch<T> createDispatch(String binding, String endpoint, Class<T> type, Service.Mode mode)
-
createDispatch
<T> Dispatch<T> createDispatch(Class<T> type, Service.Mode mode) throws IOException
- Throws:
IOException
-
getWsdl
URL getWsdl()
-
getServiceQName
QName getServiceQName()
-
getPortQName
QName getPortQName()
-
getStatusMessage
String getStatusMessage(int status)
-
getEndPoint
String getEndPoint()
-
-