1 26 package org.objectweb.openccm.descriptor.componentassembly.ccm.deployer.base; 27 28 import org.objectweb.openccm.descriptor.ZipEntryRetriever; 30 31 41 public abstract class ChildDeployerContext 42 extends DeployerContext 43 { 44 50 private RootDeployerContext root; 52 53 59 65 71 78 public void 79 connectRootDeployerContext(RootDeployerContext root) 80 { 81 this.root = root; 82 } 83 84 89 public RootDeployerContext 90 getRootDeployerContext() 91 { 92 return root; 93 } 94 95 101 public ZipEntryRetriever getZipEntryRetriever() 102 { 103 return getRootDeployerContext().getZipEntryRetriever(); 104 } 105 106 111 public DeploymentLogger getLogger() 112 { 113 return getRootDeployerContext().getDeploymentLogger(); 114 } 115 116 } 117 | Popular Tags |