KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > batik > util > BatikSecurityManager


1 /*
2
3    Copyright 2002 The Apache Software Foundation
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16
17  */

18 package org.apache.batik.util;
19
20 /**
21  * This <tt>SecurityManager</tt> extension exposes the <tt>getClassContext</tt>
22  * method so that it can be used by the <tt>BatikSecuritySupport</tt> or other
23  * security related class.
24  *
25  * @author <a mailto="vincent.hardy@sun.com">Vincent Hardy</a>
26  * @version $Id: BatikSecurityManager.java,v 1.3 2004/08/18 07:15:48 vhardy Exp $
27  */

28 public class BatikSecurityManager extends SecurityManager JavaDoc {
29     /**
30      * Returns the current execution stack as an array of classes.
31      * <p>
32      * The length of the array is the number of methods on the execution
33      * stack. The element at index <code>0</code> is the class of the
34      * currently executing method, the element at index <code>1</code> is
35      * the class of that method's caller, and so on.
36      *
37      * @return the execution stack.
38      */

39     public Class JavaDoc[] getClassContext(){
40         return super.getClassContext();
41     }
42
43     
44 }
45
Popular Tags