01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.admin.sessions;
05:
06: import com.tc.admin.common.PropertyTable;
07: import com.tc.admin.common.PropertyTableModel;
08:
09: public class SessionsProductTable extends PropertyTable {
10: public SessionsProductTable() {
11: super ();
12: }
13:
14: void setBean(SessionsProductWrapper bean) {
15: String[] fields = { "RequestCount", "RequestCountPerSecond",
16: "SessionsCreatedPerMinute", "SessionsExpiredPerMinute",
17: "SessionWritePercentage", };
18: PropertyTableModel model = new PropertyTableModel(bean, fields);
19: setModel(model);
20: }
21: }
|