
net.koofr.api.v2.resources.Link Maven / Gradle / Ivy
The newest version!
package net.koofr.api.v2.resources;
import java.io.Serializable;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Link extends JsonBase implements Serializable {
private static final long serialVersionUID = 1L;
private String id;
private String name;
private String path;
private Long counter;
private String url;
private String shortUrl;
private String hash;
private String host;
private Boolean hasPassword;
private String password;
public Link() {
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public Long getCounter() {
return counter;
}
public void setCounter(Long counter) {
this.counter = counter;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getShortUrl() {
return shortUrl;
}
public void setShortUrl(String shortUrl) {
this.shortUrl = shortUrl;
}
public String getHash() {
return hash;
}
public void setHash(String hash) {
this.hash = hash;
}
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public Boolean getHasPassword() {
return hasPassword;
}
public void setHasPassword(Boolean hasPassword) {
this.hasPassword = hasPassword;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy