summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/certsrv/policy/IPolicyRule.java
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2011-11-18 15:03:44 -0500
committerAdam Young <ayoung@redhat.com>2012-01-04 11:24:45 -0500
commit682832974aba6d29f7849187ebd24c222867d1b8 (patch)
tree55cf70e602b1630c01c9c65f3ff48fc425dcbaa5 /pki/base/common/src/com/netscape/certsrv/policy/IPolicyRule.java
parent5155a9dc8d5b461123a13079252fc5d3fab8f908 (diff)
downloadpki-682832974aba6d29f7849187ebd24c222867d1b8.tar.gz
pki-682832974aba6d29f7849187ebd24c222867d1b8.tar.xz
pki-682832974aba6d29f7849187ebd24c222867d1b8.zip
type safety certserv cms and cmscore
Re-added files IPublshRuleSet and ILdapCertMapper
Diffstat (limited to 'pki/base/common/src/com/netscape/certsrv/policy/IPolicyRule.java')
-rw-r--r--pki/base/common/src/com/netscape/certsrv/policy/IPolicyRule.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/pki/base/common/src/com/netscape/certsrv/policy/IPolicyRule.java b/pki/base/common/src/com/netscape/certsrv/policy/IPolicyRule.java
index d80a0d0c2..0babd48aa 100644
--- a/pki/base/common/src/com/netscape/certsrv/policy/IPolicyRule.java
+++ b/pki/base/common/src/com/netscape/certsrv/policy/IPolicyRule.java
@@ -110,7 +110,7 @@ public interface IPolicyRule
* @return nvPairs A Vector of name/value pairs. Each name/value
* pair is constructed as a String in name=value format.
*/
- public Vector getInstanceParams();
+ public Vector<String> getInstanceParams();
/**
* Return default parameters for a policy implementation.
@@ -118,7 +118,7 @@ public interface IPolicyRule
* @return nvPairs A Vector of name/value pairs. Each name/value
* pair is constructed as a String in name=value.
*/
- public Vector getDefaultParams();
+ public Vector<String> getDefaultParams();
public void setError(IRequest req, String format, Object[] params);