summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/policy/IPolicySet.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/certsrv/policy/IPolicySet.java')
-rw-r--r--base/common/src/com/netscape/certsrv/policy/IPolicySet.java20
1 files changed, 10 insertions, 10 deletions
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.
* <P>
- *
+ *
* <PRE>
* NOTE: The Policy Framework has been replaced by the Profile Framework.
* </PRE>
* <P>
- *
+ *
* @deprecated
* @version $Revision$, $Date$
*/
@@ -46,7 +46,7 @@ public interface IPolicySet {
/**
* Returns the name of the rule set.
* <P>
- *
+ *
* @return The name of the rule set.
*/
String getName();
@@ -54,7 +54,7 @@ public interface IPolicySet {
/**
* Returns the no of rules in a set.
* <P>
- *
+ *
* @return the no of rules.
*/
int count();
@@ -62,7 +62,7 @@ public interface IPolicySet {
/**
* Add a policy rule.
* <P>
- *
+ *
* @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.
* <P>
- *
+ *
* @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.
* <P>
- *
+ *
* @return An enumeration of rules.
*/
Enumeration<IPolicyRule> 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.
- *
+ *
* <P>
* @return The policy result.
*/