Package ola.proto.Ola

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


     *
     * @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

Related Classes of ola.proto.Ola.OptionalUniverseRequest

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.