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

io.staticcdn.sdk.client.model.ServerConfig Maven / Gradle / Ivy

There is a newer version: 0.1.26
Show newest version
package io.staticcdn.sdk.client.model;

import java.util.List;

public class ServerConfig {

    @Deprecated
    private List optimiseScanRules;
    private String version;
    private List apiServerList;
    private List optimizeScanRules;

    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
    }

    public List getApiServerList() {
        return apiServerList;
    }

    public void setApiServerList(List apiServerList) {
        this.apiServerList = apiServerList;
    }

    public List getOptimizeScanRules() {
        if(optimizeScanRules==null)
            return optimiseScanRules;
        return optimizeScanRules;
    }

    public void setOptimizeScanRules(List optimizeScanRules) {
        this.optimizeScanRules = optimizeScanRules;
    }

    public List getOptimiseScanRules() {
        return optimiseScanRules;
    }

    public void setOptimiseScanRules(List optimiseScanRules) {
        this.optimiseScanRules = optimiseScanRules;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy