Return a String representation of this object.
StringBuffer sb = new StringBuffer("ContextResource[");
sb.append("name=");
sb.append(getName());
if (getDescription() != null) {
sb.append(", description=");
sb.append(getDescription());
}
if (getType() != null) {
sb.append(", type=");
sb.append(getType());
}
if (auth != null) {
sb.append(", auth=");
sb.append(auth);
}
if (scope != null) {
sb.append(", scope=");
sb.append(scope);
}
sb.append("]");
return (sb.toString());