Added a getter and setter to the mNodeUrls private attribute of the NetworkService class
This commit is contained in:
parent
9329d59ce7
commit
6a2939ab20
1 changed files with 8 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue