All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.carepay.jdbc.util.DBHttpURLConnection Maven / Gradle / Ivy

package com.carepay.jdbc.util;

import java.net.HttpURLConnection;
import java.net.URL;

/**
 * Wrapper class for HttpURLConnection, used for RDS-DB signing requests.
 */
public class DBHttpURLConnection extends HttpURLConnection {

    public DBHttpURLConnection(final URL u) {
        super(u);
    }

    @Override
    public void disconnect() {
        // not needed for DB wrapper
    }

    @Override
    public boolean usingProxy() {
        return false;
    }

    @Override
    public void connect() {
        // not needed for DB wrapper
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy