Package com.netflix.genie.common.model

Examples of com.netflix.genie.common.model.Cluster.validate()


        //Set the id if it's not set so we can merge
        if (StringUtils.isBlank(updateCluster.getId())) {
            updateCluster.setId(id);
        }
        final Cluster cluster = this.em.merge(updateCluster);
        cluster.validate();
        return cluster;
    }

    /**
     * {@inheritDoc}
 
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.