1 22 package org.objectweb.petals.jbi.component.lifecycle.mock; 23 24 import java.util.List ; 25 26 import org.objectweb.petals.tools.jbicommon.descriptor.ComponentDescription; 27 28 33 public class ComponentDescriptionMock extends ComponentDescription { 34 35 private IdentificationMock identification; 36 37 public IdentificationMock getIdentification() { 38 return identification; 39 } 40 41 private List <String > componentClassPath; 42 43 public void setIdentification(IdentificationMock identification) { 44 this.identification = identification; 45 } 46 47 public List <String > getComponentClassPath() { 48 return componentClassPath; 49 } 50 51 public void setComponentClassPath(List <String > componentClassPath) { 52 this.componentClassPath = componentClassPath; 53 } 54 55 private List <String > bootstrapClassPath; 56 57 public List <String > getBootstrapClassPath() { 58 return bootstrapClassPath; 59 } 60 61 public void setBootstrapClassPath(List <String > bootstrapClassPath) { 62 this.bootstrapClassPath = bootstrapClassPath; 63 } 64 65 66 } 67 | Popular Tags |