1 /*
2 * Copyright (c) 2002-2022, City of 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.portal.business.xsl;
35
36 import fr.paris.lutece.portal.business.file.FileHome;
37 import fr.paris.lutece.portal.service.html.XmlTransformerService;
38 import fr.paris.lutece.portal.service.plugin.Plugin;
39 import fr.paris.lutece.portal.service.spring.SpringContextService;
40 import fr.paris.lutece.util.ReferenceList;
41
42 import java.util.List;
43
44 /**
45 * This class provides instances management methods (create, find, ...) for ExportFormat objects
46 */
47 public final class XslExportHome
48 {
49 // Static variable pointed at the DAO instance
50 private static IXslExportDAO _dao = SpringContextService.getBean( "xslExportDAO" );
51
52 /**
53 * Private constructor - this class do not need to be instantiated
54 */
55 private XslExportHome( )
56 {
57 }
58
59 /**
60 * Creation of an instance of Xsl Export
61 *
62 * @param xslExport
63 * The instance of the xslExport which contains the informations to store
64 *
65 */
66 public static void create( XslExport xslExport )
67 {
68 _dao.insert( xslExport );
69 }
70
71 /**
72 * Update of the XslExport which is specified in parameter
73 *
74 * @param xslExport
75 * The instance of the xslExport which contains the informations to update
76 */
77 public static void update( XslExport xslExport )
78 {
79 _dao.store( xslExport );
80 XmlTransformerService.clearXslCache( );
81 }
82
83 /**
84 * Remove the XslExport whose identifier is specified in parameter
85 *
86 * @param nIdXslExport
87 * The XslExport Id
88 */
89 public static void remove( int nIdXslExport )
90 {
91 _dao.delete( nIdXslExport );
92 XmlTransformerService.clearXslCache( );
93 }
94
95 // /////////////////////////////////////////////////////////////////////////
96 // Finders
97
98 /**
99 * Returns an instance of a XslExport whose identifier is specified in parameter
100 *
101 * @param nKey
102 * The xslExport primary key
103 * @return an instance of XslExport
104 */
105 public static XslExport findByPrimaryKey( int nKey )
106 {
107 XslExport xslExport = _dao.load( nKey );
108
109 if ( ( xslExport != null ) && ( xslExport.getFile( ) != null ) )
110 {
111 xslExport.setFile( FileHome.findByPrimaryKey( xslExport.getFile( ).getIdFile( ) ) );
112 }
113
114 return xslExport;
115 }
116
117 /**
118 * Loads the data of all the XslExport and returns them in a list
119 *
120 * @return the list which contains the data of every Xsl export items
121 */
122 public static List<XslExport> getList( )
123 {
124 return _dao.selectList( );
125 }
126
127 /**
128 * Loads the data of XslExport associated with a given plugin and returns them in a list
129 *
130 * @param plugin
131 * The plugin
132 * @return the list which contains the data of Xsl export items
133 */
134 public static List<XslExport> getListByPlugin( Plugin plugin )
135 {
136 return _dao.selectListByPlugin( plugin );
137 }
138
139 /**
140 * Loads in the reference list the data of all the XslExport and returns them in a list
141 *
142 * @return the list which contains the data of every Xsl Export items
143 */
144 public static ReferenceList getRefList( )
145 {
146 ReferenceListList.html#ReferenceList">ReferenceList refList = new ReferenceList( );
147
148 List<XslExport> xslList = getList( );
149
150 for ( XslExport xslExport : xslList )
151 {
152 refList.addItem( xslExport.getIdXslExport( ), xslExport.getTitle( ) );
153 }
154
155 return refList;
156 }
157
158 /**
159 * Loads the data of XslExport associated with a given plugin and returns them in a list
160 *
161 * @param plugin
162 * The plugin
163 * @return the list which contains the data of Xsl export items
164 */
165 public static ReferenceList getRefListByPlugin( Plugin plugin )
166 {
167 ReferenceListList.html#ReferenceList">ReferenceList refList = new ReferenceList( );
168
169 List<XslExport> xslList = getListByPlugin( plugin );
170
171 for ( XslExport xslExport : xslList )
172 {
173 refList.addItem( xslExport.getIdXslExport( ), xslExport.getTitle( ) );
174 }
175
176 return refList;
177 }
178 }