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 --- .../src/com/netscape/certsrv/authority/ICertAuthority.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'base/common/src/com/netscape/certsrv/authority/ICertAuthority.java') diff --git a/base/common/src/com/netscape/certsrv/authority/ICertAuthority.java b/base/common/src/com/netscape/certsrv/authority/ICertAuthority.java index c2f2c91ec..885ca202f 100644 --- a/base/common/src/com/netscape/certsrv/authority/ICertAuthority.java +++ b/base/common/src/com/netscape/certsrv/authority/ICertAuthority.java @@ -30,7 +30,7 @@ import com.netscape.certsrv.request.IRequestListener; * Authority that handles certificates needed by the cert registration * servlets. *

- * + * * @version $Revision$ $Date$ */ public interface ICertAuthority extends IAuthority { @@ -38,7 +38,7 @@ public interface ICertAuthority extends IAuthority { /** * Retrieves the certificate repository for this authority. *

- * + * * @return the certificate repository. */ public ICertificateRepository getCertificateRepository(); @@ -46,7 +46,7 @@ public interface ICertAuthority extends IAuthority { /** * Returns CA's certificate chain. *

- * + * * @return the Certificate Chain for the CA. */ public CertificateChain getCACertChain(); @@ -54,7 +54,7 @@ public interface ICertAuthority extends IAuthority { /** * Returns CA's certificate implementaion. *

- * + * * @return CA's certificate. */ public X509CertImpl getCACert(); @@ -94,7 +94,7 @@ public interface ICertAuthority extends IAuthority { * Returns the logging interface for this authority. * Using this interface both System and Audit events can be * logged. - * + * */ public ILogger getLogger(); -- cgit