Package org.apache.imperius.spl.parser.statements.impl

Examples of org.apache.imperius.spl.parser.statements.impl.PolicyInfoImpl


        List importStmtList = policyObject.getImportStmtList();

        logger.exiting(sourceClass, Thread.currentThread().getName()
            + " " + "getPolicyInfo");
       
        PolicyInfo pi = new PolicyInfoImpl(importStmtList);
        return pi;
      }
      else if (_policyRepository.policyExists(policyRuleName))
      {
        String PolicyString = _policyRepository.getPolicyString(policyRuleName);

        SPLPolicy internalPolicyObject = _policyParser.createInternalPolicyObject(policyRuleName, PolicyString);
        _policyCache.insertPolicy(policyRuleName, internalPolicyObject);
       
        List importStmtList = internalPolicyObject.getImportStmtList();
        PolicyInfo pi = new PolicyInfoImpl(importStmtList);

        logger.exiting(sourceClass, Thread.currentThread().getName()
            + " " + "getPolicyInfo");

        return pi;
View Full Code Here

TOP

Related Classes of org.apache.imperius.spl.parser.statements.impl.PolicyInfoImpl

Copyright © 2018 www.massapicom. 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.