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

com.jladder.web.WebScopeOption Maven / Gradle / Ivy

There is a newer version: 5.0.44
Show newest version
package com.jladder.web;

public enum WebScopeOption {
    SqlDebug("SqlDebug"),
    SqlCluster("SqlCluster"),
    Latch("Latch"),
    Analyz("Analyz"),
    IgnoreRequestLog("IgnoreRequestLog");
    private String name;

    WebScopeOption(String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy