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.SharedLibrary; 27 28 33 public class SharedLibraryMock extends SharedLibrary { 34 35 private IdentificationMock identification; 36 37 public IdentificationMock getIdentification() { 38 return identification; 39 } 40 41 public void setIdentification(IdentificationMock identification) { 42 this.identification = identification; 43 } 44 45 private List <String > sharedLibraryClassPath; 46 47 public List <String > getSharedLibraryClassPath() { 48 return sharedLibraryClassPath; 49 } 50 51 public void setSharedLibraryClassPath(List <String > sharedLibraryClassPath) { 52 this.sharedLibraryClassPath = sharedLibraryClassPath; 53 } 54 55 } 56 | Popular Tags |