1 23 24 37 package com.sun.enterprise.server; 38 39 import com.sun.enterprise.config.serverbeans.Resources; 40 41 48 public interface ResourceDeployer { 49 50 56 void deployResource(Object resoure) throws Exception ; 57 58 64 void undeployResource(Object resoure) throws Exception ; 65 66 72 void redeployResource(Object resoure) throws Exception ; 73 74 80 void enableResource(Object resoure) throws Exception ; 81 82 88 void disableResource(Object resoure) throws Exception ; 89 90 91 99 Object getResource(String name, Resources rbeans) throws Exception ; 100 } 101 | Popular Tags |