Statistics
| Revision:

root / org.gvsig.wfs.app / trunk / org.gvsig.wfs.app / org.gvsig.wfs.app.mainplugin / src / main / java / org / gvsig / fmap / dal / serverexplorer / wfs / WFSServerExplorerFactory.java @ 416

History | View | Annotate | Download (1023 Bytes)

1

    
2
package org.gvsig.fmap.dal.serverexplorer.wfs;
3

    
4
import org.gvsig.fmap.dal.DataServerExplorer;
5
import org.gvsig.fmap.dal.DataServerExplorerParameters;
6
import org.gvsig.fmap.dal.exception.InitializeException;
7
import org.gvsig.fmap.dal.spi.AbstractDataServerExplorerFactory;
8
import org.gvsig.fmap.dal.spi.DataServerExplorerProviderServices;
9
import org.gvsig.fmap.dal.store.wfs.WFSStoreProvider;
10
import org.gvsig.tools.dynobject.DynObject;
11

    
12
public class WFSServerExplorerFactory extends AbstractDataServerExplorerFactory {
13

    
14
    public WFSServerExplorerFactory() {
15
        super(WFSServerExplorer.NAME, WFSStoreProvider.DESCRIPTION);
16
    }
17
    
18
    @Override
19
    public DynObject createParameters() {
20
        return new WFSServerExplorerParameters();
21
    }
22

    
23
    @Override
24
    public DataServerExplorer create(DataServerExplorerParameters parameters, DataServerExplorerProviderServices explorer) throws InitializeException {
25
        return new WFSServerExplorer((WFSServerExplorerParameters) parameters, explorer);
26
    }
27
    
28
}