this.name = name;
return (this.name);
Return a String representation of this object, which exposes only information that should be public. StringBuffer sb = new StringBuffer("CoyotePrincipal["); sb.append(this.name); sb.append("]"); return (sb.toString());
StringBuffer sb = new StringBuffer("CoyotePrincipal["); sb.append(this.name); sb.append("]"); return (sb.toString());