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

net.accelbyte.sdk.api.qosm.operations.server.Heartbeat Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2022 AccelByte Inc. All Rights Reserved
 * This is licensed software from AccelByte Inc, for limitations
 * and restrictions contact your company contract manager.
 *
 * Code generated. DO NOT EDIT.
 */

package net.accelbyte.sdk.api.qosm.operations.server;

import java.io.*;
import java.util.*;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import net.accelbyte.sdk.api.qosm.models.*;
import net.accelbyte.sdk.core.HttpResponseException;
import net.accelbyte.sdk.core.Operation;
import net.accelbyte.sdk.core.util.Helper;

/**
 * Heartbeat
 *
 * 

``` Required permission: QOS:SERVER [CREATE][UPDATE] Required scope: social * *

This endpoint is intended to be called by QoS service to register and periodically let QoS * Manager know that it is still alive. ``` */ @Getter @Setter public class Heartbeat extends Operation { /** generated field's value */ private String path = "/qosm/servers/heartbeat"; private String method = "POST"; private List consumes = Arrays.asList("application/json"); private List produces = Arrays.asList("application/json"); private String locationQuery = null; /** fields as input parameter */ private ModelsHeartbeatRequest body; /** * @param body required */ @Builder // @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead. @Deprecated public Heartbeat(ModelsHeartbeatRequest body) { this.body = body; securities.add("Bearer"); } @Override public ModelsHeartbeatRequest getBodyParams() { return this.body; } @Override public boolean isValid() { return true; } public void handleEmptyResponse(int code, String contentType, InputStream payload) throws HttpResponseException, IOException { if (code != 204) { final String json = Helper.convertInputStreamToString(payload); throw new HttpResponseException(code, json); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy