1 23 package com.sun.enterprise.web.deploy; 24 25 import org.apache.catalina.deploy.ContextEnvironment; 26 27 import com.sun.enterprise.deployment.EnvironmentProperty; 28 29 import java.io.Serializable ; 30 31 32 37 public class ContextEnvironmentDecorator extends ContextEnvironment { 38 39 private EnvironmentProperty decoree; 40 41 public ContextEnvironmentDecorator(EnvironmentProperty decoree){ 42 this.decoree = decoree; 43 } 44 45 46 48 49 public String getDescription() { 50 return decoree.getDescription(); 51 } 52 53 54 public String getName() { 55 return decoree.getName(); 56 } 57 58 59 public String getType() { 60 return decoree.getType(); 61 } 62 63 64 public String getValue() { 65 return decoree.getValue(); 66 } 67 68 69 } 70 | Popular Tags |