1 17 package org.apache.servicemix.bpe; 18 19 import javax.wsdl.Definition; 20 21 import org.apache.servicemix.common.ServiceUnit; 22 23 import java.util.Collection ; 24 25 public class BPEServiceUnit extends ServiceUnit { 26 27 private Definition definition; 28 private Collection definitionKeys; 29 30 33 public Definition getDefinition() { 34 return definition; 35 } 36 37 40 public void setDefinition(Definition definition) { 41 this.definition = definition; 42 } 43 44 47 public Collection getDefinitionKeys() { 48 return definitionKeys; 49 } 50 51 54 public void setDefinitionKeys(Collection definitionKeys) { 55 this.definitionKeys = definitionKeys; 56 } 57 58 } 59 | Popular Tags |