added the RegistryInstance interface

Which gives the basic registry functionality (because there going to be at least two registries)
Voter-Registry
Vladimir Eliezer Tokarev 2016-01-23 03:29:29 -08:00
parent 01604d1acb
commit 7a167639db
1 changed files with 11 additions and 10 deletions

View File

@ -4,7 +4,7 @@ package meerkat;
* Created by Vladimir Eliezer Tokarev on 1/22/2016.
* provides voters management options
*/
public abstract class RegistryInstance {
public interface RegistryInstance {
/**
* Adds new voter to the bulletin-board
@ -63,3 +63,4 @@ public abstract class RegistryInstance {
*/
abstract void GetPersonIDDetails(String id, RegistryCallBack callBack);
}