Statistics
| Revision:

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

History | View | Annotate | Download (2.65 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 24163 jiyarza
import org.gvsig.tools.locator.BaseLibrary;
40
import org.gvsig.tools.locator.ReferenceNotRegisteredException;
41
42
43
public class DALFileLibrary extends BaseLibrary {
44 24182 jjdelcerro
45 24163 jiyarza
    public void initialize() throws ReferenceNotRegisteredException {
46
            super.initialize();
47 24182 jjdelcerro
48 24452 jmvivo
    }
49 24182 jjdelcerro
50 25551 cordinyana
    public void postInitialize() throws ReferenceNotRegisteredException {
51 24182 jjdelcerro
            DataManagerProviderServices dataman = (DataManagerProviderServices) DALLocator.getDataManager();
52
53
            ResourceManagerProviderServices resman = (ResourceManagerProviderServices) DALLocator.getResourceManager();
54
55
            if (!resman.getResourceProviders().contains(FileResource.NAME)) {
56
                        resman.register(FileResource.NAME, FileResource.DESCRIPTION,
57
                                        FileResource.class, FileResourceParameters.class);
58
                }
59
60 24893 jmvivo
            if (!dataman.getExplorerProviders().contains(FilesystemServerExplorer.NAME)) {
61 24959 jmvivo
                        dataman.registerExplorerProvider(FilesystemServerExplorer.NAME,
62
                                        DefaultFilesystemServerExplorer.class,
63
                                        FilesystemServerExplorerParameters.class);
64 24893 jmvivo
                        DALFileLocator
65 27746 jmvivo
                                        .registerFilesystemSeverExplorerManager(DefaultFilesystemServerExplorerManager.class);
66 24182 jjdelcerro
            }
67
68 24163 jiyarza
    }
69
}