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

edu.uiuc.ncsa.myproxy.oa4mp.client.OA4MPServiceProvider Maven / Gradle / Ivy

The newest version!
package edu.uiuc.ncsa.myproxy.oa4mp.client;

import javax.inject.Provider;

/**
 * An internal factory for making an {@link OA4MPService} instance. This is generally not
 * needed by implementers.
 * 

Created by Jeff Gaynor
* on 6/26/12 at 10:41 AM */ public class OA4MPServiceProvider implements Provider { protected ClientEnvironment clientEnvironment; public OA4MPServiceProvider(ClientEnvironment clientEnvironment) { this.clientEnvironment = clientEnvironment; } @Override public OA4MPService get() { return new OA4MPService(clientEnvironment); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy