Package com.adobe.forms.common.service
Interface DataProviderBase
-
- All Known Subinterfaces:
DataProvider,DataXMLProvider
- All Known Implementing Classes:
AbstractDataProvider
public interface DataProviderBaseBase 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.StringDATA_PROVIDER_LABELstatic java.lang.StringDATA_PROVIDER_NAMEstatic java.lang.StringPROTOCOL_CRXstatic java.lang.StringPROTOCOL_FILEstatic java.lang.StringPROTOCOL_HTTPstatic java.lang.StringPROTOCOL_HTTPS
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetServiceDescription()Description of the Service to be shown in the Dropdown where service selection is shown.java.lang.StringgetServiceName()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
-
-