com.testdroid.api.model.APIS3Url Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testdroid-api Show documentation
Show all versions of testdroid-api Show documentation
The Testdroid API library for Java
The newest version!
package com.testdroid.api.model;
import com.testdroid.api.APIEntity;
import java.net.URL;
import java.util.Map;
/**
* @author Michał Szpruta
*/
public class APIS3Url extends APIEntity {
private String path;
private URL url;
private Map headers;
public APIS3Url() {
}
public APIS3Url(Long id, URL url, String path, Map headers) {
super(id);
this.url = url;
this.path = path;
this.headers = headers;
}
public String getPath() {
return path;
}
public URL getUrl() {
return url;
}
public Map getHeaders() {
return headers;
}
@Override
protected void clone(T from) {
throw new UnsupportedOperationException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy