Package server

Source Code of server.ThirdPartyAccessApplication

/**
* Copyright (C) 2011 Talend Inc. - www.talend.com
*/
package server;

import java.util.HashSet;
import java.util.Set;

import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;

import oauth.manager.OAuthManager;
import oauth.manager.ThirdPartyAccessService;
import oauth.service.UserAccounts;

import org.apache.cxf.rs.security.oauth.filters.OAuthRequestFilter;

/*
* Class that can be used (instead of XML-based configuration) to inform the JAX-RS
* runtime about the resources and providers it is supposed to deploy.  See the
* ApplicationServer class for more information. 
*/
@ApplicationPath("/thirdPartyAccess")
public class ThirdPartyAccessApplication extends Application {
   
    private OAuthManager manager;
    private UserAccounts accounts;

    public void setAccounts(UserAccounts accounts) {
        this.accounts = accounts;
    }

    public void setOAuthManager(OAuthManager manager) {
        this.manager = manager; 
    }

    @Override
    public Set<Object> getSingletons() {
        Set<Object> classes = new HashSet<Object>();
       
        ThirdPartyAccessService thirdPartyAccessService = new ThirdPartyAccessService();
        thirdPartyAccessService.setAccounts(accounts);
       
        classes.add(thirdPartyAccessService);
       
        OAuthRequestFilter filter = new OAuthRequestFilter();
        filter.setDataProvider(manager);
        classes.add(filter);
       
        return classes;
    }
}
TOP

Related Classes of server.ThirdPartyAccessApplication

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.