Package com.adobe.forms.common.service
Interface DataProviderBase
-
- All Known Subinterfaces:
DataProvider
,DataXMLProvider
- All Known Implementing Classes:
AbstractDataProvider
public interface DataProviderBase
Base Interface to provide Data given a URL. The implementations should return the data data given the options
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
DATA_PROVIDER_LABEL
static java.lang.String
DATA_PROVIDER_NAME
static java.lang.String
PROTOCOL_CRX
static java.lang.String
PROTOCOL_FILE
static java.lang.String
PROTOCOL_HTTP
static java.lang.String
PROTOCOL_HTTPS
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getServiceDescription()
Description of the Service to be shown in the Dropdown where service selection is shown.java.lang.String
getServiceName()
Returns the name of the service that can be used in the SERVICE protocol.
-
-
-
Field Detail
-
DATA_PROVIDER_NAME
static final java.lang.String DATA_PROVIDER_NAME
- See Also:
- Constant Field Values
-
DATA_PROVIDER_LABEL
static final java.lang.String DATA_PROVIDER_LABEL
- See Also:
- Constant Field Values
-
PROTOCOL_CRX
static final java.lang.String PROTOCOL_CRX
- See Also:
- Constant Field Values
-
PROTOCOL_HTTP
static final java.lang.String PROTOCOL_HTTP
- See Also:
- Constant Field Values
-
PROTOCOL_HTTPS
static final java.lang.String PROTOCOL_HTTPS
- See Also:
- Constant Field Values
-
PROTOCOL_FILE
static final java.lang.String PROTOCOL_FILE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getServiceName
java.lang.String getServiceName()
Returns the name of the service that can be used in the SERVICE protocol. i.e. service:///path - Returns:
- service name
-
getServiceDescription
java.lang.String getServiceDescription()
Description of the Service to be shown in the Dropdown where service selection is shown.- Returns:
- service description
-
-