blob: c70a6af06ed7c31f564fee8021804ed144f65711 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.syncslides.db;
import io.v.syncslides.model.Session;
/**
* SyncbaseSession gets its session state from Syncbase.
*/
class SyncbaseSession implements Session {
private String mId;
private final VSession mVSession;
SyncbaseSession(String id, VSession vSession) {
mId = id;
mVSession = vSession;
}
@Override
public String getId() {
return mId;
}
@Override
public String getDeckId() {
return mVSession.getDeckId();
}
@Override
public String getPresentationId() {
return mVSession.getPresentationId();
}
}