/** * Copyright 2013-2015 Seagate Technology LLC. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not * distributed with this file, You can obtain one at * https://mozilla.org/MP:/2.0/. * * This program is distributed in the hope that it will be useful, * but is provided AS-IS, WITHOUT ANY WARRANTY; including without * the implied warranty of MERCHANTABILITY, NON-INFRINGEMENT or * FITNESS FOR A PARTICULAR PURPOSE. See the Mozilla Public * License for more details. * * See www.openkinetic.org for more project information */ package kinetic.admin; public class Statistics { private MessageType messageType; private long count; // This is the sum of the data that is in the data portion. This does not include t // the command description. For P2P operations, this is the amount of data moved between // drives private long bytes; public MessageType getMessageType() { return messageType; } public void setMessageType(MessageType messageType) { this.messageType = messageType; } public long getCount() { return count; } public void setCount(long count) { this.count = count; } public long getBytes() { return bytes; } public void setBytes(long bytes) { this.bytes = bytes; } }