blob: bf52237ee29b4f24dcee83bbbacf2913af9e1840 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.fineract.infrastructure.gcm.domain;
import java.io.Serializable;
import java.util.List;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
/**
* Result of a GCM message request that returned HTTP status code 200.
*
* <p>
* If the message is successfully created, the {@link #getMessageId()} returns the message id and
* {@link #getErrorCode()} returns {@literal null}; otherwise, {@link #getMessageId()} returns {@literal null} and
* {@link #getErrorCode()} returns the code of the error.
*
* <p>
* There are cases when a request is accept and the message successfully created, but GCM has a canonical registration
* id for that device. In this case, the server should update the registration id to avoid rejected requests in the
* future.
*
* <p>
* In a nutshell, the workflow to handle a result is:
*
* <pre>
* - Call {@link #getMessageId()}:
* - {@literal null} means error, call {@link #getErrorCode()}
* - non-{@literal null} means the message was created:
* - Call {@link #getCanonicalRegistrationId()}
* - if it returns {@literal null}, do nothing.
* - otherwise, update the server datastore with the new id.
* </pre>
*/
@Data
@NoArgsConstructor
@Accessors(chain = true)
public final class Result implements Serializable {
private static final long serialVersionUID = 1L;
private String messageId;
private String canonicalRegistrationId;
private String errorCode;
private Integer success;
private Integer failure;
private List<String> failedRegistrationIds;
private int status;
public static final class Builder {
// optional parameters
private String messageId;
private String canonicalRegistrationId;
private String errorCode;
private Integer success;
private Integer failure;
private List<String> failedRegistrationIds;
private int status;
public Builder canonicalRegistrationId(String value) {
canonicalRegistrationId = value;
return this;
}
public Builder messageId(String value) {
messageId = value;
return this;
}
public Builder errorCode(String value) {
errorCode = value;
return this;
}
public Builder success(Integer value) {
success = value;
return this;
}
public Builder failure(Integer value) {
failure = value;
return this;
}
public Builder status(int value) {
status = value;
return this;
}
public Builder failedRegistrationIds(List<String> value) {
failedRegistrationIds = value;
return this;
}
public Result build() {
return new Result(this);
}
}
private Result(Builder builder) {
canonicalRegistrationId = builder.canonicalRegistrationId;
messageId = builder.messageId;
errorCode = builder.errorCode;
success = builder.success;
failure = builder.failure;
failedRegistrationIds = builder.failedRegistrationIds;
status = builder.status;
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder("[");
if (messageId != null) {
builder.append(" messageId=").append(messageId);
}
if (canonicalRegistrationId != null) {
builder.append(" canonicalRegistrationId=").append(canonicalRegistrationId);
}
if (errorCode != null) {
builder.append(" errorCode=").append(errorCode);
}
if (success != null) {
builder.append(" groupSuccess=").append(success);
}
if (failure != null) {
builder.append(" groupFailure=").append(failure);
}
if (failedRegistrationIds != null) {
builder.append(" failedRegistrationIds=").append(failedRegistrationIds);
}
return builder.append(" ]").toString();
}
}