From 0ba96b399d70eac60ece03f4e438125736169d5b Mon Sep 17 00:00:00 2001 From: Tobias Kellner Date: Tue, 27 Oct 2015 20:12:12 +0100 Subject: JavaDoc fixes --- .../bku/accesscontrol/config/AccessControl.java | 18 +++++------ .../gv/egiz/bku/accesscontrol/config/Action.java | 34 ++++++++++---------- .../at/gv/egiz/bku/accesscontrol/config/Chain.java | 20 ++++++------ .../gv/egiz/bku/accesscontrol/config/Chains.java | 18 +++++------ .../gv/egiz/bku/accesscontrol/config/Command.java | 20 ++++++------ .../at/gv/egiz/bku/accesscontrol/config/Param.java | 14 ++++----- .../at/gv/egiz/bku/accesscontrol/config/Rule.java | 36 +++++++++++----------- .../at/gv/egiz/bku/accesscontrol/config/Rules.java | 18 +++++------ .../egiz/bku/binding/BindingProcessorManager.java | 2 -- .../bku/binding/BindingProcessorManagerImpl.java | 4 +-- .../at/gv/egiz/bku/binding/DataUrlResponse.java | 2 +- .../at/gv/egiz/bku/binding/FormParameterStore.java | 8 ----- .../egiz/bku/binding/HTTPBindingProcessorImpl.java | 2 +- .../egiz/bku/binding/HttpsDataURLConnection.java | 2 -- .../java/at/gv/egiz/bku/binding/IdFactory.java | 2 +- .../gv/egiz/bku/slcommands/GetStatusCommand.java | 2 +- .../at/gv/egiz/bku/slcommands/GetStatusResult.java | 2 +- .../egiz/bku/slcommands/SLMarshallerFactory.java | 1 - .../java/at/gv/egiz/bku/slcommands/SLResult.java | 2 +- .../impl/CreateCMSSignatureResultImpl.java | 4 +-- .../slcommands/impl/DataObjectHashDataInput.java | 2 +- .../bku/slcommands/impl/GetStatusCommandImpl.java | 2 +- .../bku/slcommands/impl/GetStatusResultImpl.java | 2 +- .../egiz/bku/slcommands/impl/InfoboxFactory.java | 2 +- .../at/gv/egiz/bku/slcommands/impl/STALHelper.java | 2 +- .../egiz/bku/slcommands/impl/xsect/DataObject.java | 2 +- .../slcommands/impl/xsect/IdValueFactoryImpl.java | 8 ++--- .../bku/slcommands/impl/xsect/STALPrivateKey.java | 7 ++--- .../egiz/bku/spring/ConfigurationFactoryBean.java | 2 +- .../at/gv/egiz/bku/viewer/ResourceFontLoader.java | 2 +- 30 files changed, 114 insertions(+), 128 deletions(-) (limited to 'bkucommon/src/main') diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/AccessControl.java b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/AccessControl.java index 07706222..ed6085d1 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/AccessControl.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/AccessControl.java @@ -37,15 +37,15 @@ import javax.xml.bind.annotation.XmlType; *

The following schema fragment specifies the expected content contained within this class. * *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{}Chains"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{}Chains"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
  * 
* * diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Action.java b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Action.java index 5ecb3997..e99e9b17 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Action.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Action.java @@ -37,23 +37,23 @@ import javax.xml.bind.annotation.XmlType; *

The following schema fragment specifies the expected content contained within this class. * *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="ChainRef" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="RuleAction">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="allow"/>
- *               <enumeration value="deny"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <choice>
+ *         <element name="ChainRef" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="RuleAction">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <enumeration value="allow"/>
+ *               <enumeration value="deny"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *       </choice>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
  * 
* * diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Chain.java b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Chain.java index eff37730..2c44faef 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Chain.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Chain.java @@ -43,16 +43,16 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; *

The following schema fragment specifies the expected content contained within this class. * *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{}Rules" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{}Rules" minOccurs="0"/>
+ *       </sequence>
+ *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
  * 
* * diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Chains.java b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Chains.java index cccc97f6..9a9fb258 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Chains.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Chains.java @@ -39,15 +39,15 @@ import javax.xml.bind.annotation.XmlType; *

The following schema fragment specifies the expected content contained within this class. * *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{}Chain" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{}Chain" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
  * 
* * diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Command.java b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Command.java index 8428e432..ad66dac3 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Command.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Command.java @@ -41,16 +41,16 @@ import javax.xml.bind.annotation.XmlType; *

The following schema fragment specifies the expected content contained within this class. * *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{}Param" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Name" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{}Param" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *       <attribute name="Name" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
  * 
* * diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Param.java b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Param.java index d02fc833..bc163bb2 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Param.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Param.java @@ -41,13 +41,13 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; *

The following schema fragment specifies the expected content contained within this class. * *

- * <complexType>
- *   <simpleContent>
- *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
- *       <attribute name="Name" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
- *     </extension>
- *   </simpleContent>
- * </complexType>
+ * <complexType>
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attribute name="Name" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
  * 
* * diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Rule.java b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Rule.java index c1496884..9f49d817 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Rule.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Rule.java @@ -43,24 +43,24 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; *

The following schema fragment specifies the expected content contained within this class. * *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{}AuthClass"/>
- *         <choice minOccurs="0">
- *           <element name="DomainName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *           <element name="IPv4Address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *           <element name="URL" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         </choice>
- *         <element ref="{}Command" minOccurs="0"/>
- *         <element ref="{}Action"/>
- *         <element ref="{}UserInteraction"/>
- *       </sequence>
- *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{}AuthClass"/>
+ *         <choice minOccurs="0">
+ *           <element name="DomainName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *           <element name="IPv4Address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *           <element name="URL" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         </choice>
+ *         <element ref="{}Command" minOccurs="0"/>
+ *         <element ref="{}Action"/>
+ *         <element ref="{}UserInteraction"/>
+ *       </sequence>
+ *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
  * 
* * diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Rules.java b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Rules.java index 730cc9cf..4f28c0df 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Rules.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Rules.java @@ -39,15 +39,15 @@ import javax.xml.bind.annotation.XmlType; *

The following schema fragment specifies the expected content contained within this class. * *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{}Rule" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{}Rule" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
  * 
* * diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/binding/BindingProcessorManager.java b/bkucommon/src/main/java/at/gv/egiz/bku/binding/BindingProcessorManager.java index c4f535a9..069c23bb 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/binding/BindingProcessorManager.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/binding/BindingProcessorManager.java @@ -71,13 +71,11 @@ public interface BindingProcessorManager { /** * Schedules the given BindingProcessor for processing. - *

*

    *
  1. Creates a processing context with the given id.
  2. *
  3. Schedules the given BindingProcessor for processing, and
  4. *
  5. Immediately returns the processing context.
  6. *
- *

* * @param id * @param bindingProcessor diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/binding/BindingProcessorManagerImpl.java b/bkucommon/src/main/java/at/gv/egiz/bku/binding/BindingProcessorManagerImpl.java index ef911e0b..17146c90 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/binding/BindingProcessorManagerImpl.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/binding/BindingProcessorManagerImpl.java @@ -115,14 +115,14 @@ public class BindingProcessorManagerImpl implements BindingProcessorManager, Com } /** - * @return the factoryMap + * @return the factory List */ public List getFactories() { return factories; } /** - * @param factoryMap the factoryMap to set + * @param factories the factory List to set */ public void setFactories(List factories) { this.factories = factories; diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/binding/DataUrlResponse.java b/bkucommon/src/main/java/at/gv/egiz/bku/binding/DataUrlResponse.java index 8cd88109..85bb5a3a 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/binding/DataUrlResponse.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/binding/DataUrlResponse.java @@ -80,7 +80,7 @@ public class DataUrlResponse extends StreamData { } /** - * Checks if the http response equals "" + * Checks if the http response equals "<ok/>" * * @throws IOException */ diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/binding/FormParameterStore.java b/bkucommon/src/main/java/at/gv/egiz/bku/binding/FormParameterStore.java index a95909f5..57541fb4 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/binding/FormParameterStore.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/binding/FormParameterStore.java @@ -101,14 +101,6 @@ public class FormParameterStore implements FormParameter { } } - /** - * Reads all data from the stream and stores it internally. The stream will - * not be closed. - * - * @param datSource - * @param formName - * @param contentType - */ @Override public String getFormParameterContentType() { ensureInitialized(); diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/binding/HTTPBindingProcessorImpl.java b/bkucommon/src/main/java/at/gv/egiz/bku/binding/HTTPBindingProcessorImpl.java index e7bc2f33..4f9260d2 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/binding/HTTPBindingProcessorImpl.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/binding/HTTPBindingProcessorImpl.java @@ -82,7 +82,7 @@ import at.gv.egiz.stal.STALRequest; * Class performing the HTTP binding as defined by the CCE specification. * Currently a huge monolithic class. * - * @TODO refactor + * TODO: refactor */ @SuppressWarnings("unchecked") public class HTTPBindingProcessorImpl extends AbstractBindingProcessor implements diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/binding/HttpsDataURLConnection.java b/bkucommon/src/main/java/at/gv/egiz/bku/binding/HttpsDataURLConnection.java index f1bc293f..6451e6ee 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/binding/HttpsDataURLConnection.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/binding/HttpsDataURLConnection.java @@ -25,7 +25,6 @@ package at.gv.egiz.bku.binding; -import java.io.IOException; import java.net.URL; import java.security.cert.Certificate; @@ -39,7 +38,6 @@ public abstract class HttpsDataURLConnection extends HttpDataURLConnection { * Construct a new * * @param url - * @throws IOException */ public HttpsDataURLConnection(URL url) { super(url); diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/binding/IdFactory.java b/bkucommon/src/main/java/at/gv/egiz/bku/binding/IdFactory.java index 8d68f177..16a7bf4b 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/binding/IdFactory.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/binding/IdFactory.java @@ -75,7 +75,7 @@ public class IdFactory { /** * Don't use this method unless you know exactly what you do ! * Be sure to use a sufficient large entropy - * @param numberOfBits >=1 (although this small entropy does not make sense) + * @param numberOfBits >=1 (although this small entropy does not make sense) */ public void setNumberOfBits(int numberOfBits) { if (numberOfBits <1) { diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/GetStatusCommand.java b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/GetStatusCommand.java index be25a7b8..4acf578f 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/GetStatusCommand.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/GetStatusCommand.java @@ -27,7 +27,7 @@ package at.gv.egiz.bku.slcommands; /** * - * @author Clemens Orthacker + * @author Clemens Orthacker <clemens.orthacker@iaik.tugraz.at> */ public interface GetStatusCommand extends SLCommand { diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/GetStatusResult.java b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/GetStatusResult.java index 2dd5896e..678beba0 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/GetStatusResult.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/GetStatusResult.java @@ -27,7 +27,7 @@ package at.gv.egiz.bku.slcommands; /** * - * @author Clemens Orthacker + * @author Clemens Orthacker <clemens.orthacker@iaik.tugraz.at> */ public interface GetStatusResult extends SLResult { diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/SLMarshallerFactory.java b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/SLMarshallerFactory.java index af75f67f..5a2aded4 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/SLMarshallerFactory.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/SLMarshallerFactory.java @@ -45,7 +45,6 @@ public class SLMarshallerFactory { * security layer requests and responses to avoid propagation of namespace * declarations of legacy namespaces into marshaled results. *

- * @see #jaxbContextLegacy */ protected static JAXBContext context; diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/SLResult.java b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/SLResult.java index aab185c0..0475b6fe 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/SLResult.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/SLResult.java @@ -45,8 +45,8 @@ public interface SLResult { /** * * @param result + * @param templates may be null. * @param fragment TODO - * @param transformer may be null. */ public void writeTo(Result result, Templates templates, boolean fragment); diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/CreateCMSSignatureResultImpl.java b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/CreateCMSSignatureResultImpl.java index 66b24a82..967a4bae 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/CreateCMSSignatureResultImpl.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/CreateCMSSignatureResultImpl.java @@ -68,9 +68,9 @@ public class CreateCMSSignatureResultImpl extends SLResultImpl implements Create * Creates a new instance of this CreateCMSSignatureResultImpl with the given * signature signature. * - * @param document the signature document + * @param signature the signature * - * @throws NullPointerException if document is null + * @throws NullPointerException if signature is null */ public CreateCMSSignatureResultImpl(byte[] signature) { super(); diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/DataObjectHashDataInput.java b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/DataObjectHashDataInput.java index f1236e60..d0451138 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/DataObjectHashDataInput.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/DataObjectHashDataInput.java @@ -31,7 +31,7 @@ import java.io.InputStream; /** * DataObject-backed HashDataInput - * If reference caching is enabled, + * If reference caching is enabled, * the hashdata input stream can be obtained repeatedly. * @author clemens */ diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/GetStatusCommandImpl.java b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/GetStatusCommandImpl.java index 731c26af..2737eb2d 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/GetStatusCommandImpl.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/GetStatusCommandImpl.java @@ -42,7 +42,7 @@ import org.slf4j.LoggerFactory; /** * - * @author Clemens Orthacker + * @author Clemens Orthacker <clemens.orthacker@iaik.tugraz.at> */ public class GetStatusCommandImpl extends SLCommandImpl implements GetStatusCommand { diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/GetStatusResultImpl.java b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/GetStatusResultImpl.java index dbe9c065..48202543 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/GetStatusResultImpl.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/GetStatusResultImpl.java @@ -34,7 +34,7 @@ import javax.xml.transform.Templates; /** * - * @author Clemens Orthacker + * @author Clemens Orthacker <clemens.orthacker@iaik.tugraz.at> */ public class GetStatusResultImpl extends SLResultImpl implements GetStatusResult { diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/InfoboxFactory.java b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/InfoboxFactory.java index 98423c48..44fa268b 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/InfoboxFactory.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/InfoboxFactory.java @@ -51,7 +51,7 @@ public class InfoboxFactory { private HashMap infoboxFactories = new HashMap(); /** - * @param infoboxFactories the infoboxFactories to set + * @param factories the infoboxFactories to set */ public void setInfoboxFactories( HashMap factories) { diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/STALHelper.java b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/STALHelper.java index 1b4cd565..384521df 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/STALHelper.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/slcommands/impl/STALHelper.java @@ -73,7 +73,7 @@ public class STALHelper { /** * An iterator over the STALResponses received in - * {@link SLCommandImpl#transmitSTALRequest(List)}. + * {@link transmitSTALRequest(List)}. */ protected Iterator stalResponses; 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 xsd:Id-attribute values of the form * '<elementName>-<random>-<sequenceNumber>', * where + *

*
    - *
  • <elementName> is the name provided at + *
  • <elementName>; is the name provided at * {@link #createIdValue(String)},
  • - *
  • <random> is a random generated fixed value for an + *
  • <random>; is a random generated fixed value for an * instance of this IdValueFactory and
  • - *
  • <sequenceNumber> is the sequence number of the value + *
  • <sequenceNumber>; is the sequence number of the value * generated for a given elementName by an instance of this * IdValueFactory.
  • *
- *

* * @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 STALPrivateKey with the given * stal implementation, signature algorithm, - * keyboxIdentifier and hashDataInputCallback - * interface. + * keyboxIdentifier and dataObjects. * * @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 dataObjects) { diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/spring/ConfigurationFactoryBean.java b/bkucommon/src/main/java/at/gv/egiz/bku/spring/ConfigurationFactoryBean.java index 47e1320a..3c7f0044 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/spring/ConfigurationFactoryBean.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/spring/ConfigurationFactoryBean.java @@ -101,7 +101,7 @@ public class ConfigurationFactoryBean implements FactoryBean, ResourceLoaderAwar } /** - * @param failOnMissingConfigurationResource the failOnMissingConfigurationResource to set + * @param failOnMissingResource the failOnMissingResource to set */ public void setFailOnMissingResource( Boolean failOnMissingResource) { diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/viewer/ResourceFontLoader.java b/bkucommon/src/main/java/at/gv/egiz/bku/viewer/ResourceFontLoader.java index 05c2781e..1c807036 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/viewer/ResourceFontLoader.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/viewer/ResourceFontLoader.java @@ -33,7 +33,7 @@ import org.slf4j.LoggerFactory; /** * Loads font(s) as classpath resource. * Loaded fonts are shared within all instances in this VM (classloader) - * @author Clemens Orthacker + * @author Clemens Orthacker <clemens.orthacker@iaik.tugraz.at> */ public class ResourceFontLoader implements FontProvider { -- cgit v1.2.3