Class Saml2ResponseAttributes

java.lang.Object
se.swedenconnect.spring.saml.idp.response.Saml2ResponseAttributes
All Implemented Interfaces:
Serializable

public class Saml2ResponseAttributes extends Object implements Serializable
Attributes needed when creating a SAML Response message.
Author:
Martin Lindström
See Also:
  • Constructor Details

    • Saml2ResponseAttributes

      public Saml2ResponseAttributes()
      Constructor.
  • Method Details

    • getRelayState

      public String getRelayState()
      Gets the RelayState variable.
      Returns:
      the RelayState variable
    • setRelayState

      public void setRelayState(String relayState)
      Assigns the RelayState variable.
      Parameters:
      relayState - the RelayState variable
    • getInResponseTo

      public String getInResponseTo()
      Gets the InResponseTo attribute.
      Returns:
      the InResponseTo attribute
    • setInResponseTo

      public void setInResponseTo(String inResponseTo)
      Assigns the InResponseTo attribute.
      Parameters:
      inResponseTo - the InResponseTo attribute
    • getDestination

      public String getDestination()
      Gets the Destination attribute.
      Returns:
      the Destination attribute
    • setDestination

      public void setDestination(String destination)
      Gets the Destination attribute.
      Parameters:
      destination - the Destination attribute
    • getPeerMetadata

      public org.opensaml.saml.saml2.metadata.EntityDescriptor getPeerMetadata()
      Gets the peer SAML metadata.
      Returns:
      the peer SAML metadata
    • setPeerMetadata

      public void setPeerMetadata(org.opensaml.saml.saml2.metadata.EntityDescriptor peerMetadata)
      Assigns the peer SAML metadata.
      Parameters:
      peerMetadata - the peer SAML metadata
    • copyInto

      public void copyInto(Saml2ResponseAttributes responseAttributes)
      Fills the object with the supplied Saml2ResponseAttributes.
      Parameters:
      responseAttributes - the object to copy from