Start line:  
End line:  

Snippet Preview

Snippet HTML Code

Stack Overflow Questions
The project I'm working on has about 10 jar files as libraries. At the top of one of the files there's an import statement like: import jpe.nar.crat.maker.ObjectMakerFactory; Is there a way to tell which Jar file it comes from? (I'm using Netbeans if that matters.)
Is there a way for java program to determine its location in the file system?
Let's say I have my main class in C:\Users\Justian\Documents. How can I get my program to show that it's in C:\Users\Justian\Documents. Hard-Coding is not an option- it needs to be adaptable if it's moved to another location. I want to dump a bunch of CSV files in a folder, have the program recognize all the files, then load the data and manipulate them. I really just want to know how to nav...
Is there any other implementation (e.g. in an OSS project) of a Java SecurityManager available which has more features than the one in the JDK? I'm looking for features like configurable at runtime policies updateable at runtime, read from other data sources than a security.policy file Thread-aware, e.g. different policies per Thread Higher-level policies, e.g. "Disable network functions, bu...
Is there a legal way to add/remove permissions to Java security policy at runtime?
I am writing a JACC provider. Along the way, this means implementing a PolicyConfiguration. The PolicyConfiguration is responsible for accepting configuration information from the application server, such as which permissions accrue to which roles. This is so that a Policy later on can make authorization decisions when handed information about the current user and what he's trying to do. Ho...
  /*
   * Copyright 1997-2006 Sun Microsystems, Inc.  All Rights Reserved.
   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   *
   * This code is free software; you can redistribute it and/or modify it
   * under the terms of the GNU General Public License version 2 only, as
   * published by the Free Software Foundation.  Sun designates this
   * particular file as subject to the "Classpath" exception as provided
   * by Sun in the LICENSE file that accompanied this code.
  *
  * This code is distributed in the hope that it will be useful, but WITHOUT
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  * version 2 for more details (a copy is included in the LICENSE file that
  * accompanied this code).
  *
  * You should have received a copy of the GNU General Public License version
  * 2 along with this work; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  *
  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  * CA 95054 USA or visit www.sun.com if you need additional information or
  * have any questions.
  */
 
 package java.security;
 
 import java.util.List;

This ProtectionDomain class encapsulates the characteristics of a domain, which encloses a set of classes whose instances are granted a set of permissions when being executed on behalf of a given set of Principals.

A static set of permissions can be bound to a ProtectionDomain when it is constructed; such permissions are granted to the domain regardless of the Policy in force. However, to support dynamic security policies, a ProtectionDomain can also be constructed such that it is dynamically mapped to a set of permissions by the current Policy whenever a permission is checked.

Author(s):
Li Gong
Roland Schemers
Gary Ellison
 
 
 public class ProtectionDomain {
 
     /* CodeSource */
     private CodeSource codesource ;
 
     /* ClassLoader the protection domain was consed from */
     private ClassLoader classloader;
 
     /* Principals running-as within this protection domain */
     private Principal[] principals;
 
     /* the rights this protection domain is granted */
     private PermissionCollection permissions;
 
     /* if the permissions object has AllPermission */
     private boolean hasAllPerm = false;
 
     /* the PermissionCollection is static (pre 1.4 constructor)
        or dynamic (via a policy refresh) */
     private boolean staticPermissions;
 
     private static final Debug debug = Debug.getInstance("domain");

    
Creates a new ProtectionDomain with the given CodeSource and Permissions. If the permissions object is not null, then setReadOnly()) will be called on the passed in Permissions object. The only permissions granted to this domain are the ones specified; the current Policy will not be consulted.

Parameters:
codesource the codesource associated with this domain
permissions the permissions granted to this domain
 
     public ProtectionDomain(CodeSource codesource,
                             PermissionCollection permissions) {
         this. = codesource;
         if (permissions != null) {
             this. = permissions;
             this..setReadOnly();
             if (permissions instanceof Permissions &&
                 ((Permissions)permissions). != null) {
                  = true;
             }
         }
         this. = null;
         this. = new Principal[0];
         = true;
    }

    
Creates a new ProtectionDomain qualified by the given CodeSource, Permissions, ClassLoader and array of Principals. If the permissions object is not null, then setReadOnly() will be called on the passed in Permissions object. The permissions granted to this domain are dynamic; they include both the static permissions passed to this constructor, and any permissions granted to this domain by the current Policy at the time a permission is checked.

This constructor is typically used by ClassLoaders and DomainCombiners which delegate to Policy to actively associate the permissions granted to this domain. This constructor affords the Policy provider the opportunity to augment the supplied PermissionCollection to reflect policy changes.

Parameters:
codesource the CodeSource associated with this domain
permissions the permissions granted to this domain
classloader the ClassLoader associated with this domain
principals the array of Principals associated with this domain. The contents of the array are copied to protect against subsequent modification.
Since:
1.4
See also:
Policy.refresh()
Policy.getPermissions(java.security.ProtectionDomain)
    public ProtectionDomain(CodeSource codesource,
                            PermissionCollection permissions,
                            ClassLoader classloader,
                            Principal[] principals) {
        this. = codesource;
        if (permissions != null) {
            this. = permissions;
            this..setReadOnly();
            if (permissions instanceof Permissions &&
                ((Permissions)permissions). != null) {
                 = true;
            }
        }
        this. = classloader;
        this. = (principals != null ? principals.clone():
                           new Principal[0]);
         = false;
    }

    
Returns the CodeSource of this domain.

Returns:
the CodeSource of this domain which may be null.
Since:
1.2
    public final CodeSource getCodeSource() {
        return this.;
    }


    
Returns the ClassLoader of this domain.

Returns:
the ClassLoader of this domain which may be null.
Since:
1.4
    public final ClassLoader getClassLoader() {
        return this.;
    }


    
Returns an array of principals for this domain.

Returns:
a non-null array of principals for this domain. Returns a new array each time this method is called.
Since:
1.4
    public final Principal[] getPrincipals() {
        return this..clone();
    }

    
Returns the static permissions granted to this domain.

Returns:
the static set of permissions for this domain which may be null.
See also:
Policy.refresh()
Policy.getPermissions(java.security.ProtectionDomain)
    public final PermissionCollection getPermissions() {
        return ;
    }

    
Check and see if this ProtectionDomain implies the permissions expressed in the Permission object.

The set of permissions evaluated is a function of whether the ProtectionDomain was constructed with a static set of permissions or it was bound to a dynamically mapped set of permissions.

If the ProtectionDomain was constructed to a statically bound PermissionCollection then the permission will only be checked against the PermissionCollection supplied at construction.

However, if the ProtectionDomain was constructed with the constructor variant which supports dynamically binding permissions, then the permission will be checked against the combination of the PermissionCollection supplied at construction and the current Policy binding.

Parameters:
permission the Permission object to check.
Returns:
true if "permission" is implicit to this ProtectionDomain.
    public boolean implies(Permission permission) {
        if () {
            // internal permission collection already has AllPermission -
            // no need to go to policy
            return true;
        }
        if (! &&
            Policy.getPolicyNoCheck().implies(thispermission))
            return true;
        if ( != null)
            return .implies(permission);
        return false;
    }

    
Convert a ProtectionDomain to a String.
    public String toString() {
        String pals = "<no principals>";
        if ( != null && . > 0) {
            StringBuilder palBuf = new StringBuilder("(principals ");
            for (int i = 0; i < .i++) {
                palBuf.append([i].getClass().getName() +
                            " \"" + [i].getName() +
                            "\"");
                if (i < .-1)
                    palBuf.append(",\n");
                else
                    palBuf.append(")\n");
            }
            pals = palBuf.toString();
        }
        // Check if policy is set; we don't want to load
        // the policy prematurely here
        PermissionCollection pc = Policy.isSet() && seeAllp() ?
                                      mergePermissions():
                                      getPermissions();
        return "ProtectionDomain "+
            " "++"\n"+
            " "++"\n"+
            " "+pals+"\n"+
            " "+pc+"\n";
    }

    
Return true (merge policy permissions) in the following cases: . SecurityManager is null . SecurityManager is not null, debug is not null, SecurityManager impelmentation is in bootclasspath, Policy implementation is in bootclasspath (the bootclasspath restrictions avoid recursion) . SecurityManager is not null, debug is null, caller has Policy.getPolicy permission
    private static boolean seeAllp() {
        SecurityManager sm = System.getSecurityManager();
        if (sm == null) {
            return true;
        } else {
            if ( != null) {
                if (sm.getClass().getClassLoader() == null &&
                    Policy.getPolicyNoCheck().getClass().getClassLoader()
                                                                == null) {
                    return true;
                }
            } else {
                try {
                    sm.checkPermission(.);
                    return true;
                } catch (SecurityException se) {
                    // fall thru and return false
                }
            }
        }
        return false;
    }
        if ()
            return ;
        PermissionCollection perms =
            java.security.AccessController.doPrivileged
            (new java.security.PrivilegedAction<PermissionCollection>() {
                    public PermissionCollection run() {
                        Policy p = Policy.getPolicyNoCheck();
                        return p.getPermissions(ProtectionDomain.this);
                    }
                });
        Permissions mergedPerms = new Permissions();
        int swag = 32;
        int vcap = 8;
        Enumeration<Permissione;
        List<PermissionpdVector = new ArrayList<Permission>(vcap);
        List<PermissionplVector = new ArrayList<Permission>(swag);
        //
        // Build a vector of domain permissions for subsequent merge
        if ( != null) {
            synchronized () {
                e = .elements();
                while (e.hasMoreElements()) {
                    pdVector.add(e.nextElement());
                }
            }
        }
        //
        // Build a vector of Policy permissions for subsequent merge
        if (perms != null) {
            synchronized (perms) {
                e = perms.elements();
                while (e.hasMoreElements()) {
                    plVector.add(e.nextElement());
                    vcap++;
                }
            }
        }
        if (perms != null &&  != null) {
            //
            // Weed out the duplicates from the policy. Unless a refresh
            // has occured since the pd was consed this should result in
            // an empty vector.
            synchronized () {
                e = .elements();   // domain vs policy
                while (e.hasMoreElements()) {
                    Permission pdp = e.nextElement();
                    Class pdpClass = pdp.getClass();
                    String pdpActions = pdp.getActions();
                    String pdpName = pdp.getName();
                    for (int i = 0; i < plVector.size(); i++) {
                        Permission pp = plVector.get(i);
                        if (pdpClass.isInstance(pp)) {
                            // The equals() method on some permissions
                            // have some side effects so this manual
                            // comparison is sufficient.
                            if (pdpName.equals(pp.getName()) &&
                                pdpActions.equals(pp.getActions())) {
                                plVector.remove(i);
                                break;
                            }
                        }
                    }
                }
            }
        }
        if (perms !=null) {
            // the order of adding to merged perms and permissions
            // needs to preserve the bugfix 4301064
            for (int i = plVector.size()-1; i >= 0; i--) {
                mergedPerms.add(plVector.get(i));
            }
        }
        if ( != null) {
            for (int i = pdVector.size()-1; i >= 0; i--) {
                mergedPerms.add(pdVector.get(i));
            }
        }
        return mergedPerms;
    }
New to GrepCode? Check out our FAQ X