Package de.deltatree.social.web.filter.impl.security

Examples of de.deltatree.social.web.filter.impl.security.DefaultSASFSocialAuthManager


  @Override
  public void init(final FilterConfig config) throws ServletException {
    try {
      this.props = new SASFProperties(InitParamUtil.getInitParam(config,
          VAR_PROPERTIES));
      this.sdbSocialAuthManager = new DefaultSASFSocialAuthManager(props);
    } catch (SASFPropertiesException e) {
      throw new ServletException(e);
    } catch (SASFSecurityException e) {
      throw new ServletException(e);
    }
View Full Code Here

TOP

Related Classes of de.deltatree.social.web.filter.impl.security.DefaultSASFSocialAuthManager

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.