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 --- .../com/netscape/certsrv/registry/ERegistryException.java | 4 ++-- .../src/com/netscape/certsrv/registry/IPluginInfo.java | 10 +++++----- .../src/com/netscape/certsrv/registry/IPluginRegistry.java | 14 +++++++------- 3 files changed, 14 insertions(+), 14 deletions(-) (limited to 'base/common/src/com/netscape/certsrv/registry') diff --git a/base/common/src/com/netscape/certsrv/registry/ERegistryException.java b/base/common/src/com/netscape/certsrv/registry/ERegistryException.java index 5d2e2c91c..fe09f8d4b 100644 --- a/base/common/src/com/netscape/certsrv/registry/ERegistryException.java +++ b/base/common/src/com/netscape/certsrv/registry/ERegistryException.java @@ -21,7 +21,7 @@ import com.netscape.certsrv.base.EBaseException; /** * This represents a registry exception. - * + * * @version $Revision$, $Date$ */ public class ERegistryException extends EBaseException { @@ -33,7 +33,7 @@ public class ERegistryException extends EBaseException { /** * Constructs a registry exception. - * + * * @param msg message carried along with the exception */ public ERegistryException(String msg) { diff --git a/base/common/src/com/netscape/certsrv/registry/IPluginInfo.java b/base/common/src/com/netscape/certsrv/registry/IPluginInfo.java index 8e6a87365..ff1aa574a 100644 --- a/base/common/src/com/netscape/certsrv/registry/IPluginInfo.java +++ b/base/common/src/com/netscape/certsrv/registry/IPluginInfo.java @@ -25,17 +25,17 @@ import java.util.Locale; * name and description are information * for end-users. *

- * + * * The class name can be used to create an instance of the plugin. *

- * + * * @version $Revision$, $Date$ */ public interface IPluginInfo { /** * Retrieves the localized plugin name. - * + * * @param locale end-user locale * @return plugin name */ @@ -43,7 +43,7 @@ public interface IPluginInfo { /** * Retrieves the localized plugin description. - * + * * @param locale end-user locale * @return plugin description */ @@ -54,7 +54,7 @@ public interface IPluginInfo { * Instance of plugin can be created with *

* Class.forName(info.getClassName()); - * + * * @return java class name */ public String getClassName(); diff --git a/base/common/src/com/netscape/certsrv/registry/IPluginRegistry.java b/base/common/src/com/netscape/certsrv/registry/IPluginRegistry.java index 1c85aeba9..4f014d3f3 100644 --- a/base/common/src/com/netscape/certsrv/registry/IPluginRegistry.java +++ b/base/common/src/com/netscape/certsrv/registry/IPluginRegistry.java @@ -25,10 +25,10 @@ import com.netscape.certsrv.base.ISubsystem; /** * This represents the registry subsystem that manages * mulitple types of plugin information. - * + * * The plugin information includes id, name, * classname, and description. - * + * * @version $Revision$, $Date$ */ public interface IPluginRegistry extends ISubsystem { @@ -37,21 +37,21 @@ public interface IPluginRegistry extends ISubsystem { /** * Returns handle to the registry configuration file. - * + * * @return configuration store of registry subsystem */ public IConfigStore getFileConfigStore(); /** * Returns all type names. - * + * * @return a list of String-based names */ public Enumeration getTypeNames(); /** * Returns a list of plugin identifiers of the given type. - * + * * @param type plugin type * @return a list of plugin IDs */ @@ -59,7 +59,7 @@ public interface IPluginRegistry extends ISubsystem { /** * Retrieves the plugin information. - * + * * @param type plugin type * @param id plugin id * @return plugin info @@ -68,7 +68,7 @@ public interface IPluginRegistry extends ISubsystem { /** * Adds plugin info. - * + * * @param type plugin type * @param id plugin id * @param info plugin info -- cgit