Added a getter and setter to the mNodeUrls private attribute of the NetworkService class

This commit is contained in:
Nelson R. Perez 2018-09-17 12:21:48 -05:00
parent 9329d59ce7
commit 6a2939ab20

View file

@ -515,4 +515,12 @@ public class NetworkService extends Service {
public boolean hasApiId(int whichApi){ public boolean hasApiId(int whichApi){
return mApiIds.get(whichApi) != null; return mApiIds.get(whichApi) != null;
} }
public ArrayList<String> getNodeUrls() {
return mNodeUrls;
}
public void setNodeUrls(ArrayList<String> mNodeUrls) {
this.mNodeUrls = mNodeUrls;
}
} }