|
30 | 30 | abstract class AppDistributionReleaseInternal {
|
31 | 31 |
|
32 | 32 | @NonNull
|
33 |
| - public static Builder builder() { |
| 33 | + static Builder builder() { |
34 | 34 | return new AutoValue_AppDistributionReleaseInternal.Builder();
|
35 | 35 | }
|
36 | 36 |
|
37 | 37 | /** The short bundle version of this build (example 1.0.0) */
|
38 | 38 | @NonNull
|
39 |
| - public abstract String getDisplayVersion(); |
| 39 | + abstract String getDisplayVersion(); |
40 | 40 |
|
41 | 41 | /** The bundle version of this build (example: 123) */
|
42 | 42 | @NonNull
|
43 |
| - public abstract String getBuildVersion(); |
| 43 | + abstract String getBuildVersion(); |
44 | 44 |
|
45 | 45 | /** The release notes for this build */
|
46 | 46 | @Nullable
|
47 |
| - public abstract String getReleaseNotes(); |
| 47 | + abstract String getReleaseNotes(); |
48 | 48 |
|
49 | 49 | /** The binary type for this build */
|
50 | 50 | @NonNull
|
51 |
| - public abstract BinaryType getBinaryType(); |
| 51 | + abstract BinaryType getBinaryType(); |
52 | 52 |
|
53 | 53 | /** Hash of binary of an Android app */
|
54 | 54 | @Nullable
|
55 |
| - public abstract String getCodeHash(); |
| 55 | + abstract String getCodeHash(); |
56 | 56 |
|
57 | 57 | /** Efficient hash of an Android apk. Used to identify a release */
|
58 | 58 | @Nullable
|
59 |
| - public abstract String getApkHash(); |
| 59 | + abstract String getApkHash(); |
60 | 60 |
|
61 | 61 | /**
|
62 | 62 | * IAS artifact id. This value is inserted into the manifest of APK's installed via Used to map a
|
63 | 63 | * release to an APK installed via an app bundle
|
64 | 64 | */
|
65 | 65 | @Nullable
|
66 |
| - public abstract String getIasArtifactId(); |
| 66 | + abstract String getIasArtifactId(); |
67 | 67 |
|
68 | 68 | /** Short-lived download URL */
|
69 | 69 | @Nullable
|
70 |
| - public abstract String getDownloadUrl(); |
| 70 | + abstract String getDownloadUrl(); |
71 | 71 |
|
72 | 72 | /** Builder for {@link AppDistributionReleaseInternal}. */
|
73 | 73 | @AutoValue.Builder
|
74 |
| - public abstract static class Builder { |
| 74 | + abstract static class Builder { |
75 | 75 |
|
76 | 76 | @NonNull
|
77 |
| - public abstract Builder setDisplayVersion(@NonNull String value); |
| 77 | + abstract Builder setDisplayVersion(@NonNull String value); |
78 | 78 |
|
79 | 79 | @NonNull
|
80 |
| - public abstract Builder setBuildVersion(@NonNull String value); |
| 80 | + abstract Builder setBuildVersion(@NonNull String value); |
81 | 81 |
|
82 | 82 | @NonNull
|
83 |
| - public abstract Builder setReleaseNotes(@Nullable String value); |
| 83 | + abstract Builder setReleaseNotes(@Nullable String value); |
84 | 84 |
|
85 | 85 | @NonNull
|
86 |
| - public abstract Builder setBinaryType(@NonNull BinaryType value); |
| 86 | + abstract Builder setBinaryType(@NonNull BinaryType value); |
87 | 87 |
|
88 | 88 | @NonNull
|
89 |
| - public abstract Builder setCodeHash(@NonNull String value); |
| 89 | + abstract Builder setCodeHash(@NonNull String value); |
90 | 90 |
|
91 | 91 | @NonNull
|
92 |
| - public abstract Builder setApkHash(@NonNull String value); |
| 92 | + abstract Builder setApkHash(@NonNull String value); |
93 | 93 |
|
94 | 94 | @NonNull
|
95 |
| - public abstract Builder setIasArtifactId(@NonNull String value); |
| 95 | + abstract Builder setIasArtifactId(@NonNull String value); |
96 | 96 |
|
97 | 97 | @NonNull
|
98 |
| - public abstract Builder setDownloadUrl(@NonNull String value); |
| 98 | + abstract Builder setDownloadUrl(@NonNull String value); |
99 | 99 |
|
100 | 100 | @NonNull
|
101 |
| - public abstract AppDistributionReleaseInternal build(); |
| 101 | + abstract AppDistributionReleaseInternal build(); |
102 | 102 | }
|
103 | 103 | }
|
0 commit comments