Back to project page MobileConnectTestApp.
The source code is released under:
MIT License
If you think the Android project MobileConnectTestApp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.gsma.android.xoperatorapidemo.discovery; //from w w w .j a va 2 s. c o m public class DeveloperOperatorSetting { String name; String endpoint; String appKey; String appSecret; String logoEndpoint; public DeveloperOperatorSetting(String name, String endpoint, String appKey, String appSecret, String logoEndpoint) { this.name=name; this.endpoint=endpoint; this.appKey=appKey; this.appSecret=appSecret; this.logoEndpoint=logoEndpoint; } public String getName() { return this.name; } public String getEndpoint() { return this.endpoint; } public String getAppKey() { return this.appKey; } public String getAppSecret() { return this.appSecret; } public String getLogoEndpoint() { return this.logoEndpoint; } }