Skip to content

Commit

Permalink
Fixed missing ManualAuthentication
Browse files Browse the repository at this point in the history
The GenericPolicyProcessor has been modified to remove the
hard-coded package name of ManualAuthentication class.

https://pagure.io/dogtagpki/issue/3111
  • Loading branch information
edewata committed Nov 4, 2019
1 parent 44138b4 commit 46df45c
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -72,8 +72,9 @@ public class GenericPolicyProcessor implements IPolicyProcessor {
protected IAuthority mAuthority = null;

// Default System Policies
public final static String[] DEF_POLICIES =
{ "com.netscape.cms.policy.constraints.ManualAuthentication" };
public final static String[] DEF_POLICIES = {
org.dogtagpki.legacy.server.policy.constraints.ManualAuthentication.class.getName()
};

// Policies that can't be deleted nor disabled.
public final static Hashtable<String, IExpression> DEF_UNDELETABLE_POLICIES =
Expand Down

0 comments on commit 46df45c

Please sign in to comment.