com.dimajix.flowman.kernel.proto.test.GetTestRequest Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: test.proto
package com.dimajix.flowman.kernel.proto.test;
/**
* Protobuf type {@code com.dimajix.flowman.kernel.test.GetTestRequest}
*/
public final class GetTestRequest extends
com.dimajix.shaded.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:com.dimajix.flowman.kernel.test.GetTestRequest)
GetTestRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use GetTestRequest.newBuilder() to construct.
private GetTestRequest(com.dimajix.shaded.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private GetTestRequest() {
sessionId_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new GetTestRequest();
}
public static final com.dimajix.shaded.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.dimajix.flowman.kernel.proto.test.TestProto.internal_static_com_dimajix_flowman_kernel_test_GetTestRequest_descriptor;
}
@java.lang.Override
protected com.dimajix.shaded.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.dimajix.flowman.kernel.proto.test.TestProto.internal_static_com_dimajix_flowman_kernel_test_GetTestRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.dimajix.flowman.kernel.proto.test.GetTestRequest.class, com.dimajix.flowman.kernel.proto.test.GetTestRequest.Builder.class);
}
public static final int SESSIONID_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object sessionId_ = "";
/**
* string sessionId = 1;
* @return The sessionId.
*/
@java.lang.Override
public java.lang.String getSessionId() {
java.lang.Object ref = sessionId_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.dimajix.shaded.protobuf.ByteString bs =
(com.dimajix.shaded.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
sessionId_ = s;
return s;
}
}
/**
* string sessionId = 1;
* @return The bytes for sessionId.
*/
@java.lang.Override
public com.dimajix.shaded.protobuf.ByteString
getSessionIdBytes() {
java.lang.Object ref = sessionId_;
if (ref instanceof java.lang.String) {
com.dimajix.shaded.protobuf.ByteString b =
com.dimajix.shaded.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
sessionId_ = b;
return b;
} else {
return (com.dimajix.shaded.protobuf.ByteString) ref;
}
}
public static final int TEST_FIELD_NUMBER = 2;
private com.dimajix.flowman.kernel.proto.TestIdentifier test_;
/**
* .com.dimajix.flowman.kernel.TestIdentifier test = 2;
* @return Whether the test field is set.
*/
@java.lang.Override
public boolean hasTest() {
return test_ != null;
}
/**
* .com.dimajix.flowman.kernel.TestIdentifier test = 2;
* @return The test.
*/
@java.lang.Override
public com.dimajix.flowman.kernel.proto.TestIdentifier getTest() {
return test_ == null ? com.dimajix.flowman.kernel.proto.TestIdentifier.getDefaultInstance() : test_;
}
/**
* .com.dimajix.flowman.kernel.TestIdentifier test = 2;
*/
@java.lang.Override
public com.dimajix.flowman.kernel.proto.TestIdentifierOrBuilder getTestOrBuilder() {
return test_ == null ? com.dimajix.flowman.kernel.proto.TestIdentifier.getDefaultInstance() : test_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.dimajix.shaded.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!com.dimajix.shaded.protobuf.GeneratedMessageV3.isStringEmpty(sessionId_)) {
com.dimajix.shaded.protobuf.GeneratedMessageV3.writeString(output, 1, sessionId_);
}
if (test_ != null) {
output.writeMessage(2, getTest());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.dimajix.shaded.protobuf.GeneratedMessageV3.isStringEmpty(sessionId_)) {
size += com.dimajix.shaded.protobuf.GeneratedMessageV3.computeStringSize(1, sessionId_);
}
if (test_ != null) {
size += com.dimajix.shaded.protobuf.CodedOutputStream
.computeMessageSize(2, getTest());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.dimajix.flowman.kernel.proto.test.GetTestRequest)) {
return super.equals(obj);
}
com.dimajix.flowman.kernel.proto.test.GetTestRequest other = (com.dimajix.flowman.kernel.proto.test.GetTestRequest) obj;
if (!getSessionId()
.equals(other.getSessionId())) return false;
if (hasTest() != other.hasTest()) return false;
if (hasTest()) {
if (!getTest()
.equals(other.getTest())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + SESSIONID_FIELD_NUMBER;
hash = (53 * hash) + getSessionId().hashCode();
if (hasTest()) {
hash = (37 * hash) + TEST_FIELD_NUMBER;
hash = (53 * hash) + getTest().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.dimajix.flowman.kernel.proto.test.GetTestRequest parseFrom(
java.nio.ByteBuffer data)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.dimajix.flowman.kernel.proto.test.GetTestRequest parseFrom(
java.nio.ByteBuffer data,
com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.dimajix.flowman.kernel.proto.test.GetTestRequest parseFrom(
com.dimajix.shaded.protobuf.ByteString data)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.dimajix.flowman.kernel.proto.test.GetTestRequest parseFrom(
com.dimajix.shaded.protobuf.ByteString data,
com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.dimajix.flowman.kernel.proto.test.GetTestRequest parseFrom(byte[] data)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.dimajix.flowman.kernel.proto.test.GetTestRequest parseFrom(
byte[] data,
com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.dimajix.flowman.kernel.proto.test.GetTestRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.dimajix.flowman.kernel.proto.test.GetTestRequest parseFrom(
java.io.InputStream input,
com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static com.dimajix.flowman.kernel.proto.test.GetTestRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.dimajix.flowman.kernel.proto.test.GetTestRequest parseDelimitedFrom(
java.io.InputStream input,
com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static com.dimajix.flowman.kernel.proto.test.GetTestRequest parseFrom(
com.dimajix.shaded.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.dimajix.flowman.kernel.proto.test.GetTestRequest parseFrom(
com.dimajix.shaded.protobuf.CodedInputStream input,
com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.dimajix.flowman.kernel.proto.test.GetTestRequest prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.dimajix.shaded.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code com.dimajix.flowman.kernel.test.GetTestRequest}
*/
public static final class Builder extends
com.dimajix.shaded.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:com.dimajix.flowman.kernel.test.GetTestRequest)
com.dimajix.flowman.kernel.proto.test.GetTestRequestOrBuilder {
public static final com.dimajix.shaded.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.dimajix.flowman.kernel.proto.test.TestProto.internal_static_com_dimajix_flowman_kernel_test_GetTestRequest_descriptor;
}
@java.lang.Override
protected com.dimajix.shaded.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.dimajix.flowman.kernel.proto.test.TestProto.internal_static_com_dimajix_flowman_kernel_test_GetTestRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.dimajix.flowman.kernel.proto.test.GetTestRequest.class, com.dimajix.flowman.kernel.proto.test.GetTestRequest.Builder.class);
}
// Construct using com.dimajix.flowman.kernel.proto.test.GetTestRequest.newBuilder()
private Builder() {
}
private Builder(
com.dimajix.shaded.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
sessionId_ = "";
test_ = null;
if (testBuilder_ != null) {
testBuilder_.dispose();
testBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.dimajix.shaded.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.dimajix.flowman.kernel.proto.test.TestProto.internal_static_com_dimajix_flowman_kernel_test_GetTestRequest_descriptor;
}
@java.lang.Override
public com.dimajix.flowman.kernel.proto.test.GetTestRequest getDefaultInstanceForType() {
return com.dimajix.flowman.kernel.proto.test.GetTestRequest.getDefaultInstance();
}
@java.lang.Override
public com.dimajix.flowman.kernel.proto.test.GetTestRequest build() {
com.dimajix.flowman.kernel.proto.test.GetTestRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.dimajix.flowman.kernel.proto.test.GetTestRequest buildPartial() {
com.dimajix.flowman.kernel.proto.test.GetTestRequest result = new com.dimajix.flowman.kernel.proto.test.GetTestRequest(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(com.dimajix.flowman.kernel.proto.test.GetTestRequest result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.sessionId_ = sessionId_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.test_ = testBuilder_ == null
? test_
: testBuilder_.build();
}
}
@java.lang.Override
public Builder mergeFrom(com.dimajix.shaded.protobuf.Message other) {
if (other instanceof com.dimajix.flowman.kernel.proto.test.GetTestRequest) {
return mergeFrom((com.dimajix.flowman.kernel.proto.test.GetTestRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.dimajix.flowman.kernel.proto.test.GetTestRequest other) {
if (other == com.dimajix.flowman.kernel.proto.test.GetTestRequest.getDefaultInstance()) return this;
if (!other.getSessionId().isEmpty()) {
sessionId_ = other.sessionId_;
bitField0_ |= 0x00000001;
onChanged();
}
if (other.hasTest()) {
mergeTest(other.getTest());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.dimajix.shaded.protobuf.CodedInputStream input,
com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
sessionId_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
input.readMessage(
getTestFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.dimajix.shaded.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object sessionId_ = "";
/**
* string sessionId = 1;
* @return The sessionId.
*/
public java.lang.String getSessionId() {
java.lang.Object ref = sessionId_;
if (!(ref instanceof java.lang.String)) {
com.dimajix.shaded.protobuf.ByteString bs =
(com.dimajix.shaded.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
sessionId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string sessionId = 1;
* @return The bytes for sessionId.
*/
public com.dimajix.shaded.protobuf.ByteString
getSessionIdBytes() {
java.lang.Object ref = sessionId_;
if (ref instanceof String) {
com.dimajix.shaded.protobuf.ByteString b =
com.dimajix.shaded.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
sessionId_ = b;
return b;
} else {
return (com.dimajix.shaded.protobuf.ByteString) ref;
}
}
/**
* string sessionId = 1;
* @param value The sessionId to set.
* @return This builder for chaining.
*/
public Builder setSessionId(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
sessionId_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* string sessionId = 1;
* @return This builder for chaining.
*/
public Builder clearSessionId() {
sessionId_ = getDefaultInstance().getSessionId();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
* string sessionId = 1;
* @param value The bytes for sessionId to set.
* @return This builder for chaining.
*/
public Builder setSessionIdBytes(
com.dimajix.shaded.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
sessionId_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private com.dimajix.flowman.kernel.proto.TestIdentifier test_;
private com.dimajix.shaded.protobuf.SingleFieldBuilderV3<
com.dimajix.flowman.kernel.proto.TestIdentifier, com.dimajix.flowman.kernel.proto.TestIdentifier.Builder, com.dimajix.flowman.kernel.proto.TestIdentifierOrBuilder> testBuilder_;
/**
* .com.dimajix.flowman.kernel.TestIdentifier test = 2;
* @return Whether the test field is set.
*/
public boolean hasTest() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* .com.dimajix.flowman.kernel.TestIdentifier test = 2;
* @return The test.
*/
public com.dimajix.flowman.kernel.proto.TestIdentifier getTest() {
if (testBuilder_ == null) {
return test_ == null ? com.dimajix.flowman.kernel.proto.TestIdentifier.getDefaultInstance() : test_;
} else {
return testBuilder_.getMessage();
}
}
/**
* .com.dimajix.flowman.kernel.TestIdentifier test = 2;
*/
public Builder setTest(com.dimajix.flowman.kernel.proto.TestIdentifier value) {
if (testBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
test_ = value;
} else {
testBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* .com.dimajix.flowman.kernel.TestIdentifier test = 2;
*/
public Builder setTest(
com.dimajix.flowman.kernel.proto.TestIdentifier.Builder builderForValue) {
if (testBuilder_ == null) {
test_ = builderForValue.build();
} else {
testBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* .com.dimajix.flowman.kernel.TestIdentifier test = 2;
*/
public Builder mergeTest(com.dimajix.flowman.kernel.proto.TestIdentifier value) {
if (testBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0) &&
test_ != null &&
test_ != com.dimajix.flowman.kernel.proto.TestIdentifier.getDefaultInstance()) {
getTestBuilder().mergeFrom(value);
} else {
test_ = value;
}
} else {
testBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* .com.dimajix.flowman.kernel.TestIdentifier test = 2;
*/
public Builder clearTest() {
bitField0_ = (bitField0_ & ~0x00000002);
test_ = null;
if (testBuilder_ != null) {
testBuilder_.dispose();
testBuilder_ = null;
}
onChanged();
return this;
}
/**
* .com.dimajix.flowman.kernel.TestIdentifier test = 2;
*/
public com.dimajix.flowman.kernel.proto.TestIdentifier.Builder getTestBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getTestFieldBuilder().getBuilder();
}
/**
* .com.dimajix.flowman.kernel.TestIdentifier test = 2;
*/
public com.dimajix.flowman.kernel.proto.TestIdentifierOrBuilder getTestOrBuilder() {
if (testBuilder_ != null) {
return testBuilder_.getMessageOrBuilder();
} else {
return test_ == null ?
com.dimajix.flowman.kernel.proto.TestIdentifier.getDefaultInstance() : test_;
}
}
/**
* .com.dimajix.flowman.kernel.TestIdentifier test = 2;
*/
private com.dimajix.shaded.protobuf.SingleFieldBuilderV3<
com.dimajix.flowman.kernel.proto.TestIdentifier, com.dimajix.flowman.kernel.proto.TestIdentifier.Builder, com.dimajix.flowman.kernel.proto.TestIdentifierOrBuilder>
getTestFieldBuilder() {
if (testBuilder_ == null) {
testBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.dimajix.flowman.kernel.proto.TestIdentifier, com.dimajix.flowman.kernel.proto.TestIdentifier.Builder, com.dimajix.flowman.kernel.proto.TestIdentifierOrBuilder>(
getTest(),
getParentForChildren(),
isClean());
test_ = null;
}
return testBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.dimajix.shaded.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.dimajix.shaded.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:com.dimajix.flowman.kernel.test.GetTestRequest)
}
// @@protoc_insertion_point(class_scope:com.dimajix.flowman.kernel.test.GetTestRequest)
private static final com.dimajix.flowman.kernel.proto.test.GetTestRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.dimajix.flowman.kernel.proto.test.GetTestRequest();
}
public static com.dimajix.flowman.kernel.proto.test.GetTestRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.dimajix.shaded.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public GetTestRequest parsePartialFrom(
com.dimajix.shaded.protobuf.CodedInputStream input,
com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.dimajix.shaded.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.dimajix.shaded.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.dimajix.shaded.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.dimajix.shaded.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.dimajix.flowman.kernel.proto.test.GetTestRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy