Further documentation updates and improvements
[remote/remote-ws.git] / src / moteaccess / MoteAccess.java
blob21067d5fe06558241d42f32ebf49d6366f6e81b6
1 package moteaccess;
3 /** Basic mote accessor for system with no reservation. */
4 public class MoteAccess extends AbstractMoteAccess {
6 /** Check if mote has a reservation.
8 * @param mote_id ID of the mote to check for reservation.
9 * @param session_id ID of the client session.
10 * @return Always false, since reservation is not supported.
12 protected boolean hasReservation(long mote_id, String session_id)
14 return false;