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