Methods Summary |
---|
public java.lang.String | getAuth()
return (this.auth);
|
public java.lang.String | getDescription()
return (this.description);
|
public java.lang.String | getName()
return (this.name);
|
public NamingResources | getNamingResources()
return (this.resources);
|
public java.lang.String | getScope()
return (this.scope);
|
public java.lang.String | getType()
return (this.type);
|
public void | setAuth(java.lang.String auth)
this.auth = auth;
|
public void | setDescription(java.lang.String description)
this.description = description;
|
public void | setName(java.lang.String name)
this.name = name;
|
void | setNamingResources(NamingResources resources)
this.resources = resources;
|
public void | setScope(java.lang.String scope)
this.scope = scope;
|
public void | setType(java.lang.String type)
this.type = type;
|
public java.lang.String | toString()Return a String representation of this object.
StringBuffer sb = new StringBuffer("ContextResource[");
sb.append("name=");
sb.append(name);
if (description != null) {
sb.append(", description=");
sb.append(description);
}
if (type != null) {
sb.append(", type=");
sb.append(type);
}
if (auth != null) {
sb.append(", auth=");
sb.append(auth);
}
if (scope != null) {
sb.append(", scope=");
sb.append(scope);
}
sb.append("]");
return (sb.toString());
|