package at.gv.egiz.eaaf.modules.pvp2.api.reqattr; import java.util.List; import javax.xml.namespace.QName; import org.opensaml.common.SAMLObject; import at.gv.egiz.eaaf.modules.pvp2.PVPConstants; public interface EAAFRequestedAttributes extends SAMLObject { /** The Constant DEFAULT_ELEMENT_LOCAL_NAME. */ String DEF_LOCAL_NAME = "RequestedAttributes"; /** Default element name. */ QName DEFAULT_ELEMENT_NAME = new QName(PVPConstants.EIDAS10_SAML_NS, DEF_LOCAL_NAME, PVPConstants.EIDAS10_PREFIX); /** Local name of the XSI type. */ String TYPE_LOCAL_NAME = "RequestedAttributesType"; /** QName of the XSI type. */ QName TYPE_NAME = new QName(PVPConstants.EIDAS10_SAML_NS, TYPE_LOCAL_NAME, PVPConstants.EIDAS10_PREFIX); /** * Gets the attributes. * * @return the attributes */ List getAttributes(); }