Package org.cip4.jdflib.ifaces
Interface IURLSetter
-
- All Known Implementing Classes:
JDFFileSpec,JDFNode,JDFPreview,JDFQueueSubmissionParams,JDFResubmissionParams,JDFReturnQueueEntryParams
public interface IURLSetterInterface for elements that can set or get a URL - used when unpacking or forwarding the respective url target
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetURL()java.io.InputStreamgetURLInputStream()get the input stream that reads from URLjava.lang.StringgetUserFileName()voidsetURL(java.lang.String url)
-
-
-
Method Detail
-
setURL
void setURL(java.lang.String url)
- Parameters:
url- the URL to set
-
getURL
java.lang.String getURL()
- Returns:
- the URL of this
-
getUserFileName
java.lang.String getUserFileName()
- Returns:
- the filename of this; null if not implemented
-
getURLInputStream
java.io.InputStream getURLInputStream()
get the input stream that reads from URL- Returns:
- InputStream the input stream that the url points to, null if the url is inaccessible
-
-