Return a String representation of this object.
StringBuffer sb = new StringBuffer("ContextLocalEjb[");
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 (home != null) {
sb.append(", home=");
sb.append(home);
}
if (link != null) {
sb.append(", link=");
sb.append(link);
}
if (local != null) {
sb.append(", local=");
sb.append(local);
}
sb.append("]");
return (sb.toString());