|
| |
"Security for J2EE Applications"
Vol. 6, Issue 11, p. 28
Listing 1
public Object run ();
Here is an example of a class implementing PrivilegedAction:
public class TestAction implements java.security.PrivilegedAction {
public Object run () {
System.out.println("You are supposed to do some controlled " +
"action like getting a system property (user.home = " +
System.getProperty("user.home") + ")";
}
}
|
|
All Rights Reserved
Copyright © 2004 SYS-CON Media, Inc.
E-mail: info@sys-con.com
Java and Java-based marks are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. SYS-CON Publications, Inc. is independent of Sun Microsystems, Inc.
|