Package secParser

Examples of secParser.PolicyEngineData


     * @return The new topmost PolicyEngineData or null if the stack is empty.
     */
    public PolicyEngineData commitPolicyEngineData() {
        if (pedStackPointer > 1) {
            pedStackPointer--;
            PolicyEngineData ped = (PolicyEngineData) pedStack.get(pedStackPointer);
            pedStackPointer--;
            pedStack.add(pedStackPointer, ped);
            pedStackPointer++;
            return ped;
        } else {
View Full Code Here

TOP

Related Classes of secParser.PolicyEngineData

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.