Package com.cybozu.vmbkp.config

Examples of com.cybozu.vmbkp.config.Group


     *
     * @return False if is_template entry is empty or non-bool value.
     */
    public boolean isTemplateWithMoref(String vmMoref)
    {
        Group vmGrp = new Group(vmMoref);
        String retStr = cfg_.getVal(vmGrp, "is_template");
        if (retStr != null && FormatBool.isBool(retStr)) {
            return FormatBool.toBool(retStr);
        } else {
            return false;
View Full Code Here

TOP

Related Classes of com.cybozu.vmbkp.config.Group

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.