net.accelbyte.sdk.core.SDKInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
AccelByte Gaming Services Java Extend SDK generated from OpenAPI specs
/*
* Copyright (c) 2022 AccelByte Inc. All Rights Reserved
* This is licensed software from AccelByte Inc, for limitations
* and restrictions contact your company contract manager.
*/
package net.accelbyte.sdk.core;
import lombok.Getter;
@Getter
public class SDKInfo {
private static final SDKInfo instance = new SDKInfo();
private String sdkName = "AccelByteJavaSDK";
private String sdkVersion = "0.46.0";
private SDKInfo() {}
public static SDKInfo getInstance() {
return instance;
}
}