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

com.mageddo.common.resteasy.RestEasyClient Maven / Gradle / Ivy

package com.mageddo.common.resteasy;

import javax.ws.rs.client.Client;

/**
 * Simple wrapper for ReasyEasy where it is AutoClosable
 */
public class RestEasyClient implements AutoCloseable {

	private final Client client;

	public RestEasyClient(Client client) {
		this.client = client;
	}

	public Client getClient() {
		return client;
	}

	@Override
	public void close() {
		client.close();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy