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 String
getBody()
List<HttpLocationParameter>
getHeaders()
RequestMethod
getMethod()
String
getPassword()
List<HttpLocationParameter>
getPostParameters()
String
getUrl()
List<HttpLocationParameter>
getUrlParameters()
String
getUsername()
-
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()
-
-