Package com.googlecode.psiprobe.controllers.datasources

Source Code of com.googlecode.psiprobe.controllers.datasources.ListAllJdbcResourcesController

/*
* Licensed under the GPL License.  You may not use this file except in
* compliance with the License.  You may obtain a copy of the License at
*
*     http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
* MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
package com.googlecode.psiprobe.controllers.datasources;

import com.googlecode.psiprobe.controllers.TomcatContainerController;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;

/**
* Creates a list of all configured datasources for all web applications within
* the container.
*
* @author Vlad Ilyushchenko
*/
public class ListAllJdbcResourcesController extends TomcatContainerController{

    protected ModelAndView handleRequestInternal(HttpServletRequest request, HttpServletResponse httpServletResponse) throws Exception {
        boolean supportsGlobal = getContainerWrapper().getResourceResolver().supportsGlobalResources();
        boolean supportsPrivate = getContainerWrapper().getResourceResolver().supportsPrivateResources();
        boolean supportsDSLookup = getContainerWrapper().getResourceResolver().supportsDataSourceLookup();
        List privateResources = getContainerWrapper().getPrivateDataSources();
        List globalResources = getContainerWrapper().getGlobalDataSources();
        return new ModelAndView(getViewName())
                .addObject("supportsGlobal", Boolean.valueOf(supportsGlobal))
                .addObject("supportsPrivate", Boolean.valueOf(supportsPrivate))
                .addObject("supportsDSLookup", Boolean.valueOf(supportsDSLookup))
                .addObject("privateResources", privateResources)
                .addObject("globalResources", globalResources);
    }
}
TOP

Related Classes of com.googlecode.psiprobe.controllers.datasources.ListAllJdbcResourcesController

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.