org.fcrepo.common.policy.xacml1.XACML1PolicyNamespace Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fcrepo-common Show documentation
Show all versions of fcrepo-common Show documentation
Common, generally useful utilities
package org.fcrepo.common.policy.xacml1;
import org.fcrepo.common.policy.XacmlNamespace;
public class XACML1PolicyNamespace extends XacmlNamespace {
private XACML1PolicyNamespace(XacmlNamespace parent, String localName) {
super(parent, localName);
}
public static XACML1PolicyNamespace onlyInstance = new XACML1PolicyNamespace(XACML1Namespace.getInstance(), "policy");
public static final XACML1PolicyNamespace getInstance() {
return onlyInstance;
}
}