First page Back Continue Last page Summary Graphics
Subject.doAs()
Allows you to perform an action as the entity.
Example
Subject subj;
//retrieve subject through login context
Subject.doAs(subj,new PrivilegedAction(){
- public Object run(){
- //perform all your privileged actions here
- FileOutputStream fos=new FileOutputStream("account.html");
- }
});
Notes: