#!/bin/sh
#############################################################################
# Copyright (C)2004-2005, Sun Microsystems Inc. All rights reserved.
# Use is subject to license terms.
#
# Name: status_enum
# Description: File to store the possible status values of the components.
# required files. 

# pragma ident	
##############################################################################

### status key not defined in ccr###
STATUS_NOT_FOUND=-1

### command, string value and int value for enable state ###
ENABLE_COMMAND=enable
ENABLE_STATUS_STRING=enabled
ENABLE_STATUS_VALUE=1

### command, string value and int value for disable state ###
DISABLE_COMMAND=disable
DISABLE_STATUS_STRING=disabled
DISABLE_STATUS_VALUE=2

###  We donot store the start and stop status now in CCR. ###
### command, string value and int value for start state ###
START_COMMAND=start
START_STATUS_STRING=started
START_STATUS_VALUE=3

### command, string value and int value for stop state ###
STOP_COMMAND=stop
STOP_STATUS_STRING=stopped
STOP_STATUS_VALUE=4



