Package org.apache.geronimo.security

Examples of org.apache.geronimo.security.ThreadData


        }
        return null;
    }

    public static Object[] pushContextData(Object[] args) {
        ThreadData threadData = ContextManager.getThreadData();
        Object[] oldArgs = threadData.getArgs();
        threadData.setArgs(args);
        return oldArgs;
    }
View Full Code Here


        threadData.setArgs(args);
        return oldArgs;
    }

    public static void popContextData(Object[] oldArgs) {
        ThreadData threadData = ContextManager.getThreadData();
        threadData.setArgs(oldArgs);
    }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.security.ThreadData

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.