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; /** * determines whether "ZMR-Zahl" is to be included in the authentication data */ private boolean provideZMRZahl; /** * 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 provideZMRZahl. * @return String */ public boolean getProvideZMRZahl() { return provideZMRZahl; } /** * Returns the publicURLPrefix. * @return String */ public String getPublicURLPrefix() { return publicURLPrefix; } /** * 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 provideZMRZahl. * @param provideZMRZahl The provideZMRZahl to set */ public void setProvideZMRZahl(boolean provideZMRZahl) { this.provideZMRZahl = provideZMRZahl; } /** * Sets the publicURLPrefix. * @param publicURLPrefix The publicURLPrefix to set */ public void setPublicURLPrefix(String publicURLPrefix) { this.publicURLPrefix = publicURLPrefix; } }