001/* 002 * $RCSfile: ConfigurationState.java,v $ 003 * $Revision: 1.1.2.1 $ $Date: 2010/04/09 19:57:08 $ 004 * 005 * Copyright 2010 Kabira Technologies, Inc. All rights reserved. 006 */ 007package com.kabira.test.management; 008 009/* 010 * The state of a loaded configuration 011 */ 012public enum ConfigurationState 013{ 014 /** The configuration is active. */ 015 Active, 016 017 /** The configuration is inactive. */ 018 Inactive 019}