#! /bin/sh
#
# @(#)getobjdesc	1.3	LPS_UNX_COM	2/19/95
#
# Copyright 1993   Digital Equipment Corporation, Maynard, MA
#
# getobjdesc
#
# Output a "description" string for the specified object class.
# The output is written to stdout as a complete string, including
# a trailing newline.
#
# Typical usage would be:  VARNAME="`getobjdesc $CLASS`"
#
# Parameters:
#    $1 - Class identifier, one of {PC, PS, MC, ENV}
#
# Global variables:
#    -none-
#
# Exit values:
#    0 - Class id was valid, string was output on stdout.
#    1 - Invalid class id, resulting string written to stdout
#	 describes the error condition.
###

case "$1" in
     PC ) echo 'Print Client' ;;
     MC ) echo 'Management Client' ;;
     PS ) echo 'PrintServer printer' ;;
    ENV ) echo 'LPS Environment' ;;
      * ) echo 'INVALID CLASS IDENTIFIER'
	  exit 1 ;;
esac

exit 0
