public Whitelist getAllowedRequests() { return allowedRequests; }
public WhitelistPlugin(XmlPullParser xmlParser) { this(new Whitelist(), new Whitelist(), null); new CustomConfigXmlParser().parse(xmlParser); }
public Whitelist getAllowedNavigations() { return allowedNavigations; }
public void setAllowedNavigations(Whitelist allowedNavigations) { this.allowedNavigations = allowedNavigations; }
public Whitelist getAllowedIntents() { return allowedIntents; }
public void setAllowedIntents(Whitelist allowedIntents) { this.allowedIntents = allowedIntents; }
public void setAllowedRequests(Whitelist allowedRequests) { this.allowedRequests = allowedRequests; }
public WhitelistPlugin(Context context) { this(new Whitelist(), new Whitelist(), null); new CustomConfigXmlParser().parse(context); }