Representation of a security role reference for a web application, as represented in a <security-role-ref> element in the deployment descriptor.
<security-role-ref>
return (this.link);
return (this.name);
this.link = link;
this.name = name;
Return a String representation of this object. StringBuffer sb = new StringBuffer("SecurityRoleRef["); sb.append("name="); sb.append(name); if (link != null) { sb.append(", link="); sb.append(link); } sb.append("]"); return (sb.toString());
StringBuffer sb = new StringBuffer("SecurityRoleRef["); sb.append("name="); sb.append(name); if (link != null) { sb.append(", link="); sb.append(link); } sb.append("]"); return (sb.toString());