/******************************************************************************* * =========================================================== * Ankush : Big Data Cluster Management Solution * =========================================================== * * (C) Copyright 2014, by Impetus Technologies * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License (LGPL v3) as * published by the Free Software Foundation; * * This software 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this software; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ******************************************************************************/ package com.impetus.ankush2.agent; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; /** * @author hokam * */ @XmlRootElement(name = "services") @XmlAccessorType(XmlAccessType.FIELD) public class ServiceConfiguration { @XmlElement(name = "service") private List<ComponentService> services; /** * @return the services */ public List<ComponentService> getServices() { return services; } /** * @param services * the services to set */ public void setServices(List<ComponentService> services) { this.services = services; } /* * (non-Javadoc) * * @see java.lang.Object#toString() */ @Override public String toString() { return "ServiceConfiguration [services=" + services + "]"; } }