1 22 package org.objectweb.petals.jbi.component.lifecycle.mock; 23 24 import org.objectweb.petals.tools.jbicommon.descriptor.Identification; 25 26 30 public class IdentificationMock extends Identification{ 31 32 private String name; 33 34 public void setName(String name) { 35 this.name = name; 36 } 37 38 public String getName() { 39 return name; 40 } 41 42 43 } 44 | Popular Tags |