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

com.emailage.javawrapper.utilities.AutoCloseableHttpsUrlConnection Maven / Gradle / Ivy

There is a newer version: 1.2.4
Show newest version
package com.emailage.javawrapper.utilities;

import javax.net.ssl.HttpsURLConnection;

/**
 * Simple wrapper for a connection to disconnect the connection when the resource block is exited.
 */
public class AutoCloseableHttpsUrlConnection implements AutoCloseable {
    private HttpsURLConnection connection;
    public AutoCloseableHttpsUrlConnection(HttpsURLConnection connection)
    {
        this.connection = connection;
    }
    @Override
    public void close() throws Exception {
        this.connection.disconnect();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy