1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.vci.server.omd.lifecycle.itf;
|
| import java.util.List;
|
| import com.vci.corba.omd.lcm.TransitionVO;
|
| public interface ILCTransitionEvents {
|
| /***
| * 通过生命周期模板和当前状态获取可能的跃迁
| *
| */
| public List<TransitionVO> getTransitionVOListByNameAndSouce(String lcName,String currentState);
|
| /***
| *
| * 通过对象oid和生命周期模板和跃迁记录对象跃迁历史,获取跃迁后的状态
| */
|
| }
|
|