Package org.brickred.socialauth.plugin

Examples of org.brickred.socialauth.plugin.Plugin


  public <T> T getPlugin(final Class<T> clazz) throws Exception {
    Class<? extends Plugin> plugin = pluginsMap.get(clazz);
    Constructor<? extends Plugin> cons = plugin
        .getConstructor(ProviderSupport.class);
    ProviderSupport support = new ProviderSupport(getOauthStrategy());
    Plugin obj = cons.newInstance(support);
    return (T) obj;
  }
View Full Code Here

TOP

Related Classes of org.brickred.socialauth.plugin.Plugin

Copyright © 2018 www.massapicom. 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.