1 17 package org.apache.servicemix.jbi.deployment; 18 19 22 public class ServiceAssembly { 23 24 private Connections connections = new Connections(); 25 26 private Identification identification; 27 28 private ServiceUnit[] serviceUnits; 29 30 private String state = ""; 31 32 public Connections getConnections() { 33 return connections; 34 } 35 36 public Identification getIdentification() { 37 return identification; 38 } 39 40 public ServiceUnit[] getServiceUnits() { 41 return serviceUnits; 42 } 43 44 47 public String getState() { 48 return state; 49 } 50 51 public void setConnections(Connections connections) { 52 this.connections = connections; 53 } 54 55 public void setIdentification(Identification identification) { 56 this.identification = identification; 57 } 58 59 public void setServiceUnits(ServiceUnit[] serviceUnits) { 60 this.serviceUnits = serviceUnits; 61 } 62 63 67 public void setState(String state) { 68 this.state = state; 69 } 70 } 71 | Popular Tags |