mx.emite.sdk.clientes.RespuestaHttp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ef-sdk-java Show documentation
Show all versions of ef-sdk-java Show documentation
Este kit de consumo provee a los integradores de Apis de Java para construir software que consuma los diferentes servicios web publicados por Emite Facturacion
The newest version!
package mx.emite.sdk.clientes;
import lombok.Data;
@Data
public class RespuestaHttp {
private static final String JSON_MIME_TYPE = "application/json";
private String contentType;
private int statusCode;
private String body;
public boolean isJson() {
return this.contentType != null && this.contentType.startsWith(JSON_MIME_TYPE);
}
}