net.sf.jasperreports.data.http.StandardHttpDataLocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jasperreports-data-adapters-http Show documentation
Show all versions of jasperreports-data-adapters-http Show documentation
JasperReports Data Adapters HTTP
The newest version!
/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2023 Cloud Software Group, Inc. All rights reserved.
* http://www.jaspersoft.com
*
* Unless you have purchased a commercial license agreement from Jaspersoft,
* the following license terms apply:
*
* This program is part of JasperReports.
*
* JasperReports is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* JasperReports is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with JasperReports. If not, see .
*/
package net.sf.jasperreports.data.http;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonTypeName;
import net.sf.jasperreports.dataadapters.http.HttpDataLocation;
import net.sf.jasperreports.dataadapters.http.RequestMethod;
import net.sf.jasperreports.engine.JRRuntimeException;
import net.sf.jasperreports.engine.util.JRCloneUtils;
/**
* @author Lucian Chirita ([email protected])
*/
@JsonTypeName("httpDataLocation")
public class StandardHttpDataLocation implements HttpDataLocation
{
private RequestMethod method;
private String url;
private String username;
private String password;
private List urlParameters;
private String body;
private List postParameters;
private List headers;
@Override
public RequestMethod getMethod()
{
return method;
}
public void setMethod(RequestMethod method)
{
this.method = method;
}
@Override
public String getUrl()
{
return url;
}
public void setUrl(String url)
{
this.url = url;
}
@Override
public String getUsername()
{
return username;
}
public void setUsername(String username)
{
this.username = username;
}
@Override
public String getPassword()
{
return password;
}
public void setPassword(String password)
{
this.password = password;
}
@Override
public Object clone()
{
try
{
StandardHttpDataLocation clone = (StandardHttpDataLocation) super.clone();
clone.urlParameters = JRCloneUtils.cloneList(urlParameters);
clone.postParameters = JRCloneUtils.cloneList(postParameters);
clone.headers = JRCloneUtils.cloneList(headers);
return clone;
}
catch (CloneNotSupportedException e)
{
// should not happen
throw new JRRuntimeException(e);
}
}
@Override
public List getUrlParameters()
{
return urlParameters;
}
public void setUrlParameters(List urlParameters)
{
this.urlParameters = urlParameters;
}
@Override
public String getBody()
{
return body;
}
public void setBody(String body)
{
this.body = body;
}
@Override
public List getPostParameters()
{
return postParameters;
}
public void setPostParameters(List postParameters)
{
this.postParameters = postParameters;
}
@Override
public List getHeaders()
{
return headers;
}
public void setHeaders(List headers)
{
this.headers = headers;
}
}