1 19 20 package org.netbeans.modules.j2ee.persistence.api.metadata.orm; 21 22 public interface PersistenceUnitDefaults { 23 24 public void setSchema(String value); 25 26 public String getSchema(); 27 28 public void setCatalog(String value); 29 30 public String getCatalog(); 31 32 public void setAccess(String value); 33 34 public String getAccess(); 35 36 public void setCascadePersist(EmptyType value); 37 38 public EmptyType getCascadePersist(); 39 40 public EmptyType newEmptyType(); 41 42 public void setEntityListeners(EntityListeners value); 43 44 public EntityListeners getEntityListeners(); 45 46 public EntityListeners newEntityListeners(); 47 48 } 49 | Popular Tags |