Class SAML2ArtifactType0004

    • Field Detail

      • TYPE_CODE

        public static final byte[] TYPE_CODE
        SAML 2 artifact type code (0x0004).
      • sourceID

        private byte[] sourceID
        20 byte artifact source ID.
      • messageHandle

        private byte[] messageHandle
        20 byte message handle.
    • Constructor Detail

      • SAML2ArtifactType0004

        public SAML2ArtifactType0004()
        Constructor.
      • SAML2ArtifactType0004

        public SAML2ArtifactType0004​(byte[] endpointIndex,
                                     byte[] source,
                                     byte[] handle)
        Constructor.
        Parameters:
        endpointIndex - 2 byte endpoint index of the artifact
        source - 20 byte source ID of the artifact
        handle - 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:
        getSourceID in interface SAMLSourceIDArtifact
        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:
        getRemainingArtifact in class AbstractSAMLArtifact
        Returns:
        artifact bytes minus the type code