mirror of
https://github.com/google/nomulus
synced 2026-09-03 14:46:59 +00:00
Fix Result.Code enum values to use UPPER_CAMEL naming
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=133324460
This commit is contained in:
@@ -16,8 +16,8 @@ package google.registry.flows.poll;
|
||||
|
||||
import static com.google.common.base.Preconditions.checkState;
|
||||
import static google.registry.flows.poll.PollFlowUtils.getPollMessagesQuery;
|
||||
import static google.registry.model.eppoutput.Result.Code.Success;
|
||||
import static google.registry.model.eppoutput.Result.Code.SuccessWithNoMessages;
|
||||
import static google.registry.model.eppoutput.Result.Code.SUCCESS;
|
||||
import static google.registry.model.eppoutput.Result.Code.SUCCESS_WITH_NO_MESSAGES;
|
||||
import static google.registry.model.ofy.ObjectifyService.ofy;
|
||||
import static google.registry.util.DateTimeUtils.isBeforeOrAt;
|
||||
|
||||
@@ -117,9 +117,9 @@ public class PollAckFlow extends LoggedInFlow implements TransactionalFlow {
|
||||
messageCount--;
|
||||
}
|
||||
if (messageCount <= 0) {
|
||||
return createOutput(SuccessWithNoMessages);
|
||||
return createOutput(SUCCESS_WITH_NO_MESSAGES);
|
||||
}
|
||||
return createOutput(Success, null, null, MessageQueueInfo.create(
|
||||
return createOutput(SUCCESS, null, null, MessageQueueInfo.create(
|
||||
null, // eventTime
|
||||
null, // msg
|
||||
messageCount,
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
package google.registry.flows.poll;
|
||||
|
||||
import static google.registry.flows.poll.PollFlowUtils.getPollMessagesQuery;
|
||||
import static google.registry.model.eppoutput.Result.Code.SuccessWithAckMessage;
|
||||
import static google.registry.model.eppoutput.Result.Code.SuccessWithNoMessages;
|
||||
import static google.registry.model.eppoutput.Result.Code.SUCCESS_WITH_ACK_MESSAGE;
|
||||
import static google.registry.model.eppoutput.Result.Code.SUCCESS_WITH_NO_MESSAGES;
|
||||
import static google.registry.util.CollectionUtils.forceEmptyToNull;
|
||||
|
||||
import com.googlecode.objectify.Key;
|
||||
@@ -49,10 +49,10 @@ public class PollRequestFlow extends LoggedInFlow {
|
||||
// Return the oldest message from the queue.
|
||||
PollMessage pollMessage = getPollMessagesQuery(clientId, now).first().now();
|
||||
if (pollMessage == null) {
|
||||
return createOutput(SuccessWithNoMessages);
|
||||
return createOutput(SUCCESS_WITH_NO_MESSAGES);
|
||||
}
|
||||
return createOutput(
|
||||
SuccessWithAckMessage,
|
||||
SUCCESS_WITH_ACK_MESSAGE,
|
||||
forceEmptyToNull(pollMessage.getResponseData()),
|
||||
forceEmptyToNull(pollMessage.getResponseExtensions()),
|
||||
MessageQueueInfo.create(
|
||||
|
||||
Reference in New Issue
Block a user