Searched defs:doPrivileged (Results 1 - 2 of 2) sorted by relevance

/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/common/
H A DAppservAccessController.java59 public static Object doPrivileged(PrivilegedAction action) { method in class:AppservAccessController
63 return AccessController.doPrivileged(action);
67 public static Object doPrivileged(PrivilegedExceptionAction action) method in class:AppservAccessController
77 return AccessController.doPrivileged(action);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DApplicationContextFacade.java167 return (String) doPrivileged("getContextPath", null);
179 doPrivileged("getContext", new Object[]{uripath});
224 @SuppressWarnings("unchecked") // doPrivileged() returns the correct type
227 return (String)doPrivileged("getMimeType", new Object[]{file});
235 @SuppressWarnings("unchecked") // doPrivileged() returns the correct type
238 return (Set<String>)doPrivileged("getResourcePaths",
266 @SuppressWarnings("unchecked") // doPrivileged() returns the correct type
269 return (InputStream) doPrivileged("getResourceAsStream",
278 @SuppressWarnings("unchecked") // doPrivileged() returns the correct type
281 return (RequestDispatcher) doPrivileged("getRequestDispatche
906 private Object doPrivileged(final String methodName, Object[] params){ method in class:ApplicationContextFacade
950 private Object doPrivileged(final String methodName, method in class:ApplicationContextFacade
[all...]

Completed in 23 milliseconds