added the RegistryInstance interface
Which gives the basic registry functionality (because there going to be at least two registries)Voter-Registry
parent
01604d1acb
commit
7a167639db
|
@ -4,7 +4,7 @@ package meerkat;
|
||||||
* Created by Vladimir Eliezer Tokarev on 1/22/2016.
|
* Created by Vladimir Eliezer Tokarev on 1/22/2016.
|
||||||
* provides voters management options
|
* provides voters management options
|
||||||
*/
|
*/
|
||||||
public abstract class RegistryInstance {
|
public interface RegistryInstance {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds new voter to the bulletin-board
|
* Adds new voter to the bulletin-board
|
||||||
|
@ -63,3 +63,4 @@ public abstract class RegistryInstance {
|
||||||
*/
|
*/
|
||||||
abstract void GetPersonIDDetails(String id, RegistryCallBack callBack);
|
abstract void GetPersonIDDetails(String id, RegistryCallBack callBack);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue