1 17 18 package org.apache.geronimo.naming.deployment; 19 20 import java.util.Set ; 21 22 26 public interface ResourceEnvironmentBuilder { 27 Set getUnshareableResources(); 28 29 void setUnshareableResources(Set unshareableResources); 30 31 Set getApplicationManagedSecurityResources(); 32 33 void setApplicationManagedSecurityResources(Set applicationManagedSecurityResources); 34 } 35 | Popular Tags |