1 19 24 25 package org.netbeans.modules.j2ee.sun.dd.api.serverresources; 26 29 public interface PersistenceManagerFactoryResource { 30 31 public static final String JNDINAME = "JndiName"; public static final String FACTORYCLASS = "FactoryClass"; public static final String JDBCRESOURCEJNDINAME = "JdbcResourceJndiName"; public static final String ENABLED = "Enabled"; public static final String DESCRIPTION = "Description"; public static final String PROPERTY = "PropertyElement"; public static final String OBJECTTYPE = "ObjectType"; 39 42 public void setJndiName(java.lang.String value); 43 46 public java.lang.String getJndiName(); 47 50 public void setFactoryClass(java.lang.String value); 51 54 public java.lang.String getFactoryClass(); 55 58 public void setJdbcResourceJndiName(java.lang.String value); 59 62 public java.lang.String getJdbcResourceJndiName(); 63 66 public void setEnabled(java.lang.String value); 67 70 public java.lang.String getEnabled(); 71 74 public void setDescription(String value); 75 78 public String getDescription(); 79 80 public void setPropertyElement(int index, PropertyElement value); 81 public PropertyElement getPropertyElement(int index); 82 public int sizePropertyElement(); 83 public void setPropertyElement(PropertyElement[] value); 84 public PropertyElement[] getPropertyElement(); 85 public int addPropertyElement(PropertyElement value); 86 public int removePropertyElement(PropertyElement value); 87 public PropertyElement newPropertyElement(); 88 89 93 public void setObjectType(java.lang.String value); 94 97 public java.lang.String getObjectType(); 98 99 } 100 | Popular Tags |