001 /** 002 * Licensed to the Apache Software Foundation (ASF) under one or more 003 * contributor license agreements. See the NOTICE file distributed with 004 * this work for additional information regarding copyright ownership. 005 * The ASF licenses this file to You under the Apache License, Version 2.0 006 * (the "License"); you may not use this file except in compliance with 007 * the License. You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017 package org.apache.geronimo.samples.daytrader.client.ws; 018 019 public class RunStatsDataBean { 020 private int tradeUserCount; 021 private int newUserCount; 022 private int sumLoginCount; 023 private int sumLogoutCount; 024 private int holdingCount; 025 private int buyOrderCount; 026 private int sellOrderCount; 027 private int cancelledOrderCount; 028 private int openOrderCount; 029 private int deletedOrderCount; 030 private int orderCount; 031 private int tradeStockCount; 032 033 public RunStatsDataBean() { 034 } 035 036 public int getTradeUserCount() { 037 return tradeUserCount; 038 } 039 040 public void setTradeUserCount(int tradeUserCount) { 041 this.tradeUserCount = tradeUserCount; 042 } 043 044 public int getNewUserCount() { 045 return newUserCount; 046 } 047 048 public void setNewUserCount(int newUserCount) { 049 this.newUserCount = newUserCount; 050 } 051 052 public int getSumLoginCount() { 053 return sumLoginCount; 054 } 055 056 public void setSumLoginCount(int sumLoginCount) { 057 this.sumLoginCount = sumLoginCount; 058 } 059 060 public int getSumLogoutCount() { 061 return sumLogoutCount; 062 } 063 064 public void setSumLogoutCount(int sumLogoutCount) { 065 this.sumLogoutCount = sumLogoutCount; 066 } 067 068 public int getHoldingCount() { 069 return holdingCount; 070 } 071 072 public void setHoldingCount(int holdingCount) { 073 this.holdingCount = holdingCount; 074 } 075 076 public int getBuyOrderCount() { 077 return buyOrderCount; 078 } 079 080 public void setBuyOrderCount(int buyOrderCount) { 081 this.buyOrderCount = buyOrderCount; 082 } 083 084 public int getSellOrderCount() { 085 return sellOrderCount; 086 } 087 088 public void setSellOrderCount(int sellOrderCount) { 089 this.sellOrderCount = sellOrderCount; 090 } 091 092 public int getCancelledOrderCount() { 093 return cancelledOrderCount; 094 } 095 096 public void setCancelledOrderCount(int cancelledOrderCount) { 097 this.cancelledOrderCount = cancelledOrderCount; 098 } 099 100 public int getOpenOrderCount() { 101 return openOrderCount; 102 } 103 104 public void setOpenOrderCount(int openOrderCount) { 105 this.openOrderCount = openOrderCount; 106 } 107 108 public int getDeletedOrderCount() { 109 return deletedOrderCount; 110 } 111 112 public void setDeletedOrderCount(int deletedOrderCount) { 113 this.deletedOrderCount = deletedOrderCount; 114 } 115 116 public int getOrderCount() { 117 return orderCount; 118 } 119 120 public void setOrderCount(int orderCount) { 121 this.orderCount = orderCount; 122 } 123 124 public int getTradeStockCount() { 125 return tradeStockCount; 126 } 127 128 public void setTradeStockCount(int tradeStockCount) { 129 this.tradeStockCount = tradeStockCount; 130 } 131 132 }