Package com.sun.identity.saml2.protocol
Interface ArtifactResolve
- 
- All Superinterfaces:
 RequestAbstract,XmlSerializable
@SupportedAll public interface ArtifactResolve extends RequestAbstract
TheArtifactResolvemessage is used to request that a SAML protocol message be returned in anArtifactResponsemessage by specifying an artifact that represents the SAML protocol message. It has the complex typeArtifactResolveType.<complexType name="ArtifactResolveType"> <complexContent> <extension base="{urn:oasis:names:tc:SAML:2.0:protocol}RequestAbstractType"> <sequence> <element ref="{urn:oasis:names:tc:SAML:2.0:protocol}Artifact"/> </sequence> </extension> </complexContent> </complexType> 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ArtifactgetArtifact()Gets theArtifactof the request.voidsetArtifact(Artifact value)Sets theArtifactof the request.- 
Methods inherited from interface com.sun.identity.saml2.protocol.RequestAbstract
getConsent, getDestination, getExtensions, getID, getIssueInstant, getIssuer, getSignature, getVersion, isMutable, isSignatureValid, isSigned, makeImmutable, setConsent, setDestination, setExtensions, setID, setIssueInstant, setIssuer, setVersion, sign 
- 
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getArtifact
Artifact getArtifact()
Gets theArtifactof the request.- Returns:
 Artifactof the request.- See Also:
 setArtifact(Artifact)
 
- 
setArtifact
void setArtifact(Artifact value) throws SAML2Exception
Sets theArtifactof the request.- Parameters:
 value- newArtifact.- Throws:
 SAML2Exception- if the object is immutable.- See Also:
 getArtifact()
 
 - 
 
 -