1 19 package org.netbeans.modules.j2ee.dd.api.ejb; 20 21 30 import org.netbeans.modules.j2ee.dd.api.common.VersionNotSupportedException; 34 35 public interface EjbJar extends org.netbeans.modules.j2ee.dd.api.common.RootInterface { 36 public static final String PROPERTY_VERSION="dd_version"; public static final String VERSION_1_1="1.1"; public static final String VERSION_2_0="2.0"; public static final String VERSION_2_1="2.1"; public static final String VERSION_3_0="3.0"; public static final int STATE_VALID=0; 42 public static final int STATE_INVALID_PARSABLE=1; 43 public static final int STATE_INVALID_UNPARSABLE=2; 44 public static final String PROPERTY_STATUS="dd_status"; 46 public static final String ENTERPRISE_BEANS = "EnterpriseBeans"; public static final String RELATIONSHIPS = "Relationships"; public static final String ASSEMBLY_DESCRIPTOR = "AssemblyDescriptor"; public static final String EJB_CLIENT_JAR = "EjbClientJar"; 51 55 public void setVersion(java.math.BigDecimal version); 56 59 public java.math.BigDecimal getVersion(); 60 64 public org.xml.sax.SAXParseException getError(); 65 68 public int getStatus(); 69 70 public void setEnterpriseBeans(EnterpriseBeans value); 71 72 public EnterpriseBeans getEnterpriseBeans(); 73 74 public EnterpriseBeans newEnterpriseBeans(); 75 76 public void setRelationships(Relationships value); 77 78 public Relationships getSingleRelationships(); 79 80 public Relationships newRelationships(); 81 82 public void setAssemblyDescriptor(AssemblyDescriptor value); 83 84 public AssemblyDescriptor getSingleAssemblyDescriptor(); 85 86 public AssemblyDescriptor newAssemblyDescriptor(); 87 88 public void setEjbClientJar(String value); 89 90 public String getSingleEjbClientJar(); 91 92 94 void setInterceptors(Interceptors valueInterface) throws VersionNotSupportedException; 95 Interceptors getInterceptors() throws VersionNotSupportedException; 96 Interceptors newInterceptors() throws VersionNotSupportedException; 97 98 } 99 100 | Popular Tags |