Package org.platformlayer.xaas.web.resources

Source Code of org.platformlayer.xaas.web.resources.ServiceAuthorizationCollectionResource

package org.platformlayer.xaas.web.resources;

import javax.ws.rs.Path;
import javax.ws.rs.PathParam;

import org.platformlayer.ids.ServiceType;

public class ServiceAuthorizationCollectionResource extends XaasResourceBase {
  @Path("{serviceType}")
  public ServiceAuthorizationResource getOne(@PathParam("serviceType") String serviceType) {
    getScope().put(new ServiceType(serviceType));

    ServiceAuthorizationResource resource = objectInjector.getInstance(ServiceAuthorizationResource.class);
    return resource;
  }
}
TOP

Related Classes of org.platformlayer.xaas.web.resources.ServiceAuthorizationCollectionResource

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.