Search in sources :

Example 16 with ToString

use of org.bedework.util.misc.ToString in project bw-calendar-engine by Bedework.

the class ScheduleMessage method toString.

@Override
public String toString() {
    ToString ts = new ToString(this);
    toStringSegment(ts);
    ts.newLine();
    ts.append("timestamp", getTimestamp());
    ts.append("sequence", getSequence());
    ts.append("lastProcessed", getLastProcessed());
    ts.newLine();
    ts.append("inBox", getInBox());
    ts.append("  principalHref", getPrincipalHref());
    ts.append("eventName", getEventName());
    ts.append("rid", getRid());
    return ts.toString();
}
Also used : ToString(org.bedework.util.misc.ToString)

Example 17 with ToString

use of org.bedework.util.misc.ToString in project bw-calendar-engine by Bedework.

the class BwAuthUser method toString.

@Override
public String toString() {
    final ToString ts = new ToString(this);
    toStringSegment(ts);
    ts.append("user", getUserHref());
    ts.append("usertype", getUsertype());
    ts.append("publicEventUser", isPublicEventUser());
    ts.append("contentAdminUser", isContentAdminUser());
    ts.append("approverUser", isApproverUser());
    return ts.toString();
}
Also used : ToString(org.bedework.util.misc.ToString)

Example 18 with ToString

use of org.bedework.util.misc.ToString in project bw-calendar-engine by Bedework.

the class BwCalSuite method toString.

@Override
public String toString() {
    final ToString ts = new ToString(this);
    toStringSegment(ts);
    return ts.toString();
}
Also used : ToString(org.bedework.util.misc.ToString)

Example 19 with ToString

use of org.bedework.util.misc.ToString in project bw-calendar-engine by Bedework.

the class ScheduleResult method toString.

@Override
public String toString() {
    final ToString ts = new ToString(this);
    ts.append("errorCode", errorCode);
    ts.append("ignored", ignored);
    ts.append("reschedule", reschedule);
    ts.append("ignored", ignored);
    if ((recipientResults != null) && !recipientResults.isEmpty()) {
        for (final ScheduleRecipientResult srr : recipientResults.values()) {
            ts.append(srr);
        }
    }
    return ts.toString();
}
Also used : ToString(org.bedework.util.misc.ToString)

Example 20 with ToString

use of org.bedework.util.misc.ToString in project bw-calendar-engine by Bedework.

the class MailConfigPropertiesImpl method toString.

public String toString() {
    final ToString ts = new ToString(this);
    toStringSegment(ts);
    return ts.toString();
}
Also used : ToString(org.bedework.util.misc.ToString)

Aggregations

ToString (org.bedework.util.misc.ToString)59 CloneForOverride (org.bedework.calfacade.annotations.CloneForOverride)2 BwAlarm (org.bedework.calfacade.BwAlarm)1 NoProxy (org.bedework.calfacade.annotations.ical.NoProxy)1