Examples of SaveSearchFavouriteRequest


Examples of org.geomajas.widget.searchandfilter.command.dto.SaveSearchFavouriteRequest

   * Returns the persisted instance (this has extra properties + id set).
   * @param sf
   * @param onFinished
   */
  public static void saveSearchFavourite(SearchFavourite sf, final DataCallback<SearchFavourite> onFinished) {
    SaveSearchFavouriteRequest ssfr = new SaveSearchFavouriteRequest();
    ssfr.setSearchFavourite(sf);
    GwtCommand command = new GwtCommand(SaveSearchFavouriteRequest.COMMAND);
    command.setCommandRequest(ssfr);
    GwtCommandDispatcher.getInstance().execute(command, new CommandCallback() {
      public void execute(CommandResponse response) {
        if (response instanceof SaveSearchFavouriteResponse) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.