Examples of UniverseNameRequest


Examples of ola.proto.Ola.UniverseNameRequest

     * @param universe id of universe for which to set the name.
     * @param name The name to set.
     * @return true if the call succeeded.
     */
    public boolean setUniverseName(int universe, String name) {
        UniverseNameRequest request = UniverseNameRequest.newBuilder()
                .setUniverse(universe)
                .setName(name)
                .build();
        return callRpcMethod("SetUniverseName", request) != null;
    }
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.