1 23 package com.sun.enterprise.web.deploy; 24 25 26 import org.apache.catalina.deploy.MessageDestination; 27 import com.sun.enterprise.deployment.MessageDestinationDescriptor; 28 29 30 35 36 public class MessageDestinationDecorator extends MessageDestination { 37 38 private MessageDestinationDescriptor decoree; 39 40 public MessageDestinationDecorator(MessageDestinationDescriptor decoree){ 41 this.decoree = decoree; 42 } 43 45 46 49 private String description = null; 50 51 public String getDescription() { 52 return decoree.getDescription(); 53 } 54 55 56 public String getDisplayName() { 57 return decoree.getDisplayName(); 58 } 59 60 61 public String getLargeIcon() { 62 return decoree.getLargeIconUri(); 63 } 64 65 66 public String getName() { 67 return decoree.getName(); 68 } 69 70 public String getSmallIcon() { 71 return decoree.getSmallIconUri(); 72 } 73 74 75 } 76 | Popular Tags |