Examples of IPluginCall


Examples of pt.webdetails.cpf.plugincall.api.IPluginCall

    }

    params.put( "absolute", absolute );

    //TODO: instantiate directly
    IPluginCall pluginCall = PluginEnvironment.env().getPluginCall( CorePlugin.CDF.getId(), "xcdf", "getHeaders" );
   
    return pluginCall.call( params.getParameters() );

  }
View Full Code Here

Examples of pt.webdetails.cpf.plugincall.api.IPluginCall

    return pluginCall.call( params.getParameters() );

  }

  public static String getDataSourceDefinitions(String plugin, String service, String method, boolean forceRefresh) throws Exception {
    IPluginCall pluginCall = PluginEnvironment.env().getPluginCall( plugin, null, method );
    CallParameters params = new CallParameters();
    params.put( "refreshCache", forceRefresh );
    return pluginCall.call( params.getParameters() );
  }
View Full Code Here

Examples of pt.webdetails.cpf.plugincall.api.IPluginCall

    CallParameters params = new CallParameters();
    params.put("path", dashboard);
    params.put("action", action);
    params.put("viewId", viewId);

    IPluginCall pluginCall = PluginEnvironment.env().getPluginCall( CorePlugin.CDF.getId(), "xcdf", "getContext" );

    return pluginCall.call( params.getParameters() );

  }
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.