blob: b7f3e215c0dbdcefd3d3c9837d4fbc79756a724b [file] [log] [blame]
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance *
// * with the License. You may obtain a copy of the License at *
// * *
// * http://www.apache.org/licenses/LICENSE-2.0 *
// * *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the *
// * specific language governing permissions and limitations under the License. *
// ***************************************************************************************************************************
package org.apache.juneau.rest.helper;
import org.apache.juneau.annotation.*;
import org.apache.juneau.html.annotation.*;
import org.apache.juneau.http.annotation.*;
import org.apache.juneau.jsonschema.annotation.Schema;
/**
* Shortcut label for child resources.
*
* <p>
* Typically used in router resources.
*
* <h5 class='section'>Example:</h5>
* <p class='bcode w800'>
* <jk>new</jk> ResourceLink(<js>"httpTool"</js>, <js>"HTTP request test client"</js>);
* </p>
*
* <ul class='seealso'>
* <li class='link'>{@doc juneau-rest-server.RestMethod.PredefinedHelperBeans}
* </ul>
*/
@Bean(bpi="name,description", fluentSetters=true)
@Response(schema=@Schema(ignore=true))
public final class ResourceDescription implements Comparable<ResourceDescription> {
private String name, description;
/**
* Constructor.
*
* @param name The name of the child resource.
* @param description The description of the child resource.
*/
public ResourceDescription(String name, String description) {
this.name = name;
this.description = description;
}
/** No-arg constructor. Used for JUnit testing of OPTIONS pages. */
public ResourceDescription() {}
/**
* Returns the name field on this label.
*
* @return The name.
*/
@Html(link="servlet:/{name}")
public String getName() {
return name;
}
/**
* Sets the name field on this label to a new value.
*
* @param name The new name.
* @return This object (for method chaining).
*/
public ResourceDescription name(String name) {
this.name = name;
return this;
}
/**
* Returns the description field on this label.
*
* @return The description.
*/
public String getDescription() {
return description;
}
/**
* Sets the description field on this label to a new value.
*
* @param description The new description.
* @return This object (for method chaining).
*/
public ResourceDescription description(String description) {
this.description = description;
return this;
}
@Override /* Comparable */
public int compareTo(ResourceDescription o) {
return getName().toString().compareTo(o.getName().toString());
}
@Override /* Object */
public boolean equals(Object o) {
return (o instanceof ResourceDescription) && ((ResourceDescription)o).getName().equals(getName());
}
@Override /* Object */
public int hashCode() {
return getName().hashCode();
}
}