/** * MeasurementPruningDefinitionList.java This file is part of WattDepot. * * Copyright (C) 2014 Cam Moore * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * 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 for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.wattdepot.common.domainmodel; import java.util.ArrayList; /** * MeasurementPruningDefinitionList - Encapsulates an ArrayList of * MeasurementPruningDefinitions so Restlet can convert it to a JSON object. * * @author Cam Moore * */ public class MeasurementPruningDefinitionList { private ArrayList<MeasurementPruningDefinition> definitions; /** * Default constructor. */ public MeasurementPruningDefinitionList() { definitions = new ArrayList<MeasurementPruningDefinition>(); } /** * @param e a MeasurementPruningDefinition to add to the list. * @return true if successful. * @see java.util.ArrayList#add(java.lang.Object) */ public boolean add(MeasurementPruningDefinition e) { return definitions.add(e); } /** * @return the definitions */ public ArrayList<MeasurementPruningDefinition> getDefinitions() { return definitions; } /** * @param definitions the definitions to set */ public void setDefinitions(ArrayList<MeasurementPruningDefinition> definitions) { this.definitions = definitions; } }