Package ola.proto.Ola

Examples of ola.proto.Ola.PluginDescriptionRequest


     * @param pluginId number of the plugin for which to receive the description
     * @return The list of plugings.
     */
    public PluginDescriptionReply getPluginDescription(int pluginId) {

        PluginDescriptionRequest request = PluginDescriptionRequest.newBuilder()
                .setPluginId(pluginId)
                .build();

        return (PluginDescriptionReply) callRpcMethod("GetPluginDescription", request);
    }
View Full Code Here

TOP

Related Classes of ola.proto.Ola.PluginDescriptionRequest

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.