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

com.predic8.membrane.core.interceptor.apikey.stores.inConfig.Scope Maven / Gradle / Ivy

package com.predic8.membrane.core.interceptor.apikey.stores.inConfig;

import com.predic8.membrane.annot.MCElement;
import com.predic8.membrane.annot.MCTextContent;

@MCElement(name = "scope", topLevel = false, mixed = true)
public class Scope {

    private String value;

    public String getValue() {
        return value;
    }

    @MCTextContent
    public void setValue(String value) {
        this.value = value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy