1 11 12 package org.eclipse.osgi.framework.internal.core; 13 14 import java.security.PermissionCollection ; 15 import org.eclipse.osgi.framework.adaptor.BundleProtectionDomain; 16 17 22 public class BundleProtectionDomainImpl extends BundleProtectionDomain { 23 AbstractBundle bundle; 24 25 29 public BundleProtectionDomainImpl(AbstractBundle bundle, PermissionCollection permCollection) { 30 super(permCollection); 31 this.bundle = bundle; 32 } 33 } 34 | Popular Tags |