summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/szr/xmldsig/ObjectFactory.java
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2014-11-05 08:07:15 +0100
committerThomas Lenz <thomas.lenz@egiz.gv.at>2014-11-05 08:07:15 +0100
commit7a5b350a93990956106d91679240b6e8326cb110 (patch)
tree138196b56fb04f186f05387f8f68be6bd91a0e85 /src/main/java/at/gv/util/xsd/szr/xmldsig/ObjectFactory.java
parente2150f22562b4bc06307f4ac7b842687390e4856 (diff)
downloadegovutils-7a5b350a93990956106d91679240b6e8326cb110.tar.gz
egovutils-7a5b350a93990956106d91679240b6e8326cb110.tar.bz2
egovutils-7a5b350a93990956106d91679240b6e8326cb110.zip
change more client implementations to APACHE CXF
Diffstat (limited to 'src/main/java/at/gv/util/xsd/szr/xmldsig/ObjectFactory.java')
-rw-r--r--src/main/java/at/gv/util/xsd/szr/xmldsig/ObjectFactory.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/at/gv/util/xsd/szr/xmldsig/ObjectFactory.java b/src/main/java/at/gv/util/xsd/szr/xmldsig/ObjectFactory.java
index 5267115..eaf3663 100644
--- a/src/main/java/at/gv/util/xsd/szr/xmldsig/ObjectFactory.java
+++ b/src/main/java/at/gv/util/xsd/szr/xmldsig/ObjectFactory.java
@@ -30,11 +30,11 @@ public class ObjectFactory {
}
/**
- * Create an instance of {@link RSAKeyValueType }
+ * Create an instance of {@link KeyValueType }
*
*/
- public RSAKeyValueType createRSAKeyValueType() {
- return new RSAKeyValueType();
+ public KeyValueType createKeyValueType() {
+ return new KeyValueType();
}
/**
@@ -46,11 +46,11 @@ public class ObjectFactory {
}
/**
- * Create an instance of {@link KeyValueType }
+ * Create an instance of {@link RSAKeyValueType }
*
*/
- public KeyValueType createKeyValueType() {
- return new KeyValueType();
+ public RSAKeyValueType createRSAKeyValueType() {
+ return new RSAKeyValueType();
}
}