Package org.infoglue.deliver.controllers.kernel.impl.simple

Source Code of org.infoglue.deliver.controllers.kernel.impl.simple.AvailableServiceBindingDeliveryController

/* ===============================================================================
*
* Part of the InfoGlue Content Management Platform (www.infoglue.org)
*
* ===============================================================================
*
*  Copyright (C)
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License version 2, as published by the
* Free Software Foundation. See the file LICENSE.html for more information.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY, including the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc. / 59 Temple
* Place, Suite 330 / Boston, MA 02111-1307 / USA.
*
* ===============================================================================
*/

package org.infoglue.deliver.controllers.kernel.impl.simple;

import org.apache.log4j.Logger;
import org.exolab.castor.jdo.Database;
import org.exolab.castor.jdo.OQLQuery;
import org.exolab.castor.jdo.QueryResults;
import org.infoglue.cms.entities.management.AvailableServiceBinding;
import org.infoglue.cms.entities.management.AvailableServiceBindingVO;
import org.infoglue.cms.exception.SystemException;
import org.infoglue.deliver.util.CacheController;


public class AvailableServiceBindingDeliveryController extends BaseDeliveryController
{
    private final static Logger logger = Logger.getLogger(AvailableServiceBindingDeliveryController.class.getName());

  /**
   * Private constructor to enforce factory-use
   */
 
  private AvailableServiceBindingDeliveryController()
  {
  }
 
  /**
   * Factory method
   */
 
  public static AvailableServiceBindingDeliveryController getAvailableServiceBindingDeliveryController()
  {
    return new AvailableServiceBindingDeliveryController();
  }
 

  /**
   * This method returns the available service binding with a specific name.
   */
 
  public AvailableServiceBindingVO getAvailableServiceBindingVO(String availableServiceBindingName, Database db) throws SystemException, Exception
  {
      String key = "" + availableServiceBindingName;
    logger.info("key:" + key);
    AvailableServiceBindingVO availableServiceBindingVO = (AvailableServiceBindingVO)CacheController.getCachedObject("availableServiceBindingCache", key);
    if(availableServiceBindingVO != null)
    {
        logger.info("There was an cached availableServiceBindingVO:" + availableServiceBindingVO);
    }
    else
    {
      logger.info("Going to look for availableServiceBindingName " + availableServiceBindingName);
     
      //OQLQuery oql = db.getOQLQuery( "SELECT asb FROM org.infoglue.cms.entities.management.impl.simple.AvailableServiceBindingImpl asb WHERE asb.name = $1");
        OQLQuery oql = db.getOQLQuery( "SELECT asb FROM org.infoglue.cms.entities.management.impl.simple.SmallAvailableServiceBindingImpl asb WHERE asb.name = $1");
        //OQLQuery oql = db.getOQLQuery( "CALL SQL SELECT availableServiceBindingId, name, description, visualizationAction, isMandatory, isUserEditable, isInheritable FROM cmAvailableServiceBinding WHERE (name = $1) AS org.infoglue.cms.entities.management.impl.simple.AvailableServiceBindingImpl");
          oql.bind(availableServiceBindingName);
     
      QueryResults results = oql.execute(Database.READONLY);
      if (results.hasMore())
          {
            AvailableServiceBinding availableServiceBinding = (AvailableServiceBinding)results.next();
        availableServiceBindingVO = availableServiceBinding.getValueObject();
        logger.info("Found availableServiceBinding:" + availableServiceBindingVO.getName());
          }
            else
            {
                logger.info("Found no AvailableServiceBindingVO with name " + availableServiceBindingName);
            }
     
      results.close();
      oql.close();
   
      //try{ throw new Exception("Hepp1"); }catch(Exception e){e.printStackTrace();}

      CacheController.cacheObject("availableServiceBindingCache", key, availableServiceBindingVO);
    }
   
      return availableServiceBindingVO; 
  }
 
  /**
   * This method returns the available service binding with a specific name.
   */
 
  public AvailableServiceBinding getAvailableServiceBinding(String availableServiceBindingName, Database db) throws SystemException, Exception
  {
      AvailableServiceBinding availableServiceBinding = null;
     
    OQLQuery oql = db.getOQLQuery( "SELECT asb FROM org.infoglue.cms.entities.management.impl.simple.AvailableServiceBindingImpl asb WHERE asb.name = $1");
      oql.bind(availableServiceBindingName);
   
    QueryResults results = oql.execute(Database.READONLY);
    if (results.hasMore())
      {
        availableServiceBinding = (AvailableServiceBinding)results.next();
      logger.info("Found availableServiceBinding:" + availableServiceBinding.getName());
      }
        
    results.close();
    oql.close();

        return availableServiceBinding; 
  }
 
}
TOP

Related Classes of org.infoglue.deliver.controllers.kernel.impl.simple.AvailableServiceBindingDeliveryController

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.