Package org.apache.jena.jdbc.remote.metadata

Source Code of org.apache.jena.jdbc.remote.metadata.RemoteEndpointMetadata

/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.jena.jdbc.remote.metadata;

import java.sql.Connection;
import java.sql.SQLException;

import org.apache.jena.jdbc.JenaJDBC;
import org.apache.jena.jdbc.metadata.JenaMetadata;
import org.apache.jena.jdbc.remote.connections.RemoteEndpointConnection;

import com.hp.hpl.jena.sparql.util.Version;

/**
* Represents metadata about connections to remote endpoints
*
*/
public class RemoteEndpointMetadata extends JenaMetadata {

    private Version jdbc;
    @SuppressWarnings("unused")
    private RemoteEndpointConnection remoteConn;

    /**
     * Creates new metadata
     *
     * @param connection
     *            Remote Endpoint connection
     * @throws SQLException
     */
    public RemoteEndpointMetadata(RemoteEndpointConnection connection) throws SQLException {
        super(connection);
        this.jdbc = new Version();
        this.jdbc.addClass(JenaJDBC.class);
        this.remoteConn = connection;
    }

    @Override
    public boolean supportsTransactionIsolationLevel(int isolationLevel) throws SQLException {
        // No transactions supported for remote endpoints
        switch (isolationLevel) {
        case Connection.TRANSACTION_NONE:
            return true;
        default:
            return false;
        }
    }

    @Override
    public int getDatabaseMajorVersion() throws SQLException {
        // Underlying database is unknown
        return 0;
    }

    @Override
    public int getDatabaseMinorVersion() throws SQLException {
        // Underlying database is unknown
        return 0;
    }

    @Override
    public String getDatabaseProductName() throws SQLException {
        return "";
    }

    @Override
    public String getDatabaseProductVersion() throws SQLException {
        // Underlying database is unknown
        return "";
    }

    @Override
    public int getDriverMajorVersion() {
        return 0;
    }

    @Override
    public int getDriverMinorVersion() {
        return 1;
    }

    @Override
    public String getDriverName() throws SQLException {
        return "Apache Jena - JDBC - Remote Endpoint Driver";
    }

    @Override
    public String getDriverVersion() throws SQLException {
        return jdbc.toString();
    }

    @Override
    public String getURL() throws SQLException {
        // Underlying database is unknown
        return null;
    }

    @Override
    public String getUserName() throws SQLException {
        // Even though we may be using a HTTP authenticator that may not be
        // using a user name based login method and regardless for security
        // reasons the authenticator APIs don't expose the underlying
        // credentials in any way
        return null;
    }

    @Override
    public boolean usesLocalFilePerTable() throws SQLException {
        // Remote endpoints don't use local files
        return false;
    }

    @Override
    public boolean usesLocalFiles() throws SQLException {
        // Remote endpoints don't use local files
        return false;
    }
}
TOP

Related Classes of org.apache.jena.jdbc.remote.metadata.RemoteEndpointMetadata

TOP
Copyright © 2018 www.massapi.com. 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.