View Javadoc

1   /*
2    * GUMSAuthZService.java
3    *
4    * Created on January 5, 2005, 6:03 PM
5    */
6   
7   package gov.bnl.gums.service;
8   
9   import org.opensciencegrid.authz.service.BasicMappingAuthZService;
10  import org.opensciencegrid.authz.stubs.AuthorizationServiceBindingSkeleton;
11  
12  /** The AuthZ service that implements the standard authorization interface.
13   *
14   * @author Gabriele Carcassi
15   */
16  public class GUMSAuthZService extends AuthorizationServiceBindingSkeleton {
17      static final long serialVersionUID = 1;
18      /** Creates an authorization service using GUMS as the implementation. */
19      public GUMSAuthZService() {
20          super(new BasicMappingAuthZService(new GUMSAuthZServiceImpl()));
21          gov.bnl.gums.admin.GUMSAPIImpl temp;
22      }
23      
24  }