Package net.sf.jasperreports.data.http
Interface HttpDataLocation
-
- All Superinterfaces:
Cloneable,DataFile,JRCloneable
- All Known Implementing Classes:
StandardHttpDataLocation
public interface HttpDataLocation extends DataFile
- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBody()List<HttpLocationParameter>getHeaders()RequestMethodgetMethod()StringgetPassword()List<HttpLocationParameter>getPostParameters()StringgetUrl()List<HttpLocationParameter>getUrlParameters()StringgetUsername()-
Methods inherited from interface net.sf.jasperreports.engine.JRCloneable
clone
-
-
-
-
Method Detail
-
getMethod
RequestMethod getMethod()
-
getUrl
String getUrl()
-
getUsername
String getUsername()
-
getPassword
String getPassword()
-
getUrlParameters
List<HttpLocationParameter> getUrlParameters()
-
getBody
String getBody()
-
getPostParameters
List<HttpLocationParameter> getPostParameters()
-
getHeaders
List<HttpLocationParameter> getHeaders()
-
-