KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > bpel > service > def > BpelEndpointInfo


1 package org.jbpm.bpel.service.def;
2
3 import java.io.Serializable JavaDoc;
4
5 /**
6  * @author Alejandro Guízar
7  * @version $Revision: 1.2 $ $Date: 2005/05/18 01:54:54 $
8  */

9 public class BpelEndpointInfo implements Serializable JavaDoc {
10   
11   private String JavaDoc connectionFactoryName;
12   private String JavaDoc destinationName;
13   private long partnerLinkId;
14   
15   private static final long serialVersionUID = 1L;
16   
17   public BpelEndpointInfo() {
18   }
19
20   public String JavaDoc getConnectionFactoryName() {
21     return connectionFactoryName;
22   }
23   
24   public void setConnectionFactoryName(String JavaDoc connectionFactoryName) {
25     this.connectionFactoryName = connectionFactoryName;
26   }
27
28   public String JavaDoc getDestinationName() {
29     return destinationName;
30   }
31   
32   public void setDestinationName(String JavaDoc destinationName) {
33     this.destinationName = destinationName;
34   }
35
36   public long getPartnerLinkId() {
37     return partnerLinkId;
38   }
39
40   public void setPartnerLinkId(long partnerLinkId) {
41     this.partnerLinkId = partnerLinkId;
42   }
43 }
44
Popular Tags