1 19 24 25 package org.netbeans.modules.j2ee.sun.dd.api.serverresources; 26 29 public interface ResourceAdapterConfig { 30 31 public static final String NAME = "Name"; public static final String THREADPOOLIDS = "ThreadPoolIds"; public static final String RESOURCEADAPTERNAME = "ResourceAdapterName"; public static final String PROPERTY = "PropertyElement"; public static final String OBJECTTYPE = "ObjectType"; 37 40 public void setName(java.lang.String value); 41 44 public java.lang.String getName(); 45 48 public void setThreadPoolIds(java.lang.String value); 49 52 public java.lang.String getThreadPoolIds(); 53 56 public void setResourceAdapterName(java.lang.String value); 57 60 public java.lang.String getResourceAdapterName(); 61 62 public void setPropertyElement(int index, PropertyElement value); 63 public PropertyElement getPropertyElement(int index); 64 public int sizePropertyElement(); 65 public void setPropertyElement(PropertyElement[] value); 66 public PropertyElement[] getPropertyElement(); 67 public int addPropertyElement(PropertyElement value); 68 public int removePropertyElement(PropertyElement value); 69 public PropertyElement newPropertyElement(); 70 71 75 public void setObjectType(java.lang.String value); 76 79 public java.lang.String getObjectType(); 80 81 } 82 | Popular Tags |