Package org.platformlayer.xaas

Source Code of org.platformlayer.xaas.ScopeProvider

package org.platformlayer.xaas;

import org.platformlayer.Scope;

import com.google.inject.Provider;

public class ScopeProvider implements Provider<Scope> {

  @Override
  public Scope get() {
    Scope contextMap = Scope.get();
    return contextMap;
  }

}
TOP

Related Classes of org.platformlayer.xaas.ScopeProvider

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.