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

com.testdroid.api.model.APIS3Url Maven / Gradle / Ivy

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