DeploymentDescEjb1_1.java

00001 
00027 package org.objectweb.jonas_ejb.deployment.api;
00028 
00029 import org.objectweb.jonas_ejb.deployment.xml.AssemblyDescriptor;
00030 import org.objectweb.jonas_ejb.deployment.xml.EjbJar;
00031 import org.objectweb.jonas_ejb.deployment.xml.Entity;
00032 import org.objectweb.jonas_ejb.deployment.xml.JonasEjbJar;
00033 import org.objectweb.jonas_ejb.deployment.xml.JonasEntity;
00034 import org.objectweb.jonas_lib.deployment.api.DeploymentDescException;
00035 import org.objectweb.jonas_lib.deployment.xml.JLinkedList;
00036 import org.objectweb.util.monolog.api.Logger;
00037 import org.objectweb.util.monolog.api.BasicLevel;
00038 
00043 public class DeploymentDescEjb1_1 extends DeploymentDesc {
00044 
00048     public DeploymentDescEjb1_1(ClassLoader cl, EjbJar ej,
00049                                 JonasEjbJar jej, Logger l,
00050                                 String fileName)
00051         throws DeploymentDescException {
00052         super(cl, ej, jej, l, fileName);
00053         // Trace
00054         if (logger.getCurrentIntLevel() == BasicLevel.DEBUG) {
00055             logger.log(BasicLevel.DEBUG, "DEPLOYMENT DESCRIPTOR = \n(" + this.toString() + "\n)");
00056         }
00057     }
00058 
00059     protected BeanDesc newEntityBeanDesc(ClassLoader classLoader,
00060                                          Entity ent,
00061                                          AssemblyDescriptor asd,
00062                                          JonasEntity jEnt,
00063                                          JLinkedList jMDRList) throws DeploymentDescException {
00064         return new EntityJdbcCmp1Desc(classLoader, ent, asd, jEnt, jMDRList, fileName);
00065     }
00066 
00067 }

Generated on Tue Feb 15 15:05:44 2005 for JOnAS by  doxygen 1.3.9.1