Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_dalfile / src / org / gvsig / fmap / dal / DALFileLibrary.java @ 30757

History | View | Annotate | Download (2.67 KB)

1 24163 jiyarza
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5 24182 jjdelcerro
*
6 24163 jiyarza
* This program is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU General Public License
8
* as published by the Free Software Foundation; either version 2
9
* of the License, or (at your option) any later version.
10 24182 jjdelcerro
*
11 24163 jiyarza
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
* GNU General Public License for more details.
15 24182 jjdelcerro
*
16 24163 jiyarza
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18 24182 jjdelcerro
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 24163 jiyarza
* MA  02110-1301, USA.
20 24182 jjdelcerro
*
21 24163 jiyarza
*/
22
23
/*
24
* AUTHORS (In addition to CIT):
25
* 2008 {{Company}}   {{Task}}
26
*/
27
28 24182 jjdelcerro
29 24498 jmvivo
package org.gvsig.fmap.dal;
30 24163 jiyarza
31 24498 jmvivo
import org.gvsig.fmap.dal.resource.file.FileResource;
32
import org.gvsig.fmap.dal.resource.file.FileResourceParameters;
33
import org.gvsig.fmap.dal.resource.spi.ResourceManagerProviderServices;
34 24893 jmvivo
import org.gvsig.fmap.dal.serverexplorer.filesystem.FilesystemServerExplorer;
35
import org.gvsig.fmap.dal.serverexplorer.filesystem.FilesystemServerExplorerParameters;
36 24959 jmvivo
import org.gvsig.fmap.dal.serverexplorer.filesystem.impl.DefaultFilesystemServerExplorer;
37 24898 jmvivo
import org.gvsig.fmap.dal.serverexplorer.filesystem.impl.DefaultFilesystemServerExplorerManager;
38 24498 jmvivo
import org.gvsig.fmap.dal.spi.DataManagerProviderServices;
39 30633 cordinyana
import org.gvsig.tools.library.AbstractLibrary;
40 30580 cordinyana
import org.gvsig.tools.library.LibraryException;
41 24163 jiyarza
import org.gvsig.tools.locator.ReferenceNotRegisteredException;
42
43
44 30633 cordinyana
public class DALFileLibrary extends AbstractLibrary {
45 24182 jjdelcerro
46 30580 cordinyana
        @Override
47
        protected void doInitialize() throws LibraryException {
48
        }
49 24182 jjdelcerro
50 30580 cordinyana
        @Override
51
        protected void doPostInitialize() throws LibraryException {
52 24182 jjdelcerro
            DataManagerProviderServices dataman = (DataManagerProviderServices) DALLocator.getDataManager();
53
54
            ResourceManagerProviderServices resman = (ResourceManagerProviderServices) DALLocator.getResourceManager();
55
56
            if (!resman.getResourceProviders().contains(FileResource.NAME)) {
57
                        resman.register(FileResource.NAME, FileResource.DESCRIPTION,
58
                                        FileResource.class, FileResourceParameters.class);
59
                }
60
61 24893 jmvivo
            if (!dataman.getExplorerProviders().contains(FilesystemServerExplorer.NAME)) {
62 24959 jmvivo
                        dataman.registerExplorerProvider(FilesystemServerExplorer.NAME,
63
                                        DefaultFilesystemServerExplorer.class,
64
                                        FilesystemServerExplorerParameters.class);
65 24893 jmvivo
                        DALFileLocator
66 27746 jmvivo
                                        .registerFilesystemSeverExplorerManager(DefaultFilesystemServerExplorerManager.class);
67 24182 jjdelcerro
            }
68 30580 cordinyana
        }
69
}