001package org.kuali.ole.sip2.sip2Server; 002 003 004/** 005 * This enum represents the status of the SC unit. 006 * 007 * @author Gayathri A 008 */ 009public enum StatusCode { 010 011 OK("0"), PRINTER_OUT_OF_PAPER("1"), SHUT_DOWN("2"); 012 013 private String value; 014 015 private StatusCode(String value) { 016 this.value = value; 017 } 018 019 @Override 020 public String toString() { 021 return this.value; 022 } 023}