de.mklinger.qetcher.liferay.client.impl.NonClosingQetcherClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qetcher-adapter-liferay-71 Show documentation
Show all versions of qetcher-adapter-liferay-71 Show documentation
Qetcher Liferay 7.1.x Adapter
The newest version!
package de.mklinger.qetcher.liferay.client.impl;
import de.mklinger.qetcher.client.QetcherClient;
/**
* @author Marc Klinger - mklinger[at]mklinger[dot]de
*/
public class NonClosingQetcherClient extends QetcherClientWrapper {
public NonClosingQetcherClient(final QetcherClient delegate) {
super(delegate);
}
@Override
public void close() {
// Do nothing
}
public void reallyClose() {
super.close();
}
}