summaryrefslogtreecommitdiff
path: root/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect
diff options
context:
space:
mode:
Diffstat (limited to 'bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect')
-rw-r--r--bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/DataObject.java2
-rw-r--r--bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/IdValueFactoryImpl.java8
-rw-r--r--bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/STALPrivateKey.java7
3 files changed, 8 insertions, 9 deletions
diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/DataObject.java b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/DataObject.java
index 234d8a99..83537ea2 100644
--- a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/DataObject.java
+++ b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/DataObject.java
@@ -202,7 +202,7 @@ public class DataObject {
/**
* Creates a new instance.
*
- * @param document the document of the target signature
+ * @param signatureContext the SignatureContext
*/
public DataObject(SignatureContext signatureContext) {
this.ctx = signatureContext;
diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/IdValueFactoryImpl.java b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/IdValueFactoryImpl.java
index 6856ab1a..ca4eb6c5 100644
--- a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/IdValueFactoryImpl.java
+++ b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/IdValueFactoryImpl.java
@@ -34,16 +34,16 @@ import java.security.SecureRandom;
* This IdValueFactory creates <code>xsd:Id</code>-attribute values of the form
* '<code>&lt;elementName&gt;-&lt;random&gt;-&lt;sequenceNumber&gt;</code>',
* where
+ * </p>
* <ul>
- * <li><code>&lt;elementName&gt;</code> is the name provided at
+ * <li><code>&lt;elementName&gt;</code>; is the name provided at
* {@link #createIdValue(String)},</li>
- * <li><code>&lt;random&gt;</code> is a random generated fixed value for an
+ * <li><code>&lt;random&gt;</code>; is a random generated fixed value for an
* instance of this IdValueFactory and</li>
- * <li><code>&lt;sequenceNumber&gt;</code> is the sequence number of the value
+ * <li><code>&lt;sequenceNumber&gt;</code>; is the sequence number of the value
* generated for a given <code>elementName</code> by an instance of this
* IdValueFactory.</li>
* </ul>
- * </p>
*
* @author mcentner
*/
diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/STALPrivateKey.java b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/STALPrivateKey.java
index 1e70e107..55aa8c0d 100644
--- a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/STALPrivateKey.java
+++ b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/xsect/STALPrivateKey.java
@@ -65,8 +65,7 @@ public class STALPrivateKey implements PrivateKey {
/**
* Creates a new instance of this <code>STALPrivateKey</code> with the given
* <code>stal</code> implementation, signature <code>algorithm</code>,
- * <code>keyboxIdentifier</code> and <code>hashDataInputCallback</code>
- * interface.
+ * <code>keyboxIdentifier</code> and <code>dataObjects</code>.
*
* @param stal
* the STAL implementation
@@ -74,8 +73,8 @@ public class STALPrivateKey implements PrivateKey {
* the signature algorithm
* @param keyboxIdentifier
* the keybox identifier
- * @param hashDataInputCallback
- * the interface for obtaining the has input data
+ * @param dataObjects
+ * the data objects
*/
public STALPrivateKey(STAL stal,
String algorithm, String keyboxIdentifier, List<DataObject> dataObjects) {