From 7c7b9d023cd466c1771068badc020dab36beb553 Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Thu, 5 Apr 2012 14:49:11 -0500 Subject: Removed whitespaces from Java code. Whitespaces in Java code have been removed with the following command: find . -not -path .git -name *.java -exec sed -i 's/[[:blank:]]\+$//' {} \; Ticket #134 --- .../common/src/com/netscape/certsrv/property/Descriptor.java | 12 ++++++------ .../com/netscape/certsrv/property/EPropertyException.java | 4 ++-- .../src/com/netscape/certsrv/property/IConfigTemplate.java | 10 +++++----- .../src/com/netscape/certsrv/property/IDescriptor.java | 10 +++++----- 4 files changed, 18 insertions(+), 18 deletions(-) (limited to 'base/common/src/com/netscape/certsrv/property') diff --git a/base/common/src/com/netscape/certsrv/property/Descriptor.java b/base/common/src/com/netscape/certsrv/property/Descriptor.java index bd2b56340..4b2baf561 100644 --- a/base/common/src/com/netscape/certsrv/property/Descriptor.java +++ b/base/common/src/com/netscape/certsrv/property/Descriptor.java @@ -22,7 +22,7 @@ import java.util.Locale; /** * This interface represents a property descriptor. A descriptor * includes information that describe a property. - * + * * @version $Revision$, $Date$ */ public class Descriptor implements IDescriptor { @@ -34,7 +34,7 @@ public class Descriptor implements IDescriptor { /** * Constructs a descriptor. - * + * * @param syntax syntax * @param constraint constraint * @param defValue default value @@ -49,7 +49,7 @@ public class Descriptor implements IDescriptor { /** * Returns the syntax of the property. - * + * * @return syntax */ public String getSyntax() { @@ -58,7 +58,7 @@ public class Descriptor implements IDescriptor { /** * Returns the default value of the property. - * + * * @return default value */ public String getDefaultValue() { @@ -74,7 +74,7 @@ public class Descriptor implements IDescriptor { *

* If null, no constraint shall be enforced. *

- * + * * @return constraint */ public String getConstraint() { @@ -83,7 +83,7 @@ public class Descriptor implements IDescriptor { /** * Retrieves the description of the property. - * + * * @param locale user locale * @return description */ diff --git a/base/common/src/com/netscape/certsrv/property/EPropertyException.java b/base/common/src/com/netscape/certsrv/property/EPropertyException.java index 23f59a25f..ad0617b5f 100644 --- a/base/common/src/com/netscape/certsrv/property/EPropertyException.java +++ b/base/common/src/com/netscape/certsrv/property/EPropertyException.java @@ -21,7 +21,7 @@ import com.netscape.certsrv.base.EBaseException; /** * This is the base exception for property handling. - * + * * @version $Revision$, $Date$ */ public class EPropertyException extends EBaseException { @@ -33,7 +33,7 @@ public class EPropertyException extends EBaseException { /** * Constructs property exception - * + * * @param msg exception message */ public EPropertyException(String msg) { diff --git a/base/common/src/com/netscape/certsrv/property/IConfigTemplate.java b/base/common/src/com/netscape/certsrv/property/IConfigTemplate.java index 431c90de9..70d4040ae 100644 --- a/base/common/src/com/netscape/certsrv/property/IConfigTemplate.java +++ b/base/common/src/com/netscape/certsrv/property/IConfigTemplate.java @@ -28,21 +28,21 @@ import java.util.Locale; *

* A plugin, for example, can be described as a property template. *

- * + * * @version $Revision$, $Date$ */ public interface IConfigTemplate { /** * Returns a list of configuration parameter names. - * + * * @return parameter names */ public Enumeration getConfigNames(); /** * Returns the descriptors of configuration parameter. - * + * * @param locale user locale * @param name configuration parameter name * @return descriptor @@ -51,7 +51,7 @@ public interface IConfigTemplate { /** * Sets configuration parameter. - * + * * @param name parameter name * @param value parameter value * @exception EPropertyException failed to set parameter @@ -61,7 +61,7 @@ public interface IConfigTemplate { /** * Retrieves configuration parameter by name. - * + * * @return parameter */ public String getConfig(String name); diff --git a/base/common/src/com/netscape/certsrv/property/IDescriptor.java b/base/common/src/com/netscape/certsrv/property/IDescriptor.java index 727c1130d..830ecdb27 100644 --- a/base/common/src/com/netscape/certsrv/property/IDescriptor.java +++ b/base/common/src/com/netscape/certsrv/property/IDescriptor.java @@ -21,7 +21,7 @@ import java.util.Locale; /** * This interface represents a property descriptor. - * + * * @version $Revision$, $Date$ */ public interface IDescriptor { @@ -56,7 +56,7 @@ public interface IDescriptor { /** * Returns the syntax of the property. - * + * * @return syntax */ public String getSyntax(); @@ -68,14 +68,14 @@ public interface IDescriptor { * - choice(cert,crl): cert,crl is the constraint * for choice * If null, no constraint shall be enforced. - * + * * @return constraint */ public String getConstraint(); /** * Retrieves the description of the property. - * + * * @param locale user locale * @return localized description */ @@ -83,7 +83,7 @@ public interface IDescriptor { /** * Retrieves the default value of the property. - * + * * @return default value */ public String getDefaultValue(); -- cgit