net.accelbyte.sdk.api.dsmc.operations.server.GetServerSession Maven / Gradle / Ivy
Show all versions of sdk Show documentation
/*
* 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.dsmc.operations.server;
import java.io.*;
import java.util.*;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import net.accelbyte.sdk.api.dsmc.models.*;
import net.accelbyte.sdk.core.HttpResponseException;
import net.accelbyte.sdk.core.Operation;
import net.accelbyte.sdk.core.util.Helper;
/**
* GetServerSession
*
* ``` Required permission: NAMESPACE:{namespace}:DSM:SERVER [UPDATE] Required scope: social
*
*
This endpoint is intended to be called by dedicated server to query its session ID. DS should
* call this when it first receive player connection, to see if it is actually claimed```
*/
@Getter
@Setter
public class GetServerSession extends Operation {
/** generated field's value */
private String path = "/dsmcontroller/namespaces/{namespace}/servers/{podName}/session";
private String method = "GET";
private List consumes = Arrays.asList("application/json");
private List produces = Arrays.asList("application/json");
private String locationQuery = null;
/** fields as input parameter */
private String namespace;
private String podName;
/**
* @param namespace required
* @param podName required
*/
@Builder
// @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead.
@Deprecated
public GetServerSession(String namespace, String podName) {
this.namespace = namespace;
this.podName = podName;
securities.add("Bearer");
}
@Override
public Map getPathParams() {
Map pathParams = new HashMap<>();
if (this.namespace != null) {
pathParams.put("namespace", this.namespace);
}
if (this.podName != null) {
pathParams.put("podName", this.podName);
}
return pathParams;
}
@Override
public boolean isValid() {
if (this.namespace == null) {
return false;
}
if (this.podName == null) {
return false;
}
return true;
}
public ModelsServerSessionResponse parseResponse(
int code, String contentType, InputStream payload) throws HttpResponseException, IOException {
if (code != 200) {
final String json = Helper.convertInputStreamToString(payload);
throw new HttpResponseException(code, json);
}
final String json = Helper.convertInputStreamToString(payload);
return new ModelsServerSessionResponse().createFromJson(json);
}
}