package org.mtransit.android.data;
public class NewsProviderProperties {
private String targetAuthority;
private String authority;
public NewsProviderProperties(String authority, String targetAuthority) {
this.authority = authority;
this.targetAuthority = targetAuthority;
}
public String getTargetAuthority() {
return this.targetAuthority;
}
public String getAuthority() {
return authority;
}
@Override
public String toString() {
return new StringBuilder().append(NewsProviderProperties.class.getSimpleName()).append('{') //
.append("authority:").append(authority).append(',') //
.append("targetAuthority:").append(targetAuthority).append(',') //
.append('}').toString();
}
}