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

com.nhl.link.rest.client.ClientSimpleResponse Maven / Gradle / Ivy

There is a newer version: 2.13
Show newest version
package com.nhl.link.rest.client;

import javax.ws.rs.core.Response.Status;

/**
 * @since 2.0
 */
public class ClientSimpleResponse {

    private Status status;

    public ClientSimpleResponse(Status status) {
        this.status = status;
    }

    public Status getStatus() {
        return status;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy