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

nl.tweeenveertig.openstack.client.mock.MockInputStreamWrapper Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
package nl.tweeenveertig.openstack.client.mock;

import nl.tweeenveertig.openstack.command.object.InputStreamWrapper;

import java.io.IOException;
import java.io.InputStream;

public class MockInputStreamWrapper extends InputStreamWrapper {

    public MockInputStreamWrapper(InputStream inputStream) {
        super(null, inputStream);
    }

    @Override
    public void close() throws IOException {
        inputStream.close();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy