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

develop
Nelson R. Perez 2018-09-17 12:21:48 -05:00
parent 9329d59ce7
commit 6a2939ab20
1 changed files with 8 additions and 0 deletions

View File

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