All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.moip.resource.links.Href Maven / Gradle / Ivy

There is a newer version: 4.7.6
Show newest version
package br.com.moip.resource.links;

public class Href {

    private String href;
    private String title = "";

    public String getHref() {
        return href;
    }

    public String getTitle() {
        return title;
    }

    @Override
    public String toString() {
        return new StringBuilder("Href{")
                .append("href='").append(href).append('\'')
                .append("title='").append(title).append('\'')
                .append('}').toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy