1 19 20 package org.netbeans.modules.j2ee.dd.api.common; 21 22 28 public interface MessageDestinationRef extends CommonDDBean, DescriptionInterface { 29 30 public static final String MESSAGE_DESTINATION_REF_NAME = "MessageDestinationRefName"; public static final String MESSAGE_DESTINATION_TYPE = "MessageDestinationType"; public static final String MESSAGE_DESTINATION_USAGE = "MessageDestinationUsage"; public static final String MESSAGE_DESTINATION_LINK = "MessageDestinationLink"; public static final String MESSAGE_DESTINATION_USAGE_CONSUMES = "Consumes"; public static final String MESSAGE_DESTINATION_USAGE_PRODUCES = "Produces"; public static final String MESSAGE_DESTINATION_USAGE_CONSUMESPRODUCES = "ConsumesProduces"; 38 41 public void setMessageDestinationRefName(String value); 42 45 public String getMessageDestinationRefName(); 46 49 public void setMessageDestinationType(String value); 50 53 public String getMessageDestinationType(); 54 57 public void setMessageDestinationUsage(String value); 58 61 public String getMessageDestinationUsage(); 62 65 public void setMessageDestinationLink(String value); 66 69 public String getMessageDestinationLink(); 70 71 73 void setMappedName(String value) throws VersionNotSupportedException; 74 String getMappedName() throws VersionNotSupportedException; 75 void setInjectionTarget(int index, InjectionTarget valueInterface) throws VersionNotSupportedException; 76 InjectionTarget getInjectionTarget(int index) throws VersionNotSupportedException; 77 int sizeInjectionTarget() throws VersionNotSupportedException; 78 void setInjectionTarget(InjectionTarget[] value) throws VersionNotSupportedException; 79 InjectionTarget[] getInjectionTarget() throws VersionNotSupportedException; 80 int addInjectionTarget(InjectionTarget valueInterface) throws VersionNotSupportedException; 81 int removeInjectionTarget(InjectionTarget valueInterface) throws VersionNotSupportedException; 82 InjectionTarget newInjectionTarget() throws VersionNotSupportedException; 83 84 } 85 | Popular Tags |