From b573a90aa69b3d66b0a800d76398ef41f5ccb022 Mon Sep 17 00:00:00 2001 From: "peter.danner" Date: Tue, 31 Jul 2007 14:56:27 +0000 Subject: Fixed Javadoc git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@864 d688527b-c9ab-4aba-bd8d-4036d912da1d --- .../moa/id/config/ConfigurationBuilder.java | 14 ++++++------- .../gv/egovernment/moa/id/config/OAParameter.java | 8 ++++---- .../moa/id/config/auth/OAAuthParameter.java | 10 ++++----- .../moa/id/config/proxy/OAConfiguration.java | 10 ++++----- .../moa/id/config/proxy/OAProxyParameter.java | 24 +++++++++++----------- 5 files changed, 33 insertions(+), 33 deletions(-) (limited to 'id.server/src/at/gv/egovernment/moa/id/config') 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 true if the application is a - * business application, otherwise false + * @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 null 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 null. */ - 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 - * (true if value of {@link oaType} is "businessService" + * (true 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 true - * @param the type of the online application. + * If the type is "businessService" the value of businessService + * ({@link #getBusinessService()}) is also set to true + * @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 true if the Security Layer - * version is 1.2. - * @param the security layer version to be used. + * Also sets slVersion12 ({@link #getSlVersion12()}) + * to true 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; -- cgit v1.2.3