1 25 26 package org.objectweb.jonas_ejb.deployment.api; 27 28 import org.objectweb.jonas_ejb.deployment.xml.Entity; 29 import org.objectweb.jonas_ejb.deployment.xml.AssemblyDescriptor; 30 import org.objectweb.jonas_ejb.deployment.xml.JonasEntity; 31 import org.objectweb.jonas_lib.deployment.xml.JLinkedList; 32 import org.objectweb.jonas_lib.deployment.api.DeploymentDescException; 33 34 38 public class EntityBmpDesc extends EntityDesc { 39 40 43 public EntityBmpDesc(ClassLoader classLoader, Entity ent, 44 AssemblyDescriptor asd, JonasEntity jEnt, 45 JLinkedList jMDRList, String fileName) 46 throws DeploymentDescException { 47 super(classLoader, ent, asd, jEnt, jMDRList, fileName); 48 } 49 50 } 51 52 | Popular Tags |