From 10cfe7756e967ac91c66d33b392aeab9cf3780fb Mon Sep 17 00:00:00 2001 From: Ade Lee Date: Wed, 11 Jan 2012 12:57:53 -0500 Subject: Formatting (no line wrap in comments or code) --- .../cmscore/notification/EmailResolverKeys.java | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'pki/base/common/src/com/netscape/cmscore/notification/EmailResolverKeys.java') diff --git a/pki/base/common/src/com/netscape/cmscore/notification/EmailResolverKeys.java b/pki/base/common/src/com/netscape/cmscore/notification/EmailResolverKeys.java index 909ec4845..1cd8abd83 100644 --- a/pki/base/common/src/com/netscape/cmscore/notification/EmailResolverKeys.java +++ b/pki/base/common/src/com/netscape/cmscore/notification/EmailResolverKeys.java @@ -17,18 +17,16 @@ // --- END COPYRIGHT BLOCK --- package com.netscape.cmscore.notification; - import java.util.Enumeration; import java.util.Hashtable; import com.netscape.certsrv.base.EBaseException; import com.netscape.certsrv.notification.IEmailResolverKeys; - /** * Email resolver keys as input to email resolvers *

- * + * * @author cfu * @version $Revision$, $Date$ */ @@ -45,11 +43,12 @@ public class EmailResolverKeys implements IEmailResolverKeys { /** * sets a key with key name and the key + * * @param name key name * @param key key * @exception com.netscape.certsrv.base.EBaseException NullPointerException */ - public void set(String name, Object key)throws EBaseException { + public void set(String name, Object key) throws EBaseException { try { mKeys.put(name, key); } catch (NullPointerException e) { @@ -60,7 +59,8 @@ public class EmailResolverKeys implements IEmailResolverKeys { /** * returns the key to which the specified name is mapped in this - * key set + * key set + * * @param name key name * @return the named email resolver key */ @@ -70,8 +70,9 @@ public class EmailResolverKeys implements IEmailResolverKeys { /** * removes the name and its corresponding key from this - * key set. This method does nothing if the named - * key is not in the key set. + * key set. This method does nothing if the named + * key is not in the key set. + * * @param name key name */ public void delete(String name) { @@ -80,8 +81,9 @@ public class EmailResolverKeys implements IEmailResolverKeys { /** * returns an enumeration of the keys in this key - * set. Use the Enumeration methods on the returned object to - * fetch the elements sequentially. + * set. Use the Enumeration methods on the returned object to + * fetch the elements sequentially. + * * @return an enumeration of the values in this key set * @see java.util.Enumeration */ @@ -89,4 +91,3 @@ public class EmailResolverKeys implements IEmailResolverKeys { return (mKeys.elements()); } } - -- cgit