use of org.apache.commons.lang.builder.ToStringBuilder in project coprhd-controller by CoprHD.
the class NetworkAdapter method toString.
public String toString() {
ToStringBuilder builder = new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE);
builder.append("name", name);
builder.append("ipAddress", ipAddress);
builder.append("ip6Address", ip6Address);
builder.append("subnetMask", subnetMask);
builder.append("macAddress", macAddress);
return builder.toString();
}
use of org.apache.commons.lang.builder.ToStringBuilder in project coprhd-controller by CoprHD.
the class Volume method toString.
@Override
public String toString() {
ToStringBuilder builder = new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE);
builder.append("number", number);
builder.append("mountPoint", mountPoint);
builder.append("label", label);
builder.append("fileSystem", fileSystem);
builder.append("type", type);
builder.append("size", size);
builder.append("status", status);
builder.append("info", info);
return builder.toString();
}
use of org.apache.commons.lang.builder.ToStringBuilder in project coprhd-controller by CoprHD.
the class ServiceDescriptor method toString.
@Override
public String toString() {
ToStringBuilder builder = new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE);
builder.append("serviceId", serviceId);
builder.append("title", title);
builder.append("description", description);
builder.append("category", category);
builder.append("destructive", destructive);
builder.append("useModal", useModal);
builder.append("modalTitle", modalTitle);
builder.append("roles", roles);
builder.append("items", items);
return builder.toString();
}
use of org.apache.commons.lang.builder.ToStringBuilder in project coprhd-controller by CoprHD.
the class Volume method toString.
@Override
public String toString() {
ToStringBuilder sb = new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE);
sb.append("name", name);
sb.append("caption", caption);
sb.append("deviceId", deviceId);
sb.append("driveLetter", driveLetter);
sb.append("driveLabel", driveLabel);
return sb.toString();
}
use of org.apache.commons.lang.builder.ToStringBuilder in project coprhd-controller by CoprHD.
the class IGroupInfo method toString.
@Override
public String toString() {
ToStringBuilder builder = new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE);
builder.append("name", name);
builder.append("type", type);
builder.append("osType", osType);
builder.append("initiators", initiators);
return builder.toString();
}
Aggregations