Java Code Examples for org.apache.commons.lang.builder.ToStringBuilder#appendSuper()

The following examples show how to use org.apache.commons.lang.builder.ToStringBuilder#appendSuper() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Group.java    From openhab1-addons with Eclipse Public License 2.0 6 votes vote down vote up
@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();
}
 
Example 2
Source File: AbstractAuthResponse.java    From openhab1-addons with Eclipse Public License 2.0 6 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    if (this.error != null) {
        builder.append("error", this.error);
    }
    if (this.errorDescription != null) {
        builder.append("errorDescription", this.errorDescription);
    }
    if (this.errorURI != null) {
        builder.append("errorURI", this.errorURI);
    }

    return builder.toString();
}
 
Example 3
Source File: GetStationsDataResponse.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("status", this.status);
    builder.append("body", this.body);
    builder.append("executionTime", this.executionTime);

    return builder.toString();
}
 
Example 4
Source File: TokenResponse.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("accessToken", this.accessToken);
    builder.append("tokenType", this.tokenType);
    builder.append("expiresIn", this.expiresIn);
    builder.append("refreshToken", this.refreshToken);
    builder.append("scope", this.scope);

    return builder.toString();
}
 
Example 5
Source File: RefreshTokenRequest.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("refreshToken", this.refreshToken);
    builder.append("appKey", this.appKey);
    return builder.toString();
}
 
Example 6
Source File: Selection.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("selectionType", this.selectionType);
    builder.append("selectionMatch", this.selectionMatch);
    builder.append("includeRuntime", this.includeRuntime);
    builder.append("includeExtendedRuntime", this.includeExtendedRuntime);
    builder.append("includeElectricity", this.includeElectricity);
    builder.append("includeSettings", this.includeSettings);
    builder.append("includeLocation", this.includeLocation);
    builder.append("includeProgram", this.includeProgram);
    builder.append("includeEvents", this.includeEvents);
    builder.append("includeDevice", this.includeDevice);
    builder.append("includeTechnician", this.includeTechnician);
    builder.append("includeUtility", this.includeUtility);
    builder.append("includeManagement", this.includeManagement);
    builder.append("includeAlerts", this.includeAlerts);
    builder.append("includeWeather", this.includeWeather);
    builder.append("includeHouseDetails", this.includeHouseDetails);
    builder.append("includeOemCfg", this.includeOemCfg);
    builder.append("includeEquipmentStatus", this.includeEquipmentStatus);
    builder.append("includeNotificationSettings", this.includeNotificationSettings);
    builder.append("includePrivacy", this.includePrivacy);
    builder.append("includeVersion", this.includeVersion);
    builder.append("includeSensors", this.includeSensors);

    return builder.toString();
}
 
Example 7
Source File: ThermostatSummaryResponse.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("revisionList", this.revisionList);
    builder.append("statusList", this.statusList);

    return builder.toString();
}
 
Example 8
Source File: GetStationsDataResponse.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("devices", this.devices);

    return builder.toString();
}
 
Example 9
Source File: AbstractFunction.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("type", this.type);
    builder.append("params", this.params);

    return builder.toString();
}
 
Example 10
Source File: AbstractResponse.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    if (this.error != null) {
        builder.append("error", this.error);
    }

    return builder.toString();
}
 
Example 11
Source File: ThermostatRequest.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("accessToken", this.accessToken);
    builder.append("selection", this.selection);
    if (this.page != null) {
        builder.append("page", this.page);
    }

    return builder.toString();
}
 
Example 12
Source File: GetHomeDataResponse.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("id", this.id);
    builder.append("lastSeen", this.lastSeen);
    builder.append("out_of_sight", this.out_of_sight);
    builder.append("face", this.face);
    builder.append("pseudo", this.pseudo);

    return builder.toString();
}
 
Example 13
Source File: UpdateThermostatRequest.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("accessToken", this.accessToken);
    builder.append("selection", this.selection);
    if (this.functions != null) {
        builder.append("functions", this.functions);
    }
    if (this.thermostat != null) {
        builder.append("thermostat", this.thermostat);
    }

    return builder.toString();
}
 
Example 14
Source File: ThermostatSummaryResponse.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("thermostatIdentifier", this.thermostatIdentifier);
    builder.append("runningEquipment", this.runningEquipment);

    return builder.toString();
}
 
Example 15
Source File: ThermostatSummaryRequest.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("accessToken", this.accessToken);
    builder.append("selection", this.selection);

    return builder.toString();
}
 
Example 16
Source File: Status.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@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();
}
 
Example 17
Source File: GetHomeDataResponse.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("id", this.id);
    builder.append("version", this.version);
    builder.append("key", this.key);

    return builder.toString();
}
 
Example 18
Source File: DataModel.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("devices", this.devices);
    builder.append("structures", this.structures_by_id);

    return builder.toString();
}
 
Example 19
Source File: GetHomeDataResponse.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public String toString() {
    final ToStringBuilder builder = createToStringBuilder();
    builder.appendSuper(super.toString());
    builder.append("country", this.country);
    builder.append("timezone", this.timezone);

    return builder.toString();
}
 
Example 20
Source File: NetatmoError.java    From openhab1-addons with Eclipse Public License 2.0 5 votes vote down vote up
@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();
}