1 19 20 24 25 package org.netbeans.modules.j2ee.sun.ws7.serverresources.dd; 26 27 30 public interface WS70CustomResource { 31 32 public static final String JNDINAME = "JndiName"; public static final String RESTYPE = "ResType"; public static final String FACTORYCLASS = "FactoryClass"; public static final String ENABLED = "Enabled"; public static final String DESCRIPTION = "Description"; public static final String PROPERTY = "PropertyElement"; 39 40 43 public void setJndiName(java.lang.String value); 44 47 public java.lang.String getJndiName(); 48 51 public void setResType(java.lang.String value); 52 55 public java.lang.String getResType(); 56 59 public void setFactoryClass(java.lang.String value); 60 63 public java.lang.String getFactoryClass(); 64 67 public void setEnabled(java.lang.String value); 68 71 public java.lang.String getEnabled(); 72 75 public void setDescription(String value); 76 79 public String getDescription(); 80 81 public void setPropertyElement(int index, PropertyElement value); 82 public PropertyElement getPropertyElement(int index); 83 public int sizePropertyElement(); 84 public void setPropertyElement(PropertyElement[] value); 85 public PropertyElement[] getPropertyElement(); 86 public int addPropertyElement(PropertyElement value); 87 public int removePropertyElement(PropertyElement value); 88 public PropertyElement newPropertyElement(); 89 90 } 91 | Popular Tags |