-
Notifications
You must be signed in to change notification settings - Fork 300
Add List Versions operation in Remote Config #498
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
198 changes: 198 additions & 0 deletions
198
src/main/java/com/google/firebase/remoteconfig/ListVersionsOptions.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,198 @@ | ||
| /* | ||
| * Copyright 2020 Google LLC | ||
| * | ||
| * Licensed 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 com.google.firebase.remoteconfig; | ||
|
|
||
| import static com.google.common.base.Preconditions.checkArgument; | ||
|
|
||
| import java.text.SimpleDateFormat; | ||
| import java.util.Date; | ||
| import java.util.HashMap; | ||
| import java.util.Map; | ||
| import java.util.TimeZone; | ||
|
|
||
| /** | ||
| * A class representing options for Remote Config list versions operation. | ||
| */ | ||
| public final class ListVersionsOptions { | ||
|
|
||
| private final Integer pageSize; | ||
| private final String pageToken; | ||
| private final String endVersionNumber; | ||
| private final String startTime; | ||
| private final String endTime; | ||
|
|
||
| private ListVersionsOptions(Builder builder) { | ||
| if (builder.pageSize != null) { | ||
| checkArgument(builder.pageSize > 0 && builder.pageSize < 301, | ||
| "pageSize must be a number between 1 and 300 (inclusive)."); | ||
| } | ||
| if (builder.endVersionNumber != null) { | ||
| checkArgument(RemoteConfigUtil.isValidVersionNumber(builder.endVersionNumber) | ||
| && (Integer.parseInt(builder.endVersionNumber) > 0), | ||
| "endVersionNumber must be a non-empty string in int64 format and must be" | ||
| + " greater than 0."); | ||
| } | ||
| this.pageSize = builder.pageSize; | ||
| this.pageToken = builder.pageToken; | ||
| this.endVersionNumber = builder.endVersionNumber; | ||
| this.startTime = builder.startTime; | ||
| this.endTime = builder.endTime; | ||
| } | ||
|
|
||
| Map<String, Object> wrapForTransport() { | ||
| Map<String, Object> optionsMap = new HashMap<>(); | ||
| if (this.pageSize != null) { | ||
| optionsMap.put("pageSize", this.pageSize); | ||
| } | ||
| if (this.pageToken != null) { | ||
| optionsMap.put("pageToken", this.pageToken); | ||
| } | ||
| if (this.endVersionNumber != null) { | ||
| optionsMap.put("endVersionNumber", this.endVersionNumber); | ||
| } | ||
| if (this.startTime != null) { | ||
| optionsMap.put("startTime", this.startTime); | ||
| } | ||
| if (this.endTime != null) { | ||
| optionsMap.put("endTime", this.endTime); | ||
| } | ||
| return optionsMap; | ||
| } | ||
|
|
||
| String getPageToken() { | ||
| return pageToken; | ||
| } | ||
|
|
||
| /** | ||
| * Creates a new {@link ListVersionsOptions.Builder}. | ||
| * | ||
| * @return A {@link ListVersionsOptions.Builder} instance. | ||
| */ | ||
| public static Builder builder() { | ||
| return new Builder(); | ||
| } | ||
|
|
||
| /** | ||
| * Creates a new {@code Builder} from the options object. | ||
| * | ||
| * <p>The new builder is not backed by this object's values; that is, changes made to the new | ||
| * builder don't change the values of the origin object. | ||
| */ | ||
| public Builder toBuilder() { | ||
| return new Builder(this); | ||
| } | ||
|
|
||
| public static class Builder { | ||
| private Integer pageSize; | ||
| private String pageToken; | ||
| private String endVersionNumber; | ||
| private String startTime; | ||
| private String endTime; | ||
|
|
||
| private Builder() {} | ||
|
|
||
| private Builder(ListVersionsOptions options) { | ||
| this.pageSize = options.pageSize; | ||
| this.pageToken = options.pageToken; | ||
| this.endVersionNumber = options.endVersionNumber; | ||
| this.startTime = options.startTime; | ||
| this.endTime = options.endTime; | ||
| } | ||
|
|
||
| /** | ||
| * Sets the page size. | ||
| * | ||
| * @param pageSize The maximum number of items to return per page. | ||
| * @return This builder. | ||
| */ | ||
| public Builder setPageSize(int pageSize) { | ||
| this.pageSize = pageSize; | ||
| return this; | ||
| } | ||
|
|
||
| /** | ||
| * Sets the page token. | ||
| * | ||
| * @param pageToken The {@code nextPageToken} value returned from a previous List request, | ||
| * if any. | ||
| * @return This builder. | ||
| */ | ||
| public Builder setPageToken(String pageToken) { | ||
| this.pageToken = pageToken; | ||
| return this; | ||
| } | ||
|
|
||
| /** | ||
| * Sets the newest version number to include in the results. | ||
| * | ||
| * @param endVersionNumber Specify the newest version number to include in the results. | ||
| * If specified, must be greater than zero. Defaults to the newest | ||
| * version. | ||
| * @return This builder. | ||
| */ | ||
| public Builder setEndVersionNumber(String endVersionNumber) { | ||
| this.endVersionNumber = endVersionNumber; | ||
| return this; | ||
| } | ||
|
|
||
| /** | ||
| * Sets the newest version number to include in the results. | ||
| * | ||
| * @param endVersionNumber Specify the newest version number to include in the results. | ||
| * If specified, must be greater than zero. Defaults to the newest | ||
| * version. | ||
| * @return This builder. | ||
| */ | ||
| public Builder setEndVersionNumber(long endVersionNumber) { | ||
| this.endVersionNumber = String.valueOf(endVersionNumber);; | ||
| return this; | ||
| } | ||
|
|
||
| /** | ||
| * Sets the earliest update time to include in the results. | ||
| * | ||
| * @param startTimeMillis Specify the earliest update time to include in the results. | ||
| * Any entries updated before this time are omitted. | ||
| * @return This builder. | ||
| */ | ||
| public Builder setStartTimeMillis(long startTimeMillis) { | ||
| this.startTime = RemoteConfigUtil.convertToUtcZuluFormat(startTimeMillis); | ||
| return this; | ||
| } | ||
|
|
||
| /** | ||
| * Sets the latest update time to include in the results. | ||
| * | ||
| * @param endTimeMillis Specify the latest update time to include in the results. | ||
| * Any entries updated on or after this time are omitted. | ||
| * @return This builder. | ||
| */ | ||
| public Builder setEndTimeMillis(long endTimeMillis) { | ||
| this.endTime = RemoteConfigUtil.convertToUtcZuluFormat(endTimeMillis); | ||
| return this; | ||
| } | ||
|
|
||
| /** | ||
| * Builds a new {@link ListVersionsOptions} instance from the fields set on this builder. | ||
| * | ||
| * @return A non-null {@link ListVersionsOptions}. | ||
| */ | ||
| public ListVersionsOptions build() { | ||
| return new ListVersionsOptions(this); | ||
| } | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.