Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/mobicents/slee/resource/ActivityContextInterfaceFactoryInterfaceEntry.java


1   /*
2    * Created on Oct 21, 2004
3    * 
4    * The Open SLEE Project
5    * 
6    * A SLEE for the People
7    * 
8    * The source code contained in this file is in in the public domain.          
9    * It can be used in any project or product without prior permission,         
10   * license or royalty payments. There is no claim of correctness and
11   * NO WARRANTY OF ANY KIND provided with this code.
12   */
13  package org.mobicents.slee.resource;
14  
15  import java.io.Serializable;
16  
17  /**
18   * 15.1.2 Resource adaptor type deployment descriptor (page 240)
19   * 
20   * An activity-context-interface-factory-interface element. This element is
21   * optional. It contains the following sub-elements:
22   * 
23   * <p>
24   * A description element. This is an optional informational element.
25   * 
26   * <p>
27   * An activity-context-interface-factory-interface-name element. This element
28   * identifies the interface name of the Activity Context Interface Factory of
29   * the resource adaptor type.
30   * 
31   * @author F.Moggia
32   */
33  
34  public class ActivityContextInterfaceFactoryInterfaceEntry implements
35          Serializable {
36      private String description;
37  
38      private String interfaceName;
39  
40      /**
41       * @return Returns the description.
42       */
43      public String getDescription() {
44          return description;
45      }
46  
47      /**
48       * @param description
49       *            The description to set.
50       */
51      public void setDescription(String description) {
52          this.description = description;
53      }
54  
55      /**
56       * @return Returns the interfaceName.
57       */
58      public String getInterfaceName() {
59          return interfaceName;
60      }
61  
62      /**
63       * @param interfaceName
64       *            The interfaceName to set.
65       */
66      public void setInterfaceName(String name) {
67          this.interfaceName = name;
68      }
69  }