Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

docs(regen): update javadoc from protoc update #13

Merged
merged 1 commit into from Dec 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -46,6 +46,12 @@ private CheckValidCredsRequest() {
name_ = "";
}

@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new CheckValidCredsRequest();
}

@java.lang.Override
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
Expand All @@ -59,7 +65,6 @@ private CheckValidCredsRequest(
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
Expand Down Expand Up @@ -125,6 +130,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
* <code>
* string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* </code>
*
* @return The name.
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
Expand All @@ -149,6 +156,8 @@ public java.lang.String getName() {
* <code>
* string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* </code>
*
* @return The bytes for name.
*/
public com.google.protobuf.ByteString getNameBytes() {
java.lang.Object ref = name_;
Expand Down Expand Up @@ -503,6 +512,8 @@ public Builder mergeFrom(
* <code>
* string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* </code>
*
* @return The name.
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
Expand All @@ -527,6 +538,8 @@ public java.lang.String getName() {
* <code>
* string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* </code>
*
* @return The bytes for name.
*/
public com.google.protobuf.ByteString getNameBytes() {
java.lang.Object ref = name_;
Expand All @@ -551,6 +564,9 @@ public com.google.protobuf.ByteString getNameBytes() {
* <code>
* string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* </code>
*
* @param value The name to set.
* @return This builder for chaining.
*/
public Builder setName(java.lang.String value) {
if (value == null) {
Expand All @@ -573,6 +589,8 @@ public Builder setName(java.lang.String value) {
* <code>
* string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* </code>
*
* @return This builder for chaining.
*/
public Builder clearName() {

Expand All @@ -592,6 +610,9 @@ public Builder clearName() {
* <code>
* string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* </code>
*
* @param value The bytes for name to set.
* @return This builder for chaining.
*/
public Builder setNameBytes(com.google.protobuf.ByteString value) {
if (value == null) {
Expand Down
Expand Up @@ -35,6 +35,8 @@ public interface CheckValidCredsRequestOrBuilder
* <code>
* string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* </code>
*
* @return The name.
*/
java.lang.String getName();
/**
Expand All @@ -49,6 +51,8 @@ public interface CheckValidCredsRequestOrBuilder
* <code>
* string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* </code>
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
}
Expand Up @@ -39,6 +39,12 @@ private CheckValidCredsResponse(com.google.protobuf.GeneratedMessageV3.Builder<?

private CheckValidCredsResponse() {}

@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new CheckValidCredsResponse();
}

@java.lang.Override
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
Expand All @@ -52,7 +58,6 @@ private CheckValidCredsResponse(
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
Expand Down Expand Up @@ -112,6 +117,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
* </pre>
*
* <code>bool has_valid_creds = 1;</code>
*
* @return The hasValidCreds.
*/
public boolean getHasValidCreds() {
return hasValidCreds_;
Expand Down Expand Up @@ -450,6 +457,8 @@ public Builder mergeFrom(
* </pre>
*
* <code>bool has_valid_creds = 1;</code>
*
* @return The hasValidCreds.
*/
public boolean getHasValidCreds() {
return hasValidCreds_;
Expand All @@ -462,6 +471,9 @@ public boolean getHasValidCreds() {
* </pre>
*
* <code>bool has_valid_creds = 1;</code>
*
* @param value The hasValidCreds to set.
* @return This builder for chaining.
*/
public Builder setHasValidCreds(boolean value) {

Expand All @@ -477,6 +489,8 @@ public Builder setHasValidCreds(boolean value) {
* </pre>
*
* <code>bool has_valid_creds = 1;</code>
*
* @return This builder for chaining.
*/
public Builder clearHasValidCreds() {

Expand Down
Expand Up @@ -31,6 +31,8 @@ public interface CheckValidCredsResponseOrBuilder
* </pre>
*
* <code>bool has_valid_creds = 1;</code>
*
* @return The hasValidCreds.
*/
boolean getHasValidCreds();
}