KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > bpel > messager > PartnerLinkInfo


1 package org.jbpm.bpel.messager;
2
3 import javax.jms.Destination JavaDoc;
4
5 /**
6  * @author Alejandro Guízar
7  * @version $Revision: 1.2 $ $Date: 2005/05/07 00:03:46 $
8  */

9 public class PartnerLinkInfo {
10   
11   private Destination JavaDoc destination;
12   private String JavaDoc endpointInfoName;
13   
14   public PartnerLinkInfo(Destination JavaDoc destination, String JavaDoc endpointInfoName) {
15     this.destination = destination;
16     this.endpointInfoName = endpointInfoName;
17   }
18   
19   public Destination JavaDoc getDestination() {
20     return destination;
21   }
22   
23   public String JavaDoc getEndpointInfoName() {
24     return endpointInfoName;
25   }
26 }
27
Popular Tags