/* * RHQ Management Platform * Copyright (C) 2005-2012 Red Hat, Inc. * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2, as * published by the Free Software Foundation, and/or the GNU Lesser * General Public License, version 2.1, also as published by the Free * Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License and the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU General Public License * and the GNU Lesser General Public License along with this program; * if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package org.rhq.modules.integrationTests.restApi.d; import java.util.List; /** * A metric schedule for testing * @author Heiko W. Rupp */ public class Schedule { private int scheduleId; private boolean enabled; private long collectionInterval; private int definitionId; private String scheduleName; private String displayName; private String unit; private String type; List<Link> links; private long mtime; public Schedule() { } public int getScheduleId() { return scheduleId; } public void setScheduleId(int scheduleId) { this.scheduleId = scheduleId; } public boolean isEnabled() { return enabled; } public void setEnabled(boolean enabled) { this.enabled = enabled; } public long getCollectionInterval() { return collectionInterval; } public void setCollectionInterval(long collectionInterval) { this.collectionInterval = collectionInterval; } public int getDefinitionId() { return definitionId; } public void setDefinitionId(int definitionId) { this.definitionId = definitionId; } public String getScheduleName() { return scheduleName; } public void setScheduleName(String scheduleName) { this.scheduleName = scheduleName; } public String getDisplayName() { return displayName; } public void setDisplayName(String displayName) { this.displayName = displayName; } public String getUnit() { return unit; } public void setUnit(String unit) { this.unit = unit; } public String getType() { return type; } public void setType(String type) { this.type = type; } public List<Link> getLinks() { return links; } public void setLinks(List<Link> links) { this.links = links; } public long getMtime() { return mtime; } public void setMtime(long mtime) { this.mtime = mtime; } }