/** * Copyright (c) 2017 Inria * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * - Christophe Gourdin <christophe.gourdin@inria.fr> * */ package org.occiware.clouddesigner.occi.monitoring.ext.connector.backend.utils; import org.occiware.tinom.model.Collector; public class CentreonTinomCollector extends Collector { public CentreonTinomCollector(String name) { super(name); // TODO Auto-generated constructor stub } public CentreonTinomCollector(String name, int period) { super(name, period); // TODO Auto-generated constructor stub } }