Package com.caplin.streamlink
Interface WebRequestParameters
-
public interface WebRequestParameters
Contains the parameters needed to call a specific Liberator web module.
Call the
createWebRequestParameters
method of the StreamLink object to obtain these parameters for the specified web module.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getPostBody()
Returns the contents of the HTTP post body that should be used (to specify parameters) with the web module URL.java.lang.String
getUrl()
Returns the URL that must be used to invoke the required web module
-
-
-
Method Detail
-
getUrl
java.lang.String getUrl()
Returns the URL that must be used to invoke the required web module
- Returns:
- the web module URL.
-
getPostBody
java.lang.String getPostBody()
Returns the contents of the HTTP post body that should be used (to specify parameters) with the web module URL.
- Returns:
- the HTTP post body text.
-
-