Package com.mozilla.grouperfish.rest.jaxrs

Source Code of com.mozilla.grouperfish.rest.jaxrs.ResourceBase

package com.mozilla.grouperfish.rest.jaxrs;


import com.mozilla.grouperfish.naming.Scope;
import com.mozilla.grouperfish.services.api.Grid;

public class ResourceBase {

    private final Grid grid;

    public ResourceBase(final Grid grid) {
        this.grid = grid;
    }

    protected Scope scope(final String namespace) {
        return new Scope(namespace, grid);
    }


}
TOP

Related Classes of com.mozilla.grouperfish.rest.jaxrs.ResourceBase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.