use of org.apache.commons.lang3.builder.ToStringBuilder in project xwiki-platform by xwiki.
the class MailStatus method toString.
@Override
public String toString() {
ToStringBuilder builder = new XWikiToStringBuilder(this);
builder.append("messageId", getMessageId());
builder.append("batchId", getBatchId());
builder.append("state", getState());
builder.append("date", getDate());
builder.append("recipients", getRecipients());
if (getType() != null) {
builder.append("type", getType());
}
if (getErrorSummary() != null) {
builder.append("errorSummary", getErrorSummary());
}
if (getErrorDescription() != null) {
builder.append("errorDescription", getErrorDescription());
}
if (getWiki() != null) {
builder.append("wiki", getWiki());
}
return builder.toString();
}
use of org.apache.commons.lang3.builder.ToStringBuilder in project xwiki-platform by xwiki.
the class EntityResourceReference method toString.
@Override
public String toString() {
ToStringBuilder builder = new XWikiToStringBuilder(this);
builder.appendSuper(super.toString());
builder.append("reference", getEntityReference());
builder.append("action", getAction());
builder.append("locale", getLocale());
return builder.toString();
}
use of org.apache.commons.lang3.builder.ToStringBuilder in project xwiki-platform by xwiki.
the class AbstractResourceReference method toString.
@Override
public String toString() {
ToStringBuilder builder = new XWikiToStringBuilder(this);
builder.append("type", getType());
builder.append("parameters", getParameters());
return builder.toString();
}
use of org.apache.commons.lang3.builder.ToStringBuilder in project incubator-myriad by apache.
the class NMProfileManager method toString.
@Override
public String toString() {
ToStringBuilder builder = new ToStringBuilder(this, ToStringStyle.JSON_STYLE);
for (Map.Entry<String, NMProfile> profile : profiles.entrySet()) {
NMProfile value = profile.getValue();
builder.append("name", value.getName());
builder.append("cpus", value.getCpus());
builder.append("memory", value.getMemory());
}
return builder.toString();
}
use of org.apache.commons.lang3.builder.ToStringBuilder in project spring-roo by spring-projects.
the class JpaDataOnDemandConfigurationMetadata method toString.
@Override
public String toString() {
final ToStringBuilder builder = new ToStringBuilder(this);
builder.append("identifier", getId());
builder.append("valid", valid);
builder.append("aspectName", aspectName);
builder.append("destinationType", destination);
builder.append("governor", governorPhysicalTypeMetadata.getId());
builder.append("itdTypeDetails", itdTypeDetails);
return builder.toString();
}
Aggregations