All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jelastic.api.system.persistence.VSVersions Maven / Gradle / Ivy

The newest version!
/*Server class MD5: 8002eaf1bf6b367db1ab9c932be55485*/
package com.jelastic.api.system.persistence;

import com.jelastic.api.common.annotation.Transform;
import com.jelastic.api.development.response.interfaces.ArrayItem;

/**
 * @name Jelastic API Client
 * @version 8.11.2
 * @copyright Jelastic, Inc.
 */
public class VSVersions extends ArrayItem {

    @Transform(required = true)
    private String agentVersion;

    @Transform(required = true)
    private String vsVersion;

    @Transform(required = true)
    private boolean fastCloneSupported;

    @Transform(required = true)
    private boolean isDefault;

    public String getAgentVersion() {
        return agentVersion;
    }

    public void setAgentVersion(String agentVersion) {
        this.agentVersion = agentVersion;
    }

    public String getVsVersion() {
        return vsVersion;
    }

    public void setVsVersion(String vsVersion) {
        this.vsVersion = vsVersion;
    }

    public boolean isFastCloneSupported() {
        return fastCloneSupported;
    }

    public void setFastCloneSupported(boolean fastCloneSupported) {
        this.fastCloneSupported = fastCloneSupported;
    }

    public boolean isDefault() {
        return isDefault;
    }

    public void setDefault(boolean aDefault) {
        isDefault = aDefault;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy