Package org.opencms.acacia.shared.rpc
Interface I_CmsSerialDateServiceAsync
public interface I_CmsSerialDateServiceAsync
Asynchronous interface for the serial date service.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
getDates
(String config, com.google.gwt.user.client.rpc.AsyncCallback<Collection<CmsPair<Date, Boolean>>> callback) Get the dates of the specified series.void
getStatus
(String config, com.google.gwt.user.client.rpc.AsyncCallback<CmsPair<Boolean, String>> callback) Get information on the series specified by the current value.
-
Method Details
-
getDates
void getDates(String config, com.google.gwt.user.client.rpc.AsyncCallback<Collection<CmsPair<Date, Boolean>>> callback) Get the dates of the specified series.- Parameters:
config
- series specification (widget's string value)callback
- the callback function that takes the dates of the specified series, each with a flag, indicating if it is really taking place (or excluded as an exception).
-
getStatus
void getStatus(String config, com.google.gwt.user.client.rpc.AsyncCallback<CmsPair<Boolean, String>> callback) Get information on the series specified by the current value.- Parameters:
config
- series specification (widget's string value)callback
- the callback function that takes the status information.
-