io.github.yawenok.fcm.client.enums.ErrorCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fcm-client Show documentation
Show all versions of fcm-client Show documentation
FCM client for java!Based on HttpAsyncClient.
The newest version!
package io.github.yawenok.fcm.client.enums;
import com.alibaba.fastjson.annotation.JSONField;
public enum ErrorCode {
@JSONField(name = "MissingRegistration")
MissingRegistration,
@JSONField(name = "InvalidRegistration")
InvalidRegistration,
@JSONField(name = "NotRegistered")
NotRegistered,
@JSONField(name = "InvalidPackageName")
InvalidPackageName,
@JSONField(name = "MismatchSenderId")
MismatchSenderId,
@JSONField(name = "InvalidParameters")
InvalidParameters,
@JSONField(name = "MessageTooBig")
MessageTooBig,
@JSONField(name = "InvalidDataKey")
InvalidDataKey,
@JSONField(name = "InvalidTtl")
InvalidTtl,
@JSONField(name = "Unavailable")
Unavailable,
@JSONField(name = "InternalServerError")
InternalServerError,
@JSONField(name = "DeviceMessageRateExceeded")
DeviceMessageRateExceeded,
@JSONField(name = "TopicsMessageRateExceeded")
TopicsMessageRateExceeded,
@JSONField(name = "InvalidApnsCredential")
InvalidApnsCredential
}