@@ -41,7 +41,6 @@ public enum State {
4141 Destroyed (false , "VM is marked for destroy." ),
4242 Expunging (true , "VM is being expunged." ),
4343 Migrating (true , "VM is being migrated. host id holds to from host" ),
44- Reconfiguring (true , "VM is being reconfigured to a new service offering" ),
4544 Error (false , "VM is in error" ),
4645 Unknown (false , "VM state is unknown." ),
4746 Shutdowned (false , "VM is shutdowned from inside" );
@@ -96,9 +95,6 @@ public static StateMachine2<State, VirtualMachine.Event, VirtualMachine> getStat
9695 s_fsm .addTransition (State .Running , VirtualMachine .Event .StopRequested , State .Stopping );
9796 s_fsm .addTransition (State .Running , VirtualMachine .Event .AgentReportShutdowned , State .Stopped );
9897 s_fsm .addTransition (State .Running , VirtualMachine .Event .AgentReportMigrated , State .Running );
99- s_fsm .addTransition (State .Running , VirtualMachine .Event .ReconfiguringRequested , State .Reconfiguring );
100- s_fsm .addTransition (State .Reconfiguring , VirtualMachine .Event .OperationSucceeded , State .Running );
101- s_fsm .addTransition (State .Reconfiguring , VirtualMachine .Event .OperationFailed , State .Running );
10298 s_fsm .addTransition (State .Migrating , VirtualMachine .Event .MigrationRequested , State .Migrating );
10399 s_fsm .addTransition (State .Migrating , VirtualMachine .Event .OperationSucceeded , State .Running );
104100 s_fsm .addTransition (State .Migrating , VirtualMachine .Event .OperationFailed , State .Running );
@@ -180,8 +176,7 @@ public enum Event {
180176 AgentReportShutdowned ,
181177 AgentReportMigrated ,
182178 RevertRequested ,
183- SnapshotRequested ,
184- ReconfiguringRequested
179+ SnapshotRequested
185180 };
186181
187182 public enum Type {
@@ -299,8 +294,4 @@ public static boolean isSystemVM(VirtualMachine.Type vmtype) {
299294
300295 public Map <String , String > getDetails ();
301296
302- public Boolean getSameHost ();
303-
304- public Long getNewSvcOfferingId ();
305-
306297}
0 commit comments