use of org.apache.commons.lang.builder.ToStringBuilder in project openhab1-addons by openhab.
the class AuthorizeResponse method toString.
@Override
public String toString() {
final ToStringBuilder builder = createToStringBuilder();
builder.appendSuper(super.toString());
builder.append("ecobeePin", this.ecobeePin);
builder.append("authToken", this.authToken);
builder.append("scope", this.scope);
builder.append("expiresIn", this.expiresIn);
builder.append("interval", this.interval);
return builder.toString();
}
use of org.apache.commons.lang.builder.ToStringBuilder in project openhab1-addons by openhab.
the class Group method toString.
@Override
public String toString() {
final ToStringBuilder builder = createToStringBuilder();
builder.appendSuper(super.toString());
builder.append("groupRef", this.groupRef);
builder.append("groupName", this.groupName);
builder.append("synchronizeAlerts", this.synchronizeAlerts);
builder.append("synchronizeSystemMode", this.synchronizeSystemMode);
builder.append("synchronizeSchedule", this.synchronizeSchedule);
builder.append("synchronizeQuickSave", this.synchronizeQuickSave);
builder.append("synchronizeReminders", this.synchronizeReminders);
builder.append("synchronizeContractorInfo", this.synchronizeContractorInfo);
builder.append("synchronizeUserPreferences", this.synchronizeUserPreferences);
builder.append("synchronizeUtilityInfo", this.synchronizeUtilityInfo);
builder.append("synchronizeLocation", this.synchronizeLocation);
builder.append("synchronizeReset", this.synchronizeReset);
builder.append("synchronizeVacation", this.synchronizeVacation);
builder.append("thermostats", this.thermostats);
return builder.toString();
}
use of org.apache.commons.lang.builder.ToStringBuilder in project openhab1-addons by openhab.
the class Status method toString.
@Override
public String toString() {
final ToStringBuilder builder = createToStringBuilder();
builder.appendSuper(super.toString());
builder.append("code", this.code);
builder.append("message", this.message);
return builder.toString();
}
use of org.apache.commons.lang.builder.ToStringBuilder in project openhab1-addons by openhab.
the class Thermostat method toString.
@Override
public String toString() {
final ToStringBuilder builder = createToStringBuilder();
builder.appendSuper(super.toString());
builder.append("identifier", this.identifier);
builder.append("name", this.name);
builder.append("thermostatRev", this.thermostatRev);
builder.append("isRegistered", this.isRegistered);
builder.append("modelNumber", this.modelNumber);
builder.append("lastModified", this.lastModified);
builder.append("thermostatTime", this.thermostatTime);
builder.append("utcTime", this.utcTime);
builder.append("alerts", this.alerts);
builder.append("settings", this.settings);
builder.append("runtime", this.runtime);
builder.append("extendedRuntime", this.extendedRuntime);
builder.append("electricity", this.electricity);
builder.append("devices", this.devices);
builder.append("location", this.location);
builder.append("technician", this.technician);
builder.append("utility", this.utility);
builder.append("management", this.management);
builder.append("weather", this.weather);
builder.append("events", this.events);
builder.append("program", this.program);
builder.append("houseDetails", this.houseDetails);
builder.append("oemCfg", this.oemCfg);
builder.append("equipmentStatus", this.equipmentStatus);
builder.append("notificationSettings", this.notificationSettings);
builder.append("privacy", this.privacy);
builder.append("version", this.version);
builder.append("remoteSensors", this.remoteSensorList);
return builder.toString();
}
use of org.apache.commons.lang.builder.ToStringBuilder in project openhab1-addons by openhab.
the class ThermostatResponse method toString.
@Override
public String toString() {
final ToStringBuilder builder = createToStringBuilder();
builder.appendSuper(super.toString());
builder.append("page", this.page);
builder.append("thermostatList", this.thermostatList);
return builder.toString();
}
Aggregations