Interface ArtifactResponse

  • All Superinterfaces:
    StatusResponse, XmlSerializable

    @SupportedAll
    public interface ArtifactResponse
    extends StatusResponse
    The ArtifactResopnse message has the complex type ArtifactResponseType.

     <complexType name="ArtifactResponseType">
       <complexContent>
         <extension base="{urn:oasis:names:tc:SAML:2.0:protocol}StatusResponseType">
           <sequence>
             <any/>
           </sequence>
         </extension>
       </complexContent>
     </complexType>
     
    • Method Detail

      • getAny

        String getAny()
        Gets the any element of the response.
        Returns:
        any element in xml string format.
        See Also:
        setAny(String)
      • setAny

        void setAny​(String value)
             throws SAML2Exception
        Sets the any element of the response.
        Parameters:
        value - new any element in xml string format.
        Throws:
        SAML2Exception - if the object is immutable.
        See Also:
        getAny()