/* * Copyright 2014 Federal Chancellery Austria * MOA-ID has been developed in a cooperation between BRZ, the Federal * Chancellery Austria - ICT staff unit, and Graz University of Technology. * * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by * the European Commission - subsequent versions of the EUPL (the "Licence"); * You may not use this work except in compliance with the Licence. * You may obtain a copy of the Licence at: * http://www.osor.eu/eupl/ * * Unless required by applicable law or agreed to in writing, software * distributed under the Licence is distributed on an "AS IS" basis, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the Licence for the specific language governing permissions and * limitations under the Licence. * * This product combines work with different licenses. See the "NOTICE" text * file for details on the various modules and licenses. * The "NOTICE" text file is part of the distribution. Any derivative works * that you distribute must include a readable copy of the "NOTICE" text file. */ package at.gv.egovernment.moa.id.config.auth; import java.util.List; import java.util.Map; import at.gv.egovernment.moa.id.commons.db.dao.config.AttributeProviderPlugin; import at.gv.egovernment.moa.id.commons.db.dao.config.CPEPS; import at.gv.egovernment.moa.id.commons.db.dao.config.OAPVP2; import at.gv.egovernment.moa.id.commons.db.dao.config.OASAML1; import at.gv.egovernment.moa.id.commons.db.dao.config.OAStorkAttribute; import at.gv.egovernment.moa.id.commons.db.dao.config.TemplateType; /** * @author tlenz * */ public interface IOAAuthParameters { public static final String ONLINEBKU = "online"; public static final String HANDYBKU = "handy"; public static final String LOCALBKU = "local"; public static final String INDERFEDERATEDIDP = "interfederated"; public String getPublicURLPrefix(); public boolean getBusinessService(); public String getTarget(); public boolean isInderfederationIDP(); /** * @return the identityLinkDomainIdentifier */ public String getIdentityLinkDomainIdentifier(); /** * @return the keyBoxIdentifier */ public String getKeyBoxIdentifier(); /** * @return the transformsInfos */ public List getTransformsInfos(); public OASAML1 getSAML1Parameter(); public OAPVP2 getPVP2Parameter(); /** * @return the templateURL */ public List getTemplateURL(); public String getAditionalAuthBlockText(); public String getBKUURL(String bkutype); public List getBKUURL(); public boolean useSSO(); public boolean useSSOQuestion(); public String getSingleLogOutURL(); /** * @return the mandateProfiles */ public List getMandateProfiles(); /** * @return the identityLinkDomainIdentifierType */ public String getIdentityLinkDomainIdentifierType(); public boolean isShowMandateCheckBox(); public boolean isOnlyMandateAllowed(); /** * Shall we show the stork login in the bku selection frontend? * * @return true, if is we should show stork login */ public boolean isShowStorkLogin(); public Map getFormCustomizaten(); public Integer getQaaLevel(); /** * @return the requestedAttributes */ public List getRequestedAttributes(); public boolean isRequireConsentForStorkAttributes(); public List getStorkAPs(); public byte[] getBKUSelectionTemplate(); public byte[] getSendAssertionTemplate(); public List getPepsList(); public String getIDPAttributQueryServiceURL(); /** * @return */ boolean isInboundSSOInterfederationAllowed(); /** * @return */ boolean isInterfederationSSOStorageAllowed(); /** * @return */ boolean isOutboundSSOInterfederationAllowed(); boolean isTestCredentialEnabled(); List getTestCredentialOIDs(); }