View Javadoc
1   /*
2    * Copyright (c) 2002-2014, Mairie de Paris
3    * All rights reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are permitted provided that the following conditions
7    * are met:
8    *
9    *  1. Redistributions of source code must retain the above copyright notice
10   *     and the following disclaimer.
11   *
12   *  2. Redistributions in binary form must reproduce the above copyright notice
13   *     and the following disclaimer in the documentation and/or other materials
14   *     provided with the distribution.
15   *
16   *  3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
17   *     contributors may be used to endorse or promote products derived from
18   *     this software without specific prior written permission.
19   *
20   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30   * POSSIBILITY OF SUCH DAMAGE.
31   *
32   * License 1.0
33   */
34  package fr.paris.lutece.plugins.crm.business.portlet;
35  
36  import fr.paris.lutece.portal.business.portlet.Portlet;
37  import fr.paris.lutece.util.sql.DAOUtil;
38  
39  /**
40   * This class provides Data Access methods for DemandTypePortlet objects
41   */
42  public final class DemandTypePortletDAO implements IDemandTypePortletDAO
43  {
44      private static final String SQL_QUERY_INSERT = "INSERT INTO crm_demand_type_portlet ( id_portlet , id_category ) VALUES ( ? , ? )";
45      private static final String SQL_QUERY_SELECT = "SELECT id_portlet , id_category FROM crm_demand_type_portlet WHERE id_portlet = ? ";
46      private static final String SQL_QUERY_SELECT_COUNT_PORTLET_BY_ID_CATEGORY = "SELECT COUNT(id_portlet )FROM crm_demand_type_portlet WHERE id_category = ? ";
47      private static final String SQL_QUERY_UPDATE = "UPDATE crm_demand_type_portlet SET id_portlet = ?, id_category = ? WHERE id_portlet = ? ";
48      private static final String SQL_QUERY_DELETE = "DELETE FROM crm_demand_type_portlet WHERE id_portlet= ? ";
49  
50      // /////////////////////////////////////////////////////////////////////////////////////
51      // Access methods to data
52  
53      /**
54       * {@inheritDoc}
55       */
56      @Override
57      public void insert( Portlet portlet )
58      {
59          DemandTypePortlet../../../../../fr/paris/lutece/plugins/crm/business/portlet/DemandTypePortlet.html#DemandTypePortlet">DemandTypePortlet p = (DemandTypePortlet) portlet;
60  
61          DAOUtil daoUtil = new DAOUtil( SQL_QUERY_INSERT );
62          daoUtil.setInt( 1, p.getId( ) );
63          daoUtil.setInt( 2, p.getIdCategory( ) );
64  
65          daoUtil.executeUpdate( );
66          daoUtil.free( );
67      }
68  
69      /**
70       * {@inheritDoc}
71       */
72      @Override
73      public void delete( int nPortletId )
74      {
75          DAOUtil daoUtil = new DAOUtil( SQL_QUERY_DELETE );
76          daoUtil.setInt( 1, nPortletId );
77          daoUtil.executeUpdate( );
78          daoUtil.free( );
79      }
80  
81      /**
82       * {@inheritDoc}
83       */
84      @Override
85      public Portlet load( int nPortletId )
86      {
87          DAOUtil daoUtil = new DAOUtil( SQL_QUERY_SELECT );
88          daoUtil.setInt( 1, nPortletId );
89          daoUtil.executeQuery( );
90  
91          DemandTypePortletiness/portlet/DemandTypePortlet.html#DemandTypePortlet">DemandTypePortlet portlet = new DemandTypePortlet( );
92  
93          if ( daoUtil.next( ) )
94          {
95              portlet.setId( daoUtil.getInt( 1 ) );
96              portlet.setIdCategory( daoUtil.getInt( 2 ) );
97          }
98  
99          daoUtil.free( );
100 
101         return portlet;
102     }
103 
104     /**
105      * {@inheritDoc}
106      */
107     @Override
108     public int selectCountPortletByIdCategory( int nIdCategory )
109     {
110         int nCountPortlet = 0;
111         DAOUtil daoUtil = new DAOUtil( SQL_QUERY_SELECT_COUNT_PORTLET_BY_ID_CATEGORY );
112         daoUtil.setInt( 1, nIdCategory );
113         daoUtil.executeQuery( );
114 
115         if ( daoUtil.next( ) )
116         {
117             nCountPortlet = daoUtil.getInt( 1 );
118         }
119 
120         daoUtil.free( );
121 
122         return nCountPortlet;
123     }
124 
125     /**
126      * {@inheritDoc}
127      */
128     @Override
129     public void store( Portlet portlet )
130     {
131         DemandTypePortlet../../../../../fr/paris/lutece/plugins/crm/business/portlet/DemandTypePortlet.html#DemandTypePortlet">DemandTypePortlet p = (DemandTypePortlet) portlet;
132         DAOUtil daoUtil = new DAOUtil( SQL_QUERY_UPDATE );
133         daoUtil.setInt( 1, p.getId( ) );
134         daoUtil.setInt( 2, p.getIdCategory( ) );
135         daoUtil.setInt( 3, p.getId( ) );
136         daoUtil.executeUpdate( );
137         daoUtil.free( );
138     }
139 }