Package org.pentaho.mantle.client.events

Examples of org.pentaho.mantle.client.events.MantleSettingsLoadedEvent


          for ( int i = 0; i < userSettings.length(); i++ ) {
            JsSetting setting = userSettings.get( i );
            mantleSettings.put( setting.getName(), setting.getValue() );
          }
        }
        onMantleSettingsLoaded( new MantleSettingsLoadedEvent( mantleSettings ) );
      }

      public void onFailure( Throwable caught ) {
      }
    }, false );
View Full Code Here


        settings.put( "is-administrator", "" + isAdministrator );
        if ( callback != null ) {
          callback.onSuccess( settings );
        }
        EventBusUtil.EVENT_BUS.fireEvent( new MantleSettingsLoadedEvent( settings ) );
      }
    };

    final RequestBuilder builder =
        new RequestBuilder( RequestBuilder.GET, GWT.getHostPageBaseURL() + "api/mantle/settings" );
View Full Code Here

TOP

Related Classes of org.pentaho.mantle.client.events.MantleSettingsLoadedEvent

Copyright © 2018 www.massapicom. 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.