blob: a798bb2a533f5a4e6c89a5a1c0f41cccf0ed0e23 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2017 Orange.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* BAREAU Cyrille <cyrille.bareau@orange.com>,
* BONNARDEL Gregory <gbonnardel.ext@orange.com>,
* BOLLE Sebastien <sebastien.bolle@orange.com>.
*******************************************************************************/
package org.eclipse.om2m.android.dashboard.cse;
import org.eclipse.om2m.android.dashboard.cse.OneM2MRequest.OneM2MReqType;
public interface OneM2MListener {
public void onOneM2MResponse(OneM2MReqType requestType, Object response);
public void onOneM2MError(OneM2MReqType requestType, String msg);
}