ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package com.vci.corba.omd.lifecycleManager;
 
import org.omg.PortableServer.POA;
 
/**
 * Generated from IDL interface "LifeCycleService".
 *
 * @author JacORB IDL compiler V 3.9
 * @version generated at 2022-12-23 15:42:24
 */
 
public class LifeCycleServicePOATie
    extends LifeCycleServicePOA
{
    private LifeCycleServiceOperations _delegate;
 
    private POA _poa;
    public LifeCycleServicePOATie(LifeCycleServiceOperations delegate)
    {
        _delegate = delegate;
    }
    public LifeCycleServicePOATie(LifeCycleServiceOperations delegate, POA poa)
    {
        _delegate = delegate;
        _poa = poa;
    }
    public com.vci.corba.omd.lifecycleManager.LifeCycleService _this()
    {
        org.omg.CORBA.Object __o = _this_object() ;
        com.vci.corba.omd.lifecycleManager.LifeCycleService __r = com.vci.corba.omd.lifecycleManager.LifeCycleServiceHelper.narrow(__o);
        return __r;
    }
    public com.vci.corba.omd.lifecycleManager.LifeCycleService _this(org.omg.CORBA.ORB orb)
    {
        org.omg.CORBA.Object __o = _this_object(orb) ;
        com.vci.corba.omd.lifecycleManager.LifeCycleService __r = com.vci.corba.omd.lifecycleManager.LifeCycleServiceHelper.narrow(__o);
        return __r;
    }
    public LifeCycleServiceOperations _delegate()
    {
        return _delegate;
    }
    public void _delegate(LifeCycleServiceOperations delegate)
    {
        _delegate = delegate;
    }
    public POA _default_POA()
    {
        if (_poa != null)
        {
            return _poa;
        }
        return super._default_POA();
    }
    public boolean deleteLifeCycles(com.vci.corba.omd.lifecycleManager.LifeCycle[] lcs) throws com.vci.corba.common.VCIError
    {
        return _delegate.deleteLifeCycles(lcs);
    }
 
    public boolean modifyLifeCycle(com.vci.corba.omd.lifecycleManager.LifeCycle lc) throws com.vci.corba.common.VCIError
    {
        return _delegate.modifyLifeCycle(lc);
    }
 
    public boolean recordTransitionHistory(com.vci.corba.omd.lifecycleManager.TransationHistoryRecord thr) throws com.vci.corba.common.VCIError
    {
        return _delegate.recordTransitionHistory(thr);
    }
 
    public java.lang.String getLifeCycleEventViewSavePath() throws com.vci.corba.common.VCIError
    {
        return _delegate.getLifeCycleEventViewSavePath();
    }
 
    public boolean deleteLifeCycle(com.vci.corba.omd.lifecycleManager.LifeCycle lc) throws com.vci.corba.common.VCIError
    {
        return _delegate.deleteLifeCycle(lc);
    }
 
    public boolean xml2DB(java.lang.String userName) throws com.vci.corba.common.VCIError
    {
        return _delegate.xml2DB(userName);
    }
 
    public java.lang.String getLCEventValueByKey(java.lang.String key) throws com.vci.corba.common.VCIError
    {
        return _delegate.getLCEventValueByKey(key);
    }
 
    public com.vci.corba.omd.lifecycleManager.LifeCycle getLifeCycle(java.lang.String name) throws com.vci.corba.common.VCIError
    {
        return _delegate.getLifeCycle(name);
    }
 
    public java.lang.String getLifeCycleEventPath() throws com.vci.corba.common.VCIError
    {
        return _delegate.getLifeCycleEventPath();
    }
 
    public com.vci.corba.omd.lifecycleManager.LifeCycle[] getLifeCycles() throws com.vci.corba.common.VCIError
    {
        return _delegate.getLifeCycles();
    }
 
    public java.lang.String getLifeCycleEventViewPath() throws com.vci.corba.common.VCIError
    {
        return _delegate.getLifeCycleEventViewPath();
    }
 
    public java.lang.String get_lifecycle_event_path() throws com.vci.corba.common.VCIError
    {
        return _delegate.get_lifecycle_event_path();
    }
 
    public boolean addLifeCycle(com.vci.corba.omd.lifecycleManager.LifeCycle lc) throws com.vci.corba.common.VCIError
    {
        return _delegate.addLifeCycle(lc);
    }
 
    public java.lang.String[] getLCEventKeys() throws com.vci.corba.common.VCIError
    {
        return _delegate.getLCEventKeys();
    }
 
}