Return a String representation of this object.
StringBuffer sb = new StringBuffer("ContextResourceLink[");
sb.append("name=");
sb.append(getName());
if (getType() != null) {
sb.append(", type=");
sb.append(getType());
}
if (getGlobal() != null) {
sb.append(", global=");
sb.append(getGlobal());
}
sb.append("]");
return (sb.toString());