Package org.locationtech.udig.catalog.internal.oracle

Examples of org.locationtech.udig.catalog.internal.oracle.OracleServiceImpl


public class OracleSpatialConnectionFactory extends AbstractUDIGConnectionFactory {

    @Override
    protected Map<String, Serializable> doCreateConnectionParameters( Object context ) {
        if( context instanceof OracleServiceImpl ){
            OracleServiceImpl oracle = (OracleServiceImpl) context;
            return oracle.getConnectionParams();
        }
        // we need to check the provided object (probably a URL)
        // and ensure it is ment for us
        ID id = ID.cast( context );
        if( id.toString().indexOf("oracle") != -1){
View Full Code Here

TOP

Related Classes of org.locationtech.udig.catalog.internal.oracle.OracleServiceImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.