1 29 30 package com.caucho.server.e_app; 31 32 import com.caucho.management.server.EarDeployMXBean; 33 import com.caucho.server.deploy.ExpandDeployGeneratorAdmin; 34 35 public class EarDeployGeneratorAdmin 36 extends ExpandDeployGeneratorAdmin<EarDeployGenerator> 37 implements EarDeployMXBean 38 { 39 public EarDeployGeneratorAdmin(EarDeployGenerator earDeployGenerator) 40 { 41 super(earDeployGenerator); 42 } 43 44 boolean register() 45 { 46 return registerSelf(); 47 } 48 49 boolean unregister() 50 { 51 return unregisterSelf(); 52 } 53 54 public String getURLPrefix() 55 { 56 return getDeployGenerator().getURLPrefix(); 57 } 58 } 59 | Popular Tags |