Source code: proxy/jmsapi/JNDIObject.java
1 /** Java class "JNDIObject.java" generated from Poseidon for UML.
2 * Poseidon for UML is developed by <A HREF="http://www.gentleware.com">Gentleware</A>.
3 * Generated with <A HREF="http://jakarta.apache.org/velocity/">velocity</A> template engine.
4 */
5 package proxy.jmsapi;
6
7 import java.util.*;
8
9 /**
10 * <p>
11 * class encapsulating object that was virtually looked up aplications on a
12 * mobiles and is stored on the proxy server
13 * </p>
14 */
15 public class JNDIObject extends ProxyStoredObject {
16
17 ///////////////////////////////////////
18 // associations
19
20 /**
21 * <p>
22 * a set to which this object belongs
23 * </p>
24 */
25 public JMSObjectSet list;
26
27
28 ///////////////////////////////////////
29 // operations
30
31
32 /**
33 * <p>
34 * calls specific method of an encapsulated object.
35 * </p><p>
36 *
37 * @param meth carries method id and all parameters
38 * </p><p>
39 * @return a JMSProxyResult with result or possible exceptions
40 * </p>
41 */
42 public JMSProxyResult callMethod(JMSProxyMethod meth)
43 {
44 // your code here
45 // SUBCLASS RESPONSIBILITY
46 return null;
47 } // end callMethod
48
49
50
51
52
53
54 public JNDIObject(int _owner, int _mobile)
55 {
56 super( _owner, _mobile);
57
58 }
59
60
61
62 } // end JNDIObject
63
64
65
66
67