1 17 package org.apache.servicemix.jbi.deployment; 18 19 22 public class ServiceUnit { 23 private Identification identification; 24 private Target target; 25 26 public Identification getIdentification() { 27 return identification; 28 } 29 30 public void setIdentification(Identification identification) { 31 this.identification = identification; 32 } 33 34 public Target getTarget() { 35 return target; 36 } 37 38 public void setTarget(Target target) { 39 this.target = target; 40 } 41 } 42 | Popular Tags |