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
package com.vci.server.omd.lifecycle.delegate;
 
import com.vci.corba.common.VCIError;
import com.vci.corba.omd.lcm.LifeCycle;
import com.vci.corba.omd.lcm.TransationHistoryRecord;
 
public interface ILifeCycleServerDelegate {
    public boolean addLifeCyle(LifeCycle lc) throws VCIError;
    
    public boolean modifyLifeCyle(LifeCycle lc) throws VCIError;
    
    public boolean deleteLifeCyle(LifeCycle lc) throws VCIError;
    /**
     * 删除生命周期
     */
    public boolean deleteLifeCyles(LifeCycle[] lcs) throws VCIError;
    
    public LifeCycle[] getLifeCyles() throws VCIError;
    
    public String getLifeCycleEventPath() throws VCIError;
    
    public String getLifeCycleEventViewPath() throws VCIError;
    
    public String getLifeCycleEventViewSavePath() throws VCIError;
    
    //public String get_lifecycle_event_path() throws VCIError;
    
    public boolean recordTransitionHistory(
            TransationHistoryRecord transationHistoryRecord) throws VCIError;
    
    public String[] getLCEventKeys() throws VCIError;
    
    public String getLCEventValueByKey(String key) throws VCIError, Throwable;
    
    public LifeCycle getLifeCycle(String name) throws VCIError;
    
    public boolean xml2DB(String userName) throws VCIError;
}