
com.yandex.disk.rest.json.Link Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disk-restapi-sdk Show documentation
Show all versions of disk-restapi-sdk Show documentation
The Java SDK for Yandex.Disk REST API is intended for applications that work with the files of Yandex.Disk users or store their own files and settings on Yandex.Disk.
The newest version!
/*
* (C) 2015 Yandex LLC (https://yandex.com/)
*
* The source code of Java SDK for Yandex.Disk REST API
* is available to use under terms of Apache License,
* Version 2.0. See the file LICENSE for the details.
*/
package com.yandex.disk.rest.json;
import com.google.gson.annotations.SerializedName;
/**
* @see
*/
public class Link {
public enum HttpStatus {
done, inProgress, error
}
HttpStatus httpStatus;
public final static Link DONE = new Link() {
{
httpStatus = HttpStatus.done;
}
};
@SerializedName("href")
String href;
@SerializedName("method")
String method;
@SerializedName("templated")
boolean templated;
public String getHref() {
return href;
}
public String getMethod() {
return method;
}
public boolean isTemplated() {
return templated;
}
public HttpStatus getHttpStatus() {
return httpStatus;
}
public void setHttpStatus(HttpStatus httpStatus) {
this.httpStatus = httpStatus;
}
@Override
public String toString() {
return "Link{" +
"href='" + href + '\'' +
", method='" + method + '\'' +
", templated=" + templated +
", httpStatus=" + httpStatus +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy