1 22 package org.objectweb.petals.jbi.component.lifecycle.mock; 23 24 import org.objectweb.petals.tools.jbicommon.descriptor.ComponentDescription; 25 26 30 public class MockComponentDescriptionBuilder { 31 32 public static ComponentDescription buildComponentDescription(){ 33 ComponentDescriptionMock componentDescription = new ComponentDescriptionMock(); 34 IdentificationMock identification = new IdentificationMock(); 35 identification.setName("testComponentDescription"); 36 componentDescription.setIdentification(identification); 37 return componentDescription; 38 } 39 } 40 | Popular Tags |