Examples of OptionalUniverseRequest


Examples of ola.proto.Ola.OptionalUniverseRequest

     *
     * @param universe the id of the universe.
     * @return device info
     */
    public DeviceInfoReply getCandidatePorts(int universe) {
        OptionalUniverseRequest request = OptionalUniverseRequest.newBuilder().setUniverse(universe).build();
        return (DeviceInfoReply) callRpcMethod("GetCandidatePorts", request);
    }
View Full Code Here

Examples of ola.proto.Ola.OptionalUniverseRequest

     *
     * @param universe the id of the universe
     * @return UniverseInfo
     */
    public UniverseInfoReply getUniverseInfo(int universe) {
        OptionalUniverseRequest request = OptionalUniverseRequest.newBuilder().setUniverse(universe).build();
        return (UniverseInfoReply) callRpcMethod("GetUniverseInfo", request);
    }
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.