Class SAML2ArtifactType0004
- java.lang.Object
-
- org.opensaml.saml.common.binding.artifact.AbstractSAMLArtifact
-
- org.opensaml.saml.saml2.binding.artifact.AbstractSAML2Artifact
-
- org.opensaml.saml.saml2.binding.artifact.SAML2ArtifactType0004
-
- All Implemented Interfaces:
SAMLArtifact,SAMLSourceIDArtifact,SAML2Artifact
public class SAML2ArtifactType0004 extends AbstractSAML2Artifact implements SAMLSourceIDArtifact
SAML 2 Type 0x004 Artifact. SAML 2, type 4, artifacts contains a 2 byte type code with a value of 4 follwed by a 2 byte endpoint index followed by a 20 byte source ID followed by a 20 byte message handle.
-
-
Field Summary
Fields Modifier and Type Field Description private byte[]messageHandle20 byte message handle.private byte[]sourceID20 byte artifact source ID.static byte[]TYPE_CODESAML 2 artifact type code (0x0004).
-
Constructor Summary
Constructors Constructor Description SAML2ArtifactType0004()Constructor.SAML2ArtifactType0004(byte[] endpointIndex, byte[] source, byte[] handle)Constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getMessageHandle()Gets the 20 byte message handle of the artifact.byte[]getRemainingArtifact()Gets the artifact bytes minus the type code.byte[]getSourceID()Gets the 20 byte source ID of the artifact.static SAML2ArtifactType0004parseArtifact(byte[] artifact)Constructs a SAML 2 artifact from its byte array representation.voidsetMessageHandle(byte[] handle)Sets the 20 byte message handle of the artifact.voidsetSourceID(byte[] newSourceID)Sets the 20 byte source ID of the artifact.-
Methods inherited from class org.opensaml.saml.saml2.binding.artifact.AbstractSAML2Artifact
getArtifactBytes, getEndpointIndex, setEndpointIndex
-
Methods inherited from class org.opensaml.saml.common.binding.artifact.AbstractSAMLArtifact
base64Encode, equals, getTypeCode, hashCode, hexEncode, setTypeCode, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.opensaml.saml.common.binding.artifact.SAMLArtifact
getArtifactBytes, getTypeCode
-
-
-
-
Constructor Detail
-
SAML2ArtifactType0004
public SAML2ArtifactType0004()
Constructor.
-
SAML2ArtifactType0004
public SAML2ArtifactType0004(byte[] endpointIndex, byte[] source, byte[] handle)Constructor.- Parameters:
endpointIndex- 2 byte endpoint index of the artifactsource- 20 byte source ID of the artifacthandle- 20 byte message handle of the artifact- Throws:
IllegalArgumentException- thrown if the endpoint index, source ID, or message handle arrays are not of the right size
-
-
Method Detail
-
parseArtifact
public static SAML2ArtifactType0004 parseArtifact(byte[] artifact)
Constructs a SAML 2 artifact from its byte array representation.- Parameters:
artifact- the byte array representing the artifact- Returns:
- the type 0x0004 artifact created from the byte array
- Throws:
IllegalArgumentException- thrown if the artifact is not the right type or length (44 bytes)
-
getSourceID
public byte[] getSourceID()
Gets the 20 byte source ID of the artifact.- Specified by:
getSourceIDin interfaceSAMLSourceIDArtifact- Returns:
- the source ID of the artifact
-
setSourceID
public void setSourceID(byte[] newSourceID)
Sets the 20 byte source ID of the artifact.- Parameters:
newSourceID- 20 byte source ID of the artifact- Throws:
IllegalArgumentException- thrown if the given source ID is not 20 bytes
-
getMessageHandle
public byte[] getMessageHandle()
Gets the 20 byte message handle of the artifact.- Returns:
- 20 byte message handle of the artifact
-
setMessageHandle
public void setMessageHandle(byte[] handle)
Sets the 20 byte message handle of the artifact.- Parameters:
handle- 20 byte message handle of the artifact
-
getRemainingArtifact
public byte[] getRemainingArtifact()
Gets the artifact bytes minus the type code.- Specified by:
getRemainingArtifactin classAbstractSAMLArtifact- Returns:
- artifact bytes minus the type code
-
-