1 23 package com.sun.enterprise.repository; 24 25 import java.util.Set ; 26 27 33 public interface J2EEResourceCollection { 34 35 41 Set getResourcesByType(int type); 42 43 46 Set getAllResources(); 47 48 52 void addResource(J2EEResource resource); 53 54 59 boolean removeResource(J2EEResource resource); 60 61 66 void removeAllResourcesByType(int type); 67 68 73 J2EEResource getResourceByName(int type, String name); 74 75 } 76 | Popular Tags |