package at.gv.egovernment.moa.id.config.auth; /** * Configuration parameters belonging to an online application, * to use with the MOA ID Auth component. * * @author Stefan Knirsch * @version $Id$ */ public class OAAuthParameter { /** * public URL prefix of the online application */ private String publicURLPrefix; /** * key box Identifier (e.g. CertifiedKeyPair, SecureSignatureKeyPair) */ private String keyBoxIdentifier; /** * determines whether "Stammzahl" is to be included in the authentication data */ private boolean provideStammzahl; /** * determines whether AUTH block is to be included in the authentication data */ private boolean provideAuthBlock; /** * determines whether identity link is to be included in the authentication data */ private boolean provideIdentityLink; /** * Returns the provideAuthBlock. * @return String */ public boolean getProvideAuthBlock() { return provideAuthBlock; } /** * Returns the provideIdentityLink. * @return String */ public boolean getProvideIdentityLink() { return provideIdentityLink; } /** * Returns the provideStammzahl. * @return String */ public boolean getProvideStammzahl() { return provideStammzahl; } /** * Returns the publicURLPrefix. * @return String */ public String getPublicURLPrefix() { return publicURLPrefix; } /** * Returns the key box identifier. * @return String */ public String getKeyBoxIdentifier() { return keyBoxIdentifier; } /** * Sets the provideAuthBlock. * @param provideAuthBlock The provideAuthBlock to set */ public void setProvideAuthBlock(boolean provideAuthBlock) { this.provideAuthBlock = provideAuthBlock; } /** * Sets the provideIdentityLink. * @param provideIdentityLink The provideIdentityLink to set */ public void setProvideIdentityLink(boolean provideIdentityLink) { this.provideIdentityLink = provideIdentityLink; } /** * Sets the provideStammzahl. * @param provideStammzahl The provideStammzahl to set */ public void setProvideStammzahl(boolean provideStammzahl) { this.provideStammzahl = provideStammzahl; } /** * Sets the publicURLPrefix. * @param publicURLPrefix The publicURLPrefix to set */ public void setPublicURLPrefix(String publicURLPrefix) { this.publicURLPrefix = publicURLPrefix; } /** * Sets the key box identifier. * @param keyBoxIdentifier to set */ public void setKeyBoxIdentier(String keyBoxIdentifier) { this.keyBoxIdentifier = keyBoxIdentifier; } }