aboutsummaryrefslogtreecommitdiff
path: root/id.server/src/at/gv/egovernment/moa/id/config
diff options
context:
space:
mode:
Diffstat (limited to 'id.server/src/at/gv/egovernment/moa/id/config')
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/config/ConfigurationBuilder.java14
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/config/OAParameter.java8
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/config/auth/OAAuthParameter.java10
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/config/proxy/OAConfiguration.java10
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/config/proxy/OAProxyParameter.java24
5 files changed, 33 insertions, 33 deletions
diff --git a/id.server/src/at/gv/egovernment/moa/id/config/ConfigurationBuilder.java b/id.server/src/at/gv/egovernment/moa/id/config/ConfigurationBuilder.java
index c4483b250..90b780526 100644
--- a/id.server/src/at/gv/egovernment/moa/id/config/ConfigurationBuilder.java
+++ b/id.server/src/at/gv/egovernment/moa/id/config/ConfigurationBuilder.java
@@ -220,8 +220,8 @@ public class ConfigurationBuilder {
/**
* Build a string array with all filenames leading
* to the Transforms Information for the Security Layer
- * @param businessService <code>true</code> if the application is a
- * business application, otherwise <code>false</code>
+ * @param contextNode The node from which should be searched
+ * @param xpathExpr The XPATH expression for the search
* @return String[] of filenames to the Security Layer Transforms Information
* or <code>null</code> if no transforms are included
*/
@@ -483,15 +483,15 @@ public class ConfigurationBuilder {
* the uri string from the MOA ID configuration file via the given xpath expression
* and returns either this string or the default value.
*
- * @param oaAUTHComponent The AuthComponent element to get the template from.
+ * @param oaAuthComponent The AuthComponent element to get the template from.
* @param xpathExpr The xpath expression for selecting the template uri.
* @param defaultURL The default template url.
* @return The template url. This may either the via xpath selected uri
* or, if no template is specified within the online appliacation,
* the default url. Both may be <code>null</code>.
*/
- protected String buildTemplateURL(Element oaAAuthComponent, String xpathExpr, String defaultURL) {
- String templateURL = XPathUtils.getAttributeValue(oaAAuthComponent, xpathExpr, defaultURL);
+ protected String buildTemplateURL(Element oaAuthComponent, String xpathExpr, String defaultURL) {
+ String templateURL = XPathUtils.getAttributeValue(oaAuthComponent, xpathExpr, defaultURL);
if (templateURL != null) {
templateURL = FileUtils.makeAbsoluteURL(templateURL, rootConfigFileDir_);
}
@@ -502,7 +502,7 @@ public class ConfigurationBuilder {
/**
* Method buildConnectionParameter: internal Method for creating a
* ConnectionParameter object with all data found in the incoming element
- * @param root: this Element contains the ConnectionParameter
+ * @param root This Element contains the ConnectionParameter
* @return ConnectionParameter
*/
protected ConnectionParameter buildConnectionParameter(Element root)
@@ -659,7 +659,7 @@ public class ConfigurationBuilder {
*
* @param number The element holding the identification number of the business
* company.
- * @return
+ * @return The domain identifier
*/
protected String buildIdentityLinkDomainIdentifier(Element number) {
if (number == null) {
diff --git a/id.server/src/at/gv/egovernment/moa/id/config/OAParameter.java b/id.server/src/at/gv/egovernment/moa/id/config/OAParameter.java
index b3f46c532..19a27b463 100644
--- a/id.server/src/at/gv/egovernment/moa/id/config/OAParameter.java
+++ b/id.server/src/at/gv/egovernment/moa/id/config/OAParameter.java
@@ -16,7 +16,7 @@ public class OAParameter {
/**
* specifies whether the online application is a business application or not
- * (<code>true</code> if value of {@link oaType} is "businessService"
+ * (<code>true</code> if value of {@link #oaType} is "businessService"
*/
private boolean businessService;
@@ -54,9 +54,9 @@ public class OAParameter {
/**
*
* Sets the type of the online application.
- * If the type is "businessService" the value of {@link businessService} is
- * also set to <code>true</code>
- * @param the type of the online application.
+ * If the type is "businessService" the value of <code>businessService</code>
+ * ({@link #getBusinessService()}) is also set to <code>true</code>
+ * @param oaType The type of the online application.
*/
public void setOaType(String oaType) {
this.oaType = oaType;
diff --git a/id.server/src/at/gv/egovernment/moa/id/config/auth/OAAuthParameter.java b/id.server/src/at/gv/egovernment/moa/id/config/auth/OAAuthParameter.java
index abdf13dd1..ba3b61f9d 100644
--- a/id.server/src/at/gv/egovernment/moa/id/config/auth/OAAuthParameter.java
+++ b/id.server/src/at/gv/egovernment/moa/id/config/auth/OAAuthParameter.java
@@ -175,9 +175,9 @@ public class OAAuthParameter extends OAParameter {
/**
* Sets the security layer version.
- * Also sets {@link slVersion12} to <code>true</code> if the Security Layer
- * version is 1.2.
- * @param the security layer version to be used.
+ * Also sets <code>slVersion12</code> ({@link #getSlVersion12()})
+ * to <code>true</code> if the Security Layer version is 1.2.
+ * @param slVersion The security layer version to be used.
*/
public void setSlVersion(String slVersion) {
this.slVersion = slVersion;
@@ -187,14 +187,14 @@ public class OAAuthParameter extends OAParameter {
}
/**
* Sets the IdentityLinkDomainIdentifier.
- * @param the IdentityLinkDomainIdentifiern number of the online application.
+ * @param identityLinkDomainIdentifier The IdentityLinkDomainIdentifiern number of the online application.
*/
public void setIdentityLinkDomainIdentifier(String identityLinkDomainIdentifier) {
this.identityLinkDomainIdentifier = identityLinkDomainIdentifier;
}
/**
* Sets the transformsInfos.
- * @param the transformsInfos to be used.
+ * @param transformsInfos The transformsInfos to be used.
*/
public void setTransformsInfos(String[] transformsInfos) {
this.transformsInfos = transformsInfos;
diff --git a/id.server/src/at/gv/egovernment/moa/id/config/proxy/OAConfiguration.java b/id.server/src/at/gv/egovernment/moa/id/config/proxy/OAConfiguration.java
index 3ec9e14fd..d25cb3b2b 100644
--- a/id.server/src/at/gv/egovernment/moa/id/config/proxy/OAConfiguration.java
+++ b/id.server/src/at/gv/egovernment/moa/id/config/proxy/OAConfiguration.java
@@ -108,7 +108,7 @@ public class OAConfiguration {
/**
* Sets the basicAuthPasswordMapping.
- * @param basicAuthPasswordMapping The basicAuthPasswordMapping to set
+ * @param basicAuthPassword The basicAuthPasswordMapping to set
*/
public void setBasicAuthPasswordMapping(String basicAuthPassword) {
this.basicAuthPasswordMapping = basicAuthPassword;
@@ -116,7 +116,7 @@ public class OAConfiguration {
/**
* Sets the basicAuthUserIDMapping.
- * @param basicAuthUserIDMapping The basicAuthUserIDMapping to set
+ * @param basicAuthUserID The basicAuthUserIDMapping to set
*/
public void setBasicAuthUserIDMapping(String basicAuthUserID) {
this.basicAuthUserIDMapping = basicAuthUserID;
@@ -124,7 +124,7 @@ public class OAConfiguration {
/**
* Sets the headerAuthMapping.
- * @param headerAuthMapping The headerAuthMapping to set
+ * @param headerAuth The headerAuthMapping to set
*/
public void setHeaderAuthMapping(HashMap headerAuth) {
this.headerAuthMapping = headerAuth;
@@ -140,7 +140,7 @@ public class OAConfiguration {
/**
* Sets the paramAuthMapping.
- * @param paramAuthMapping The paramAuthMapping to set
+ * @param paramAuth The paramAuthMapping to set
*/
public void setParamAuthMapping(HashMap paramAuth) {
this.paramAuthMapping = paramAuth;
@@ -156,7 +156,7 @@ public class OAConfiguration {
/**
* Sets the authType.
- * @param authType The authType to set
+ * @param authLoginType The authType to set
*/
public void setAuthType(String authLoginType) {
this.authType = authLoginType;
diff --git a/id.server/src/at/gv/egovernment/moa/id/config/proxy/OAProxyParameter.java b/id.server/src/at/gv/egovernment/moa/id/config/proxy/OAProxyParameter.java
index 12b16c115..83ab73dcd 100644
--- a/id.server/src/at/gv/egovernment/moa/id/config/proxy/OAProxyParameter.java
+++ b/id.server/src/at/gv/egovernment/moa/id/config/proxy/OAProxyParameter.java
@@ -78,24 +78,24 @@ public class OAProxyParameter extends OAParameter {
}
/**
- * Sets the configFileURL.
- * @param configFileURL The configFileURL to set
+ * Sets the configFileURL for the proxy.
+ * @param oaProxyConfigFileURL The configFileURL to set
*/
public void setConfigFileURL(String oaProxyConfigFileURL) {
this.configFileURL = oaProxyConfigFileURL;
}
/**
- * Sets the sessionTimeOut.
- * @param sessionTimeOut The sessionTimeOut to set
+ * Sets the sessionTimeOut for the proxy.
+ * @param oaProxySessionTimeOut The sessionTimeOut to set
*/
public void setSessionTimeOut(int oaProxySessionTimeOut) {
this.sessionTimeOut = oaProxySessionTimeOut;
}
/**
- * Sets the connectionParameter.
- * @param connectionParameter The connectionParameter to set
+ * Sets the connectionParameter for the proxy.
+ * @param proxyConnectionParameter The connectionParameter to set
*/
public void setConnectionParameter(ConnectionParameter proxyConnectionParameter) {
this.connectionParameter = proxyConnectionParameter;
@@ -142,15 +142,15 @@ public class OAProxyParameter extends OAParameter {
}
/**
- * Sets the connectionBuilderImpl.
+ * Sets the connectionBuilderImpl for the proxy.
* @param connectionBuilderImpl The connectionBuilderImpl to set
*/
- public void setConnectionBuilderImpl(String connectionBuilderImp) {
- this.connectionBuilderImpl = connectionBuilderImp;
+ public void setConnectionBuilderImpl(String connectionBuilderImpl) {
+ this.connectionBuilderImpl = connectionBuilderImpl;
}
/**
- * Sets the loginParameterResolverImpl.
+ * Sets the loginParameterResolverImpl for the proxy.
* @param loginParameterResolverImpl The loginParameterResolverImpl to set
*/
public void setLoginParameterResolverImpl(String loginParameterResolverImpl) {
@@ -158,8 +158,8 @@ public class OAProxyParameter extends OAParameter {
}
/**
- * Sets the loginParameterResolverConfiguration.
- * @param loginParameterResolverImpl The loginParameterResolverImpl to set
+ * Sets the loginParameterResolverConfiguration for the proxy.
+ * @param loginParameterResolverConfiguration The loginParameterResolverImpl to set
*/
public void setLoginParameterResolverConfiguration(String loginParameterResolverConfiguration) {
this.loginParameterResolverConfiguration = loginParameterResolverConfiguration;