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/listeners/EListenersException.java | 12 ++++++------ .../netscape/certsrv/listeners/IRequestListenerPlugin.java | 12 ++++++------ .../com/netscape/certsrv/listeners/ListenersResources.java | 4 ++-- 3 files changed, 14 insertions(+), 14 deletions(-) (limited to 'base/common/src/com/netscape/certsrv/listeners') diff --git a/base/common/src/com/netscape/certsrv/listeners/EListenersException.java b/base/common/src/com/netscape/certsrv/listeners/EListenersException.java index 6aee21ff4..1169de0b1 100644 --- a/base/common/src/com/netscape/certsrv/listeners/EListenersException.java +++ b/base/common/src/com/netscape/certsrv/listeners/EListenersException.java @@ -22,7 +22,7 @@ import com.netscape.certsrv.base.EBaseException; /** * A class represents a listener exception. *

- * + * * @version $Revision$, $Date$ */ public class EListenersException extends EBaseException { @@ -39,7 +39,7 @@ public class EListenersException extends EBaseException { /** * Constructs a listeners exception. *

- * + * * @param msgFormat The error message resource key. */ public EListenersException(String msgFormat) { @@ -49,7 +49,7 @@ public class EListenersException extends EBaseException { /** * Constructs a listeners exception. *

- * + * * @param msgFormat exception details in message string format. * @param param message string parameter. */ @@ -60,7 +60,7 @@ public class EListenersException extends EBaseException { /** * Constructs a Listeners exception. *

- * + * * @param msgFormat The resource key. * @param e The parameter as an exception. */ @@ -71,7 +71,7 @@ public class EListenersException extends EBaseException { /** * Constructs a Listeners exception. *

- * + * * @param msgFormat The resource key. * @param params Array of params. */ @@ -82,7 +82,7 @@ public class EListenersException extends EBaseException { /** * get the listener resource class name. *

- * + * * @return the class name of the resource. */ protected String getBundleName() { diff --git a/base/common/src/com/netscape/certsrv/listeners/IRequestListenerPlugin.java b/base/common/src/com/netscape/certsrv/listeners/IRequestListenerPlugin.java index c615586db..3f7863248 100644 --- a/base/common/src/com/netscape/certsrv/listeners/IRequestListenerPlugin.java +++ b/base/common/src/com/netscape/certsrv/listeners/IRequestListenerPlugin.java @@ -24,7 +24,7 @@ import com.netscape.certsrv.base.IConfigStore; * This interface represents a plug-in listener. Implement this class to * add the listener to an ARequestNotifier of a subsystem. *

- * + * * @version $Revision$, $Date$ */ public interface IRequestListenerPlugin { @@ -32,7 +32,7 @@ public interface IRequestListenerPlugin { /** * get the registered class name set in the init() method. *

- * + * * @return the Name. */ public String getName(); @@ -40,7 +40,7 @@ public interface IRequestListenerPlugin { /** * get the plugin implementaion name set in the init() method. *

- * + * * @return the plugin implementation name. */ public String getImplName(); @@ -48,7 +48,7 @@ public interface IRequestListenerPlugin { /** * the subsystem call this method to initialize the plug-in. *

- * + * * @param name the registered class name of the plug-in. * @param implName the implemetnation name of the plug-in. * @param config the configuration store where the. @@ -66,7 +66,7 @@ public interface IRequestListenerPlugin { /** * get the configuration parameters of the plug-in. *

- * + * * @return the configuration parameters. * @exception EBaseException throws base exception in the certificate server. */ @@ -77,7 +77,7 @@ public interface IRequestListenerPlugin { * get the configuration store of the plugin where the * configuration parameters of the plug-in are stored. *

- * + * * @return the configuration store. */ diff --git a/base/common/src/com/netscape/certsrv/listeners/ListenersResources.java b/base/common/src/com/netscape/certsrv/listeners/ListenersResources.java index 9eaf41371..0eccf2f19 100644 --- a/base/common/src/com/netscape/certsrv/listeners/ListenersResources.java +++ b/base/common/src/com/netscape/certsrv/listeners/ListenersResources.java @@ -22,7 +22,7 @@ import java.util.ListResourceBundle; /** * A class represents a resource bundle for the * listeners package. - * + * * @version $Revision$, $Date$ */ public class ListenersResources extends ListResourceBundle { @@ -30,7 +30,7 @@ public class ListenersResources extends ListResourceBundle { /** * get the content of the resource. *

- * + * * @return the content of this resource is a value pairs array of keys and values. */ public Object[][] getContents() { -- cgit