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 --- .../netscape/certsrv/policy/EPolicyException.java | 26 +++++++------- .../netscape/certsrv/policy/IEnrollmentPolicy.java | 4 +-- .../com/netscape/certsrv/policy/IExpression.java | 6 ++-- .../policy/IGeneralNameAsConstraintsConfig.java | 8 ++--- .../certsrv/policy/IGeneralNameConfig.java | 10 +++--- .../netscape/certsrv/policy/IGeneralNameUtil.java | 4 +-- .../policy/IGeneralNamesAsConstraintsConfig.java | 8 ++--- .../certsrv/policy/IGeneralNamesConfig.java | 8 ++--- .../certsrv/policy/IKeyArchivalPolicy.java | 4 +-- .../certsrv/policy/IKeyRecoveryPolicy.java | 4 +-- .../certsrv/policy/IPolicyPredicateParser.java | 6 ++-- .../netscape/certsrv/policy/IPolicyProcessor.java | 40 +++++++++++----------- .../com/netscape/certsrv/policy/IPolicyRule.java | 24 ++++++------- .../com/netscape/certsrv/policy/IPolicySet.java | 20 +++++------ .../netscape/certsrv/policy/IRenewalPolicy.java | 4 +-- .../netscape/certsrv/policy/IRevocationPolicy.java | 4 +-- .../certsrv/policy/ISubjAltNameConfig.java | 8 ++--- .../netscape/certsrv/policy/PolicyResources.java | 4 +-- 18 files changed, 96 insertions(+), 96 deletions(-) (limited to 'base/common/src/com/netscape/certsrv/policy') diff --git a/base/common/src/com/netscape/certsrv/policy/EPolicyException.java b/base/common/src/com/netscape/certsrv/policy/EPolicyException.java index f32f4f64f..c4de0e726 100644 --- a/base/common/src/com/netscape/certsrv/policy/EPolicyException.java +++ b/base/common/src/com/netscape/certsrv/policy/EPolicyException.java @@ -26,15 +26,15 @@ import com.netscape.certsrv.base.MessageFormatter; * This class represents Exceptions used by the policy package. * The policies themselves do not raise exceptions but use them * to format error messages. - * + * * Adapted from EBasException *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ * @see java.text.MessageFormat @@ -53,7 +53,7 @@ public class EPolicyException extends EBaseException { /** * Constructs a base exception. *

- * + * * @param msgFormat exception details */ public EPolicyException(String msgFormat) { @@ -63,12 +63,12 @@ public class EPolicyException extends EBaseException { /** * Constructs a base exception with a parameter. For example, - * + * *

      * new EPolicyException("failed to load {0}", fileName);
      * 
*

- * + * * @param msgFormat exception details in message string format * @param param message string parameter */ @@ -81,7 +81,7 @@ public class EPolicyException extends EBaseException { /** * Constructs a base exception with two String parameters. For example, *

- * + * * @param msgFormat exception details in message string format * @param param1 message string parameter * @param param2 message string parameter @@ -97,7 +97,7 @@ public class EPolicyException extends EBaseException { * Constructs a base exception. It can be used to carry * a system exception that may contain information about * the context. For example, - * + * *

      * 		try {
      *  		...
@@ -106,7 +106,7 @@ public class EPolicyException extends EBaseException {
      *      }
      * 
*

- * + * * @param msgFormat exception details in message string format * @param param system exception */ @@ -120,7 +120,7 @@ public class EPolicyException extends EBaseException { * Constructs a base exception with a list of parameters * that will be substituted into the message format. *

- * + * * @param msgFormat exception details in message string format * @param params list of message format parameters */ @@ -132,7 +132,7 @@ public class EPolicyException extends EBaseException { /** * Returns a list of parameters. *

- * + * * @return list of message format parameters */ public Object[] getParameters() { @@ -143,7 +143,7 @@ public class EPolicyException extends EBaseException { * Returns localized exception string. This method should * only be called if a localized string is necessary. *

- * + * * @return details message */ public String toString() { @@ -153,7 +153,7 @@ public class EPolicyException extends EBaseException { /** * Returns the string based on the given locale. *

- * + * * @param locale locale * @return details message */ diff --git a/base/common/src/com/netscape/certsrv/policy/IEnrollmentPolicy.java b/base/common/src/com/netscape/certsrv/policy/IEnrollmentPolicy.java index 7c789932a..96da142ba 100644 --- a/base/common/src/com/netscape/certsrv/policy/IEnrollmentPolicy.java +++ b/base/common/src/com/netscape/certsrv/policy/IEnrollmentPolicy.java @@ -22,12 +22,12 @@ package com.netscape.certsrv.policy; * typing for rules so that a policy processor can group rules * based on a particular type. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ diff --git a/base/common/src/com/netscape/certsrv/policy/IExpression.java b/base/common/src/com/netscape/certsrv/policy/IExpression.java index 4075e8683..9bfe34611 100644 --- a/base/common/src/com/netscape/certsrv/policy/IExpression.java +++ b/base/common/src/com/netscape/certsrv/policy/IExpression.java @@ -22,12 +22,12 @@ import com.netscape.certsrv.request.IRequest; /** * Interface for a policy expression. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ @@ -47,7 +47,7 @@ public interface IExpression { /** * Evaluate the Expression. - * + * * @param req The PKIRequest on which we are applying the condition. * @return The return value. */ diff --git a/base/common/src/com/netscape/certsrv/policy/IGeneralNameAsConstraintsConfig.java b/base/common/src/com/netscape/certsrv/policy/IGeneralNameAsConstraintsConfig.java index 78ec31198..1e8a66666 100644 --- a/base/common/src/com/netscape/certsrv/policy/IGeneralNameAsConstraintsConfig.java +++ b/base/common/src/com/netscape/certsrv/policy/IGeneralNameAsConstraintsConfig.java @@ -25,12 +25,12 @@ import netscape.security.x509.GeneralName; * Class that can be used to form general names from configuration file. * Used by policies and extension commands. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ @@ -38,14 +38,14 @@ public interface IGeneralNameAsConstraintsConfig { /** * Retrieves instance parameters. - * + * * @param params parameters */ public void getInstanceParams(Vector params); /** * Retrieves the general name. - * + * * @return general name */ public GeneralName getGeneralName(); diff --git a/base/common/src/com/netscape/certsrv/policy/IGeneralNameConfig.java b/base/common/src/com/netscape/certsrv/policy/IGeneralNameConfig.java index 193269bbd..f4f7362cc 100644 --- a/base/common/src/com/netscape/certsrv/policy/IGeneralNameConfig.java +++ b/base/common/src/com/netscape/certsrv/policy/IGeneralNameConfig.java @@ -27,12 +27,12 @@ import com.netscape.certsrv.base.EBaseException; * Class that can be used to form general names from configuration file. * Used by policies and extension commands. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ @@ -40,7 +40,7 @@ public interface IGeneralNameConfig { /** * Forms a general name from string. - * + * * @param value general name in string * @return general name object * @exception EBaseException failed to form general name @@ -50,7 +50,7 @@ public interface IGeneralNameConfig { /** * Forms general names from the given value. - * + * * @param value general name in string * @return a vector of general names * @exception EBaseException failed to form general name @@ -60,7 +60,7 @@ public interface IGeneralNameConfig { /** * Retrieves the instance parameters. - * + * * @param params parameters */ public void getInstanceParams(Vector params); diff --git a/base/common/src/com/netscape/certsrv/policy/IGeneralNameUtil.java b/base/common/src/com/netscape/certsrv/policy/IGeneralNameUtil.java index 102b25ccd..125a88511 100644 --- a/base/common/src/com/netscape/certsrv/policy/IGeneralNameUtil.java +++ b/base/common/src/com/netscape/certsrv/policy/IGeneralNameUtil.java @@ -21,12 +21,12 @@ package com.netscape.certsrv.policy; * Class that can be used to form general names from configuration file. * Used by policies and extension commands. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ diff --git a/base/common/src/com/netscape/certsrv/policy/IGeneralNamesAsConstraintsConfig.java b/base/common/src/com/netscape/certsrv/policy/IGeneralNamesAsConstraintsConfig.java index aeb7867e3..c3a35f913 100644 --- a/base/common/src/com/netscape/certsrv/policy/IGeneralNamesAsConstraintsConfig.java +++ b/base/common/src/com/netscape/certsrv/policy/IGeneralNamesAsConstraintsConfig.java @@ -25,12 +25,12 @@ import netscape.security.x509.GeneralNames; * Class that can be used to form general names from configuration file. * Used by policies and extension commands. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ @@ -38,14 +38,14 @@ public interface IGeneralNamesAsConstraintsConfig { /** * Retrieves a list of configured general names. - * + * * @return a list of general names */ public GeneralNames getGeneralNames(); /** * Retrieves instance parameters. - * + * * @param params instance parameters */ public void getInstanceParams(Vector params); diff --git a/base/common/src/com/netscape/certsrv/policy/IGeneralNamesConfig.java b/base/common/src/com/netscape/certsrv/policy/IGeneralNamesConfig.java index 2074b9d19..e799195db 100644 --- a/base/common/src/com/netscape/certsrv/policy/IGeneralNamesConfig.java +++ b/base/common/src/com/netscape/certsrv/policy/IGeneralNamesConfig.java @@ -25,12 +25,12 @@ import netscape.security.x509.GeneralNames; * Class that can be used to form general names from configuration file. * Used by policies and extension commands. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ @@ -38,14 +38,14 @@ public interface IGeneralNamesConfig { /** * Retrieves a list of configured general names. - * + * * @return general names */ public GeneralNames getGeneralNames(); /** * Retrieves the instance parameters. - * + * * @param params instance parameters */ public void getInstanceParams(Vector params); diff --git a/base/common/src/com/netscape/certsrv/policy/IKeyArchivalPolicy.java b/base/common/src/com/netscape/certsrv/policy/IKeyArchivalPolicy.java index 14a29256f..bdf8e12e5 100644 --- a/base/common/src/com/netscape/certsrv/policy/IKeyArchivalPolicy.java +++ b/base/common/src/com/netscape/certsrv/policy/IKeyArchivalPolicy.java @@ -20,12 +20,12 @@ package com.netscape.certsrv.policy; /** * Interface for a key recovery policy rule. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ diff --git a/base/common/src/com/netscape/certsrv/policy/IKeyRecoveryPolicy.java b/base/common/src/com/netscape/certsrv/policy/IKeyRecoveryPolicy.java index 6de615673..42d3e38e1 100644 --- a/base/common/src/com/netscape/certsrv/policy/IKeyRecoveryPolicy.java +++ b/base/common/src/com/netscape/certsrv/policy/IKeyRecoveryPolicy.java @@ -20,12 +20,12 @@ package com.netscape.certsrv.policy; /** * Interface for a key recovery policy rule. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ diff --git a/base/common/src/com/netscape/certsrv/policy/IPolicyPredicateParser.java b/base/common/src/com/netscape/certsrv/policy/IPolicyPredicateParser.java index 0992beaeb..f56de9811 100644 --- a/base/common/src/com/netscape/certsrv/policy/IPolicyPredicateParser.java +++ b/base/common/src/com/netscape/certsrv/policy/IPolicyPredicateParser.java @@ -20,12 +20,12 @@ package com.netscape.certsrv.policy; /** * Interface for policy predicate parsers. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ @@ -33,7 +33,7 @@ public interface IPolicyPredicateParser { /** * Parse the predicate expression and return a vector of expressions. - * + * * @param predicateExpression The predicate expression as read from the * config file. * @return expVector The vector of expressions. diff --git a/base/common/src/com/netscape/certsrv/policy/IPolicyProcessor.java b/base/common/src/com/netscape/certsrv/policy/IPolicyProcessor.java index 11927a03f..5ee591e86 100644 --- a/base/common/src/com/netscape/certsrv/policy/IPolicyProcessor.java +++ b/base/common/src/com/netscape/certsrv/policy/IPolicyProcessor.java @@ -30,16 +30,16 @@ import com.netscape.certsrv.base.ISubsystem; * which makes sense because a processor may be based on some rule * such as evaluate all policies before returning the final result or * return as soon as one of the policies return a failure and so on. - * + * * By making both processor and policy rules implement a common * interface, one can write rules that are processors as well. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ @@ -60,14 +60,14 @@ public interface IPolicyProcessor extends ISubsystem, /** * Returns the policy substore id. - * + * * @return storeID The policy store id used by this processor. */ String getPolicySubstoreId(); /** * Returns information on Policy impls. - * + * * @return An enumeration of strings describing the information * about policy implementations. Currently only the * the implementation id is expected. @@ -76,7 +76,7 @@ public interface IPolicyProcessor extends ISubsystem, /** * Returns the rule implementations registered with this processor. - * + * * @return An Enumeration of uninitialized IPolicyRule * objects. */ @@ -84,7 +84,7 @@ public interface IPolicyProcessor extends ISubsystem, /** * Returns an implementation identified by a given id. - * + * * @param id The implementation id. * @return The uninitialized instance of the policy rule. */ @@ -92,7 +92,7 @@ public interface IPolicyProcessor extends ISubsystem, /** * Returns configuration for an implmentation. - * + * * @param id The implementation id. * @return A vector of name/value pairs in the form of * name=value. @@ -101,8 +101,8 @@ public interface IPolicyProcessor extends ISubsystem, /** * Deletes a policy implementation identified by an impl id. - * - * + * + * * @param id The impl id of the policy to be deleted. * There shouldn't be any active instance for this * implementation. @@ -113,7 +113,7 @@ public interface IPolicyProcessor extends ISubsystem, /** * Adds a policy implementation identified by an impl id. - * + * * @param id The impl id of the policy to be added. * The id should be unique. * @param classPath The fully qualified path for the implementation. @@ -124,7 +124,7 @@ public interface IPolicyProcessor extends ISubsystem, /** * Returns information on Policy instances. - * + * * @return An Enumeration of Strings describing the information * about policy rule instances. */ @@ -132,14 +132,14 @@ public interface IPolicyProcessor extends ISubsystem, /** * Returns policy instances registered with this processor. - * + * * @return An Enumeration of policy instances. */ Enumeration getPolicyInstances(); /** * Returns instance configuration for a given instance id. - * + * * @param id The rule id. * @return A vector of name/value pairs in the form of * name=value. @@ -148,7 +148,7 @@ public interface IPolicyProcessor extends ISubsystem, /** * Returns instance configuration for a given instance id. - * + * * @param id The rule id. * @return the policy instance identified by the id. */ @@ -156,7 +156,7 @@ public interface IPolicyProcessor extends ISubsystem, /** * Deletes a policy instance identified by an instance id. - * + * * @param id The instance id of the policy to be deleted. * @exception EBaseException is thrown if an error occurs in deletion. */ @@ -165,7 +165,7 @@ public interface IPolicyProcessor extends ISubsystem, /** * Adds a policy instance - * + * * @param id The impl id of the policy to be added. * The id should be unique. * @param ht a Hashtable of config params. @@ -176,7 +176,7 @@ public interface IPolicyProcessor extends ISubsystem, /** * Modifies a policy instance - * + * * @param id The impl id of the policy to be modified. * The policy instance with this id should be present. * @param ht a Hashtable of config params. @@ -187,9 +187,9 @@ public interface IPolicyProcessor extends ISubsystem, /** * Modifies policy ordering. - * + * * @param policyOrderStr The comma separated list of instance ids. - * + * */ void changePolicyInstanceOrdering(String policyOrderStr) throws EBaseException; diff --git a/base/common/src/com/netscape/certsrv/policy/IPolicyRule.java b/base/common/src/com/netscape/certsrv/policy/IPolicyRule.java index 7f7f888f6..601369813 100644 --- a/base/common/src/com/netscape/certsrv/policy/IPolicyRule.java +++ b/base/common/src/com/netscape/certsrv/policy/IPolicyRule.java @@ -28,12 +28,12 @@ import com.netscape.certsrv.request.PolicyResult; /** * Interface for a policy rule. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ @@ -46,7 +46,7 @@ public interface IPolicyRule /** * Initializes the policy rule. *

- * + * * @param config The config store reference */ void init(ISubsystem owner, IConfigStore config) @@ -55,7 +55,7 @@ public interface IPolicyRule /** * Gets the description for this policy rule. *

- * + * * @return The Description for this rule. */ String getDescription(); @@ -63,7 +63,7 @@ public interface IPolicyRule /** * Returns the name of the policy rule class. *

- * + * * @return The name of the policy class. */ String getName(); @@ -71,17 +71,17 @@ public interface IPolicyRule /** * Returns the name of the policy rule instance. *

- * + * * @return The name of the policy rule instance. If none * is set the name of the implementation will be returned. - * + * */ String getInstanceName(); /** * Sets a predicate expression for rule matching. *

- * + * * @param exp The predicate expression for the rule. */ void setPredicate(IExpression exp); @@ -89,7 +89,7 @@ public interface IPolicyRule /** * Returns the predicate expression for the rule. *

- * + * * @return The predicate expression for the rule. */ IExpression getPredicate(); @@ -98,7 +98,7 @@ public interface IPolicyRule * Applies the policy on the given Request. This may modify * the request appropriately. *

- * + * * @param req The request on which to apply policy. * @return The PolicyResult object. */ @@ -106,7 +106,7 @@ public interface IPolicyRule /** * Return configured parameters for a policy rule instance. - * + * * @return nvPairs A Vector of name/value pairs. Each name/value * pair is constructed as a String in name=value format. */ @@ -114,7 +114,7 @@ public interface IPolicyRule /** * Return default parameters for a policy implementation. - * + * * @return nvPairs A Vector of name/value pairs. Each name/value * pair is constructed as a String in name=value. */ diff --git a/base/common/src/com/netscape/certsrv/policy/IPolicySet.java b/base/common/src/com/netscape/certsrv/policy/IPolicySet.java index a9fb6a2d2..5170153ff 100644 --- a/base/common/src/com/netscape/certsrv/policy/IPolicySet.java +++ b/base/common/src/com/netscape/certsrv/policy/IPolicySet.java @@ -32,12 +32,12 @@ import com.netscape.certsrv.request.PolicyResult; * them in increasing order of priority and presenting an ordered vector of rules * via the IPolicySet interface. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ @@ -46,7 +46,7 @@ public interface IPolicySet { /** * Returns the name of the rule set. *

- * + * * @return The name of the rule set. */ String getName(); @@ -54,7 +54,7 @@ public interface IPolicySet { /** * Returns the no of rules in a set. *

- * + * * @return the no of rules. */ int count(); @@ -62,7 +62,7 @@ public interface IPolicySet { /** * Add a policy rule. *

- * + * * @param ruleName The name of the rule to be added. * @param rule The rule to be added. */ @@ -70,7 +70,7 @@ public interface IPolicySet { /** * Removes a policy rule identified by the given name. - * + * * @param ruleName The name of the rule to be removed. */ void removeRule(String ruleName); @@ -78,7 +78,7 @@ public interface IPolicySet { /** * Returns the rule identified by a given name. *

- * + * * @param ruleName The name of the rule to be return. * @return The rule identified by the given name or null if none exists. */ @@ -87,7 +87,7 @@ public interface IPolicySet { /** * Returns an enumeration of rules. *

- * + * * @return An enumeration of rules. */ Enumeration getRules(); @@ -95,9 +95,9 @@ public interface IPolicySet { /** * Apply policy rules on a request. This call may modify * the request content. - * + * * @param req The request to apply policies on. - * + * *

* @return The policy result. */ diff --git a/base/common/src/com/netscape/certsrv/policy/IRenewalPolicy.java b/base/common/src/com/netscape/certsrv/policy/IRenewalPolicy.java index 28f56fe73..6f47ff6d9 100644 --- a/base/common/src/com/netscape/certsrv/policy/IRenewalPolicy.java +++ b/base/common/src/com/netscape/certsrv/policy/IRenewalPolicy.java @@ -20,12 +20,12 @@ package com.netscape.certsrv.policy; /** * Interface for a renewal policy rule. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ diff --git a/base/common/src/com/netscape/certsrv/policy/IRevocationPolicy.java b/base/common/src/com/netscape/certsrv/policy/IRevocationPolicy.java index 7e6084c76..d573c4bd2 100644 --- a/base/common/src/com/netscape/certsrv/policy/IRevocationPolicy.java +++ b/base/common/src/com/netscape/certsrv/policy/IRevocationPolicy.java @@ -20,12 +20,12 @@ package com.netscape.certsrv.policy; /** * Interface for a revocation policy rule. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ diff --git a/base/common/src/com/netscape/certsrv/policy/ISubjAltNameConfig.java b/base/common/src/com/netscape/certsrv/policy/ISubjAltNameConfig.java index 0fee01be2..be6e5f214 100644 --- a/base/common/src/com/netscape/certsrv/policy/ISubjAltNameConfig.java +++ b/base/common/src/com/netscape/certsrv/policy/ISubjAltNameConfig.java @@ -21,12 +21,12 @@ package com.netscape.certsrv.policy; * Class that can be used to form general names from configuration file. * Used by policies and extension commands. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ */ @@ -34,14 +34,14 @@ public interface ISubjAltNameConfig extends IGeneralNameConfig { /** * Retrieves configuration prefix. - * + * * @return prefix */ public String getPfx(); /** * Retrieves configuration attribute. - * + * * @return attribute */ public String getAttr(); diff --git a/base/common/src/com/netscape/certsrv/policy/PolicyResources.java b/base/common/src/com/netscape/certsrv/policy/PolicyResources.java index d330b719f..acaf6d92b 100644 --- a/base/common/src/com/netscape/certsrv/policy/PolicyResources.java +++ b/base/common/src/com/netscape/certsrv/policy/PolicyResources.java @@ -22,12 +22,12 @@ import java.util.ListResourceBundle; /** * Error messages for Policies. *

- * + * *

  * NOTE:  The Policy Framework has been replaced by the Profile Framework.
  * 
*

- * + * * @deprecated * @version $Revision$, $Date$ * @see java.util.ListResourceBundle -- cgit