1 19 24 25 package org.netbeans.modules.j2ee.sun.dd.api.serverresources; 26 29 public interface ConnectorResource { 30 31 public static final String JNDINAME = "JndiName"; public static final String POOLNAME = "PoolName"; public static final String OBJECTTYPE = "ObjectType"; public static final String ENABLED = "Enabled"; public static final String DESCRIPTION = "Description"; public static final String PROPERTY = "PropertyElement"; 38 41 public void setJndiName(java.lang.String value); 42 45 public java.lang.String getJndiName(); 46 49 public void setPoolName(java.lang.String value); 50 53 public java.lang.String getPoolName(); 54 57 public void setObjectType(java.lang.String value); 58 61 public java.lang.String getObjectType(); 62 65 public void setEnabled(java.lang.String value); 66 69 public java.lang.String getEnabled(); 70 73 public void setDescription(String value); 74 77 public String getDescription(); 78 79 public void setPropertyElement(int index, PropertyElement value); 80 public PropertyElement getPropertyElement(int index); 81 public int sizePropertyElement(); 82 public void setPropertyElement(PropertyElement[] value); 83 public PropertyElement[] getPropertyElement(); 84 public int addPropertyElement(PropertyElement value); 85 public int removePropertyElement(PropertyElement value); 86 public PropertyElement newPropertyElement(); 87 88 } 89 | Popular Tags |