Changed description for Destroyed volume state.

This commit is contained in:
alena 2011-04-13 12:59:28 -07:00
parent d7028ffb4f
commit 8abda2fdd0
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public interface Volume extends ControlledEntity, BasedOn {
enum State implements FiniteState<State, Event> {
Allocated("The volume is allocated but has not been created yet."), Creating("The volume is being created. getPoolId() should reflect the pool where it is being created."), Ready(
"The volume is ready to be used."), Destroy("The volume is set to be destroyed but can be recovered.");
"The volume is ready to be used."), Destroy("The volume is destroyed, and can't be recovered.");
String _description;