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

com.testvagrant.monitor.requests.Link Maven / Gradle / Ivy

The newest version!
package com.testvagrant.monitor.requests;

public class Link {
    private String rel;
    private String href;

    public String getRel() {
        return rel;
    }

    public void setRel(String rel) {
        this.rel = rel;
    }

    public String getHref() {
        return href;
    }

    public void setHref(String href) {
        this.href = href;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy