blob: 6677dc05b4d1ebadf07f3f8150d90b10b0c70209 [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.dto;
import static org.apache.juneau.internal.StringUtils.*;
import java.text.*;
import org.apache.juneau.*;
import org.apache.juneau.html.*;
import org.apache.juneau.urlencoding.*;
import org.apache.juneau.utils.*;
/**
* Simple bean that implements a hyperlink for the HTML serializer.
*
* <p>
* The name and url properties correspond to the following parts of a hyperlink in an HTML document...
* <p class='bcode'>
* <xt>&lt;a</xt> <xa>href</xa>=<xs>'href'</xs><xt>&gt;</xt>name<xt>&lt;/a&gt;</xt>
* </p>
*
* <p>
* When encountered by the {@link HtmlSerializer} class, this object gets converted to a hyperlink.
* All other serializers simply convert it to a simple bean.
*/
@HtmlLink(nameProperty = "name", hrefProperty = "href")
public class Link implements Comparable<Link> {
private String name, href;
/** No-arg constructor. */
public Link() {}
/**
* Constructor.
*
* @param name Corresponds to the text inside of the <xt>&lt;A&gt;</xt> element.
* @param href Corresponds to the value of the <xa>href</xa> attribute of the <xt>&lt;A&gt;</xt> element.
* @param hrefArgs Optional arguments for {@link MessageFormat} style arguments in the href.
*/
public Link(String name, String href, Object...hrefArgs) {
setName(name);
setHref(href, hrefArgs);
}
//--------------------------------------------------------------------------------
// Bean properties
//--------------------------------------------------------------------------------
/**
* Bean property getter: <property>name</property>.
*
* <p>
* Corresponds to the text inside of the <xt>&lt;A&gt;</xt> element.
*
* @return The value of the <property>name</property> property on this bean, or <jk>null</jk> if it is not set.
*/
public String getName() {
return name;
}
/**
* Bean property setter: <property>name</property>.
*
* @param name The new value for the <property>name</property> property on this bean.
* @return This object (for method chaining).
*/
public Link setName(String name) {
this.name = name;
return this;
}
/**
* Bean property getter: <property>href</property>.
*
* <p>
* Corresponds to the value of the <xa>href</xa> attribute of the <xt>&lt;A&gt;</xt> element.
*
* @return The value of the <property>href</property> property on this bean, or <jk>null</jk> if it is not set.
*/
public String getHref() {
return href;
}
/**
* Bean property setter: <property>href</property>.
*
* @param href The new value for the <property>href</property> property on this bean.
* @return This object (for method chaining).
*/
public Link setHref(String href) {
setHref(href, new Object[0]);
return this;
}
/**
* Bean property setter: <property>href</property>.
*
* <p>
* Same as {@link #setHref(String)} except allows for {@link MessageFormat} style arguments.
*
* @param href The new href.
* @param args Optional {@link MessageFormat}-style arguments.
* @return This object (for method chaining).
*/
public Link setHref(String href, Object...args) {
for (int i = 0; i < args.length; i++)
args[i] = UrlEncodingSerializer.DEFAULT.serialize(PartType.PATH, args[i]);
this.href = format(href, args);
return this;
}
/**
* Returns the name so that the {@link PojoQuery} class can search against it.
*/
@Override /* Object */
public String toString() {
return name;
}
@Override /* Comparable */
public int compareTo(Link o) {
return name.compareTo(o.name);
}
@Override /* Object */
public boolean equals(Object o) {
if (! (o instanceof Link))
return false;
return (compareTo((Link)o) == 0);
}
@Override /* Object */
public int hashCode() {
return super.hashCode();
}
}