Package org.fcrepo.common.policy.xacml1

Source Code of org.fcrepo.common.policy.xacml1.XACML1ActionNamespace

package org.fcrepo.common.policy.xacml1;
import org.fcrepo.common.policy.XacmlName;
import org.fcrepo.common.policy.XacmlNamespace;



public class XACML1ActionNamespace extends XacmlNamespace {

    public final XacmlName ID;

    private XACML1ActionNamespace(XacmlNamespace parent, String localName) {
        super(parent, localName);
        ID = new XacmlName(this,"action-id");
    }

    public static XACML1ActionNamespace onlyInstance =
            new XACML1ActionNamespace(XACML1Namespace.getInstance(), "action");

    public static final XACML1ActionNamespace getInstance() {
        return onlyInstance;
    }

}
TOP

Related Classes of org.fcrepo.common.policy.xacml1.XACML1ActionNamespace

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.