blob: dd0385e9c4a02ccf88b051f473e83d7849e91ed6 [file] [log] [blame]
// Copyright 2016 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 examples.baku.io.permissions.synchronization;
import java.util.concurrent.BlockingQueue;
/**
* Created by phamilton on 6/24/16.
*/
public class SyncTextPatch {
private int ver;
private String patch;
private String source;
private int permissions;
public int getPermissions() {
return permissions;
}
public void setPermissions(int permissions) {
this.permissions = permissions;
}
public SyncTextPatch() {
}
public int getVer() {
return ver;
}
public void setVer(int ver) {
this.ver = ver;
}
public String getPatch() {
return patch;
}
public void setPatch(String patch) {
this.patch = patch;
}
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source;
}
}