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

com.icthh.xm.lep.core.DefaultScopedContext Maven / Gradle / Ivy

There is a newer version: 4.0.21
Show newest version
package com.icthh.xm.lep.core;

import com.icthh.xm.lep.api.ScopedContext;

import java.util.Objects;

@Deprecated(forRemoval = true)
public class DefaultScopedContext extends DefaultContext implements ScopedContext {

    private final String scope;

    public DefaultScopedContext(String scope) {
        this.scope = Objects.requireNonNull(scope, "scope name can't be null");
    }

    @Override
    public String getScope() {
        return scope;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy