/******************************************************************************* * Copyright (c) 2015 Sierra Wireless and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.html. * * Contributors: * Sierra Wireless - initial API and implementation * Achim Kraus (Bosch Software Innovations GmbH) - use ServerIdentity *******************************************************************************/ package org.eclipse.leshan.client.resource; import java.util.List; import org.eclipse.leshan.client.request.ServerIdentity; import org.eclipse.leshan.core.model.ObjectModel; import org.eclipse.leshan.core.request.BootstrapWriteRequest; import org.eclipse.leshan.core.request.CreateRequest; import org.eclipse.leshan.core.request.DeleteRequest; import org.eclipse.leshan.core.request.DiscoverRequest; import org.eclipse.leshan.core.request.ExecuteRequest; import org.eclipse.leshan.core.request.ObserveRequest; import org.eclipse.leshan.core.request.ReadRequest; import org.eclipse.leshan.core.request.WriteAttributesRequest; import org.eclipse.leshan.core.request.WriteRequest; import org.eclipse.leshan.core.response.BootstrapWriteResponse; import org.eclipse.leshan.core.response.CreateResponse; import org.eclipse.leshan.core.response.DeleteResponse; import org.eclipse.leshan.core.response.DiscoverResponse; import org.eclipse.leshan.core.response.ExecuteResponse; import org.eclipse.leshan.core.response.ObserveResponse; import org.eclipse.leshan.core.response.ReadResponse; import org.eclipse.leshan.core.response.WriteAttributesResponse; import org.eclipse.leshan.core.response.WriteResponse; public interface LwM2mObjectEnabler { int getId(); ObjectModel getObjectModel(); List<Integer> getAvailableInstanceIds(); CreateResponse create(ServerIdentity identity, CreateRequest request); ReadResponse read(ServerIdentity identity, ReadRequest request); WriteResponse write(ServerIdentity identity, WriteRequest request); BootstrapWriteResponse write(ServerIdentity identity, BootstrapWriteRequest request); DeleteResponse delete(ServerIdentity identity, DeleteRequest request); ExecuteResponse execute(ServerIdentity identity, ExecuteRequest request); WriteAttributesResponse writeAttributes(ServerIdentity identity, WriteAttributesRequest request); DiscoverResponse discover(ServerIdentity identity, DiscoverRequest request); ObserveResponse observe(ServerIdentity identity, ObserveRequest request); void setNotifySender(NotifySender sender); }