Package org.n52.iceland.service
Interface CommunicationObjectWithSoapHeader
-
- All Known Implementing Classes:
ServiceResponse
public interface CommunicationObjectWithSoapHeaderInterface to provide SOAP Header support in Request and Response objects.- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<SoapHeader>getSoapHeader()booleanisSetSoapHeader()Convenience method to check if the SoapHeader is set.voidsetSoapHeader(List<SoapHeader> header)
-
-
-
Method Detail
-
getSoapHeader
List<SoapHeader> getSoapHeader()
- Returns:
- the SoapHeader encoded as an InputStream containing XML.
-
setSoapHeader
void setSoapHeader(List<SoapHeader> header)
- Parameters:
header- the SoapHeader encoded as an InputStream containing XML.
-
isSetSoapHeader
boolean isSetSoapHeader()
Convenience method to check if the SoapHeader is set.- Returns:
- true if Header is set
-
-