1 package org.jbpm.bpel.messager; 2 3 import javax.jms.Destination ; 4 5 9 public class PartnerLinkInfo { 10 11 private Destination destination; 12 private String endpointInfoName; 13 14 public PartnerLinkInfo(Destination destination, String endpointInfoName) { 15 this.destination = destination; 16 this.endpointInfoName = endpointInfoName; 17 } 18 19 public Destination getDestination() { 20 return destination; 21 } 22 23 public String getEndpointInfoName() { 24 return endpointInfoName; 25 } 26 } 27 | Popular Tags |