aboutsummaryrefslogtreecommitdiff
path: root/id.server/src/at/gv/egovernment/moa/id/config/ConfigurationBuilder.java
diff options
context:
space:
mode:
authorpeter.danner <peter.danner@d688527b-c9ab-4aba-bd8d-4036d912da1d>2007-07-31 14:56:27 +0000
committerpeter.danner <peter.danner@d688527b-c9ab-4aba-bd8d-4036d912da1d>2007-07-31 14:56:27 +0000
commitb573a90aa69b3d66b0a800d76398ef41f5ccb022 (patch)
tree63e1eafa75ae9cda1e4d3fa8d8b010c755115d81 /id.server/src/at/gv/egovernment/moa/id/config/ConfigurationBuilder.java
parent6016b8782baa28a290b672693ff951c44a05bf22 (diff)
downloadmoa-id-spss-b573a90aa69b3d66b0a800d76398ef41f5ccb022.tar.gz
moa-id-spss-b573a90aa69b3d66b0a800d76398ef41f5ccb022.tar.bz2
moa-id-spss-b573a90aa69b3d66b0a800d76398ef41f5ccb022.zip
Fixed Javadoc
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@864 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'id.server/src/at/gv/egovernment/moa/id/config/ConfigurationBuilder.java')
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/config/ConfigurationBuilder.java14
1 files changed, 7 insertions, 7 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) {