aboutsummaryrefslogtreecommitdiff
path: root/id.server/src/at/gv/egovernment/moa/id/auth/builder/Builder.java
diff options
context:
space:
mode:
author(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-09-21 13:58:16 +0000
committer(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-09-21 13:58:16 +0000
commitd4a632ad693f55ad69f9f1bad3c171ce2f41d875 (patch)
tree25f60d422dc51aeee5cea7bcf716a033505c0458 /id.server/src/at/gv/egovernment/moa/id/auth/builder/Builder.java
parent0e450f0526f6fe1260df693d1374a7488c0d526b (diff)
downloadmoa-id-spss-d4a632ad693f55ad69f9f1bad3c171ce2f41d875.tar.gz
moa-id-spss-d4a632ad693f55ad69f9f1bad3c171ce2f41d875.tar.bz2
moa-id-spss-d4a632ad693f55ad69f9f1bad3c171ce2f41d875.zip
This commit was manufactured by cvs2svn to create tagtags/Build-SPSS-1_3_0_D01
'Build-SPSS-1_3_0_D01'. git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/tags/Build-SPSS-1_3_0_D01@514 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'id.server/src/at/gv/egovernment/moa/id/auth/builder/Builder.java')
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/auth/builder/Builder.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/id.server/src/at/gv/egovernment/moa/id/auth/builder/Builder.java b/id.server/src/at/gv/egovernment/moa/id/auth/builder/Builder.java
deleted file mode 100644
index e5bbaa585..000000000
--- a/id.server/src/at/gv/egovernment/moa/id/auth/builder/Builder.java
+++ /dev/null
@@ -1,30 +0,0 @@
-package at.gv.egovernment.moa.id.auth.builder;
-
-import at.gv.egovernment.moa.id.BuildException;
-
-/**
- * Base class for HTML/XML builders providing commonly useful functions.
- *
- * @author Paul Ivancsics
- * @version $Id$
- */
-public class Builder {
-
- /**
- * Replaces a special tag in an XML or HTML template by a value.
- * @param htmlTemplate template
- * @param tag special tag
- * @param value value replacing the tag
- * @return XML or HTML code, the tag replaced
- * @throws BuildException when template does not contain the tag
- */
- protected String replaceTag(String template, String tag, String value) throws BuildException {
- int index = template.indexOf(tag);
- if (index < 0)
- throw new BuildException(
- "builder.01",
- new Object[] {"&lt;" + tag.substring(1, tag.length() - 1) + "&gt;"});
- return template.substring(0, index) + value + template.substring(index + tag.length());
- }
-
-}