Class SOAP11Context
- java.lang.Object
-
- org.opensaml.messaging.context.BaseContext
-
- org.opensaml.soap.messaging.context.SOAP11Context
-
- All Implemented Interfaces:
Iterable<BaseContext>
public final class SOAP11Context extends BaseContext
Subcontext that carries information about the SOAP 1.1 message transport.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.opensaml.messaging.context.BaseContext
BaseContext.ContextSetNoRemoveIteratorDecorator
-
-
Constructor Summary
Constructors Constructor Description SOAP11Context()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EnvelopegetEnvelope()Gets the current SOAP 1.1 Envelope.FaultgetFault()Get the current SOAP 1.1 Fault related to the current message processing context.IntegergetHTTPResponseStatus()Get the optional HTTP response status code to return.voidsetEnvelope(Envelope newEnvelope)Sets the current SOAP 1.1 Envelope.voidsetFault(Fault newFault)Set the current SOAP 1.1 Fault related to the current message processing context.voidsetHTTPResponseStatus(Integer status)Set the optional HTTP response status code to return.-
Methods inherited from class org.opensaml.messaging.context.BaseContext
addSubcontext, addSubcontext, clearSubcontexts, containsSubcontext, createSubcontext, getParent, getSubcontext, getSubcontext, getSubcontext, getSubcontext, iterator, removeSubcontext, removeSubcontext, setParent
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
getEnvelope
@Nullable public Envelope getEnvelope()
Gets the current SOAP 1.1 Envelope.- Returns:
- current SOAP 1.1 Envelope, may be null
-
setEnvelope
public void setEnvelope(@Nullable Envelope newEnvelope)Sets the current SOAP 1.1 Envelope.- Parameters:
newEnvelope- the current SOAP 1.1 Envelope
-
getFault
@Nullable public Fault getFault()
Get the current SOAP 1.1 Fault related to the current message processing context.- Returns:
- the current SOAP 1.1 Fault, may be null
-
setFault
public void setFault(@Nullable Fault newFault)Set the current SOAP 1.1 Fault related to the current message processing context.- Parameters:
newFault- the new Fault
-
getHTTPResponseStatus
@Nullable public Integer getHTTPResponseStatus()
Get the optional HTTP response status code to return.- Returns:
- HTTP response status code, may be null
-
setHTTPResponseStatus
public void setHTTPResponseStatus(@Nullable Integer status)Set the optional HTTP response status code to return.- Parameters:
status- the HTTP response status code, may be null
-
-