/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.modules.pvp2.api; import java.util.List; import org.opensaml.saml2.metadata.ContactPerson; import org.opensaml.saml2.metadata.Organization; import at.gv.egiz.eaaf.core.exceptions.EAAFException; public interface IPVP2BasicConfiguration { public String getIDPEntityId(String authURL) throws EAAFException; public String getIDPSSOPostService(String authURL) throws EAAFException; public String getIDPSSORedirectService(String authURL) throws EAAFException; public Object getIDPSSOSOAPService(String extractAuthURLFromRequest) throws EAAFException; public List getIDPContacts() throws EAAFException; public Organization getIDPOrganisation() throws EAAFException; }