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 --- .../certsrv/notification/ENotificationException.java | 2 +- .../netscape/certsrv/notification/IEmailFormProcessor.java | 2 +- .../com/netscape/certsrv/notification/IEmailResolver.java | 4 ++-- .../netscape/certsrv/notification/IEmailResolverKeys.java | 2 +- .../com/netscape/certsrv/notification/IEmailTemplate.java | 2 +- .../netscape/certsrv/notification/IMailNotification.java | 14 +++++++------- .../certsrv/notification/NotificationResources.java | 2 +- 7 files changed, 14 insertions(+), 14 deletions(-) (limited to 'base/common/src/com/netscape/certsrv/notification') diff --git a/base/common/src/com/netscape/certsrv/notification/ENotificationException.java b/base/common/src/com/netscape/certsrv/notification/ENotificationException.java index fffc8edeb..096d6e3a5 100644 --- a/base/common/src/com/netscape/certsrv/notification/ENotificationException.java +++ b/base/common/src/com/netscape/certsrv/notification/ENotificationException.java @@ -22,7 +22,7 @@ import com.netscape.certsrv.base.EBaseException; /** * A class represents a notification exception. *

- * + * * @version $Revision$, $Date$ */ public class ENotificationException extends EBaseException { diff --git a/base/common/src/com/netscape/certsrv/notification/IEmailFormProcessor.java b/base/common/src/com/netscape/certsrv/notification/IEmailFormProcessor.java index 40114bd1e..74d29ecde 100644 --- a/base/common/src/com/netscape/certsrv/notification/IEmailFormProcessor.java +++ b/base/common/src/com/netscape/certsrv/notification/IEmailFormProcessor.java @@ -25,7 +25,7 @@ import java.util.Vector; * '$' is used preceeding a token name. A token name should not be a * substring of any other token name *

- * + * * @version $Revision$, $Date$ */ public interface IEmailFormProcessor { diff --git a/base/common/src/com/netscape/certsrv/notification/IEmailResolver.java b/base/common/src/com/netscape/certsrv/notification/IEmailResolver.java index 39e5bed37..c16307127 100644 --- a/base/common/src/com/netscape/certsrv/notification/IEmailResolver.java +++ b/base/common/src/com/netscape/certsrv/notification/IEmailResolver.java @@ -23,7 +23,7 @@ import com.netscape.certsrv.base.EBaseException; * An email resolver that first checks the request email, if none, * then follows by checking the subjectDN of the certificate *

- * + * * @version $Revision$, $Date$ */ public interface IEmailResolver { @@ -31,7 +31,7 @@ public interface IEmailResolver { /** * returns an email address by using the resolver keys. The * return value can possibly be null - * + * * @param keys list of keys used for resolving the email address */ public String getEmail(IEmailResolverKeys keys) diff --git a/base/common/src/com/netscape/certsrv/notification/IEmailResolverKeys.java b/base/common/src/com/netscape/certsrv/notification/IEmailResolverKeys.java index 1363a9e09..f74d9d6e6 100644 --- a/base/common/src/com/netscape/certsrv/notification/IEmailResolverKeys.java +++ b/base/common/src/com/netscape/certsrv/notification/IEmailResolverKeys.java @@ -24,7 +24,7 @@ import com.netscape.certsrv.base.IAttrSet; * emails * e.g. request/cert, cert/request, request, request/cert/subjectalternatename etc. *

- * + * * @version $Revision$, $Date$ */ public interface IEmailResolverKeys extends IAttrSet { diff --git a/base/common/src/com/netscape/certsrv/notification/IEmailTemplate.java b/base/common/src/com/netscape/certsrv/notification/IEmailTemplate.java index cbdea8436..dac8b9ab9 100644 --- a/base/common/src/com/netscape/certsrv/notification/IEmailTemplate.java +++ b/base/common/src/com/netscape/certsrv/notification/IEmailTemplate.java @@ -20,7 +20,7 @@ package com.netscape.certsrv.notification; /** * Files to be processed and returned to the requested parties. It * is a template with $tokens to be used by the form/template processor. - * + * * @version $Revision$, $Date$ */ diff --git a/base/common/src/com/netscape/certsrv/notification/IMailNotification.java b/base/common/src/com/netscape/certsrv/notification/IMailNotification.java index 356a6bba3..bc4664886 100644 --- a/base/common/src/com/netscape/certsrv/notification/IMailNotification.java +++ b/base/common/src/com/netscape/certsrv/notification/IMailNotification.java @@ -25,7 +25,7 @@ import java.util.Vector; * This class uses smtp.host in the configuration for smtp * host. The port default (25) is used. If no smtp specified, local * host is used - * + * * @version $Revision$, $Date$ */ public interface IMailNotification { @@ -37,42 +37,42 @@ public interface IMailNotification { /** * sets the "From" field - * + * * @param from email address of the sender */ public void setFrom(String from); /** * sets the "Subject" field - * + * * @param subject subject of the email */ public void setSubject(String subject); /** * sets the "Content-Type" field - * + * * @param contentType content type of the email */ public void setContentType(String contentType); /** * sets the content of the email - * + * * @param content the message content */ public void setContent(String content); /** * sets the recipients' email addresses - * + * * @param addresses a list of email addresses of the recipients */ public void setTo(Vector addresses); /** * sets the recipient's email address - * + * * @param to address of the recipient email address */ public void setTo(String to); diff --git a/base/common/src/com/netscape/certsrv/notification/NotificationResources.java b/base/common/src/com/netscape/certsrv/notification/NotificationResources.java index b81443999..07ceebd0b 100644 --- a/base/common/src/com/netscape/certsrv/notification/NotificationResources.java +++ b/base/common/src/com/netscape/certsrv/notification/NotificationResources.java @@ -22,7 +22,7 @@ import java.util.ListResourceBundle; /** * A class represents a resource bundle for the * Mail Notification package - * + * * @version $Revision$, $Date$ */ public class NotificationResources extends ListResourceBundle { -- cgit