01: /*
02: * StatisticsResponse.java
03: *
04: * $Author: ss150821 $
05: *
06: * $Date: 2005/11/30 11:27:22 $ $Revision: 1.3 $
07: *
08: * Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved.
09: *
10: * Developed by SunPS and SunIR
11: */
12:
13: package com.sun.portal.rproxy.connectionhandler;
14:
15: /**
16: * This represents a single statistcs response.
17: */
18:
19: public class StatisticsResponse extends HeaderResponse {
20: private static final String STATUS_CODE = "200";
21:
22: private static final String STATUS_TEXT = "OK";
23:
24: public StatisticsResponse(String message) {
25: super(message, STATUS_CODE, STATUS_TEXT);
26: }
27: }
|