1 19 24 25 package org.netbeans.modules.j2ee.sun.dd.api.serverresources; 26 29 public interface JmsResource { 30 31 public static final String JNDINAME = "JndiName"; public static final String RESTYPE = "ResType"; public static final String ENABLED = "Enabled"; public static final String DESCRIPTION = "Description"; public static final String PROPERTY = "PropertyElement"; 37 public void setJndiName(java.lang.String value); 38 39 public java.lang.String getJndiName(); 40 41 public void setResType(java.lang.String value); 42 43 public java.lang.String getResType(); 44 45 public void setEnabled(java.lang.String value); 46 47 public java.lang.String getEnabled(); 48 49 public void setDescription(String value); 50 51 public String getDescription(); 52 53 public void setPropertyElement(int index, PropertyElement value); 54 public PropertyElement getPropertyElement(int index); 55 public int sizePropertyElement(); 56 public void setPropertyElement(PropertyElement[] value); 57 public PropertyElement[] getPropertyElement(); 58 public int addPropertyElement(PropertyElement value); 59 public int removePropertyElement(PropertyElement value); 60 public PropertyElement newPropertyElement(); 61 62 } 63 | Popular Tags |