blob: f5626900c8f4f51c9beb95b87c62d3ffa95c8225 [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* 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:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.sthbnd.http.test;
import java.util.List;
/**
* @author <a href="mailto:christophe.munilla@cea.fr">Christophe Munilla</a>
*/
public interface CallbackCollection {
/**
* @param class1
* @return
*/
List<Callback> getdoGetCallbacks();
/**
* @param class1
* @return
*/
List<Callback> getdoPostCallbacks();
}