blob: 48ef0b6882dbc2d194ba53eb9c9d732ec86cf83f [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;
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;
}
}