All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.stigg.sidecar.proto.v1.GetEntitlementsRequest Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: stigg/sidecar/v1/sidecar.proto
package io.stigg.sidecar.proto.v1;
/** Protobuf type {@code stigg.sidecar.v1.GetEntitlementsRequest} */
public final class GetEntitlementsRequest extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:stigg.sidecar.v1.GetEntitlementsRequest)
GetEntitlementsRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use GetEntitlementsRequest.newBuilder() to construct.
private GetEntitlementsRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private GetEntitlementsRequest() {
customerId_ = "";
resourceId_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new GetEntitlementsRequest();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return io.stigg.sidecar.proto.v1.SidecarProto
.internal_static_stigg_sidecar_v1_GetEntitlementsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.stigg.sidecar.proto.v1.SidecarProto
.internal_static_stigg_sidecar_v1_GetEntitlementsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.stigg.sidecar.proto.v1.GetEntitlementsRequest.class,
io.stigg.sidecar.proto.v1.GetEntitlementsRequest.Builder.class);
}
private int bitField0_;
public static final int CUSTOMER_ID_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object customerId_ = "";
/**
* string customer_id = 1 [json_name = "customerId"];
*
* @return The customerId.
*/
@java.lang.Override
public java.lang.String getCustomerId() {
java.lang.Object ref = customerId_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
customerId_ = s;
return s;
}
}
/**
* string customer_id = 1 [json_name = "customerId"];
*
* @return The bytes for customerId.
*/
@java.lang.Override
public com.google.protobuf.ByteString getCustomerIdBytes() {
java.lang.Object ref = customerId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
customerId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int RESOURCE_ID_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object resourceId_ = "";
/**
* optional string resource_id = 2 [json_name = "resourceId"];
*
* @return Whether the resourceId field is set.
*/
@java.lang.Override
public boolean hasResourceId() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* optional string resource_id = 2 [json_name = "resourceId"];
*
* @return The resourceId.
*/
@java.lang.Override
public java.lang.String getResourceId() {
java.lang.Object ref = resourceId_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
resourceId_ = s;
return s;
}
}
/**
* optional string resource_id = 2 [json_name = "resourceId"];
*
* @return The bytes for resourceId.
*/
@java.lang.Override
public com.google.protobuf.ByteString getResourceIdBytes() {
java.lang.Object ref = resourceId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
resourceId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(customerId_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, customerId_);
}
if (((bitField0_ & 0x00000001) != 0)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, resourceId_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(customerId_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, customerId_);
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, resourceId_);
}
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 io.stigg.sidecar.proto.v1.GetEntitlementsRequest)) {
return super.equals(obj);
}
io.stigg.sidecar.proto.v1.GetEntitlementsRequest other =
(io.stigg.sidecar.proto.v1.GetEntitlementsRequest) obj;
if (!getCustomerId().equals(other.getCustomerId())) return false;
if (hasResourceId() != other.hasResourceId()) return false;
if (hasResourceId()) {
if (!getResourceId().equals(other.getResourceId())) 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) + CUSTOMER_ID_FIELD_NUMBER;
hash = (53 * hash) + getCustomerId().hashCode();
if (hasResourceId()) {
hash = (37 * hash) + RESOURCE_ID_FIELD_NUMBER;
hash = (53 * hash) + getResourceId().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.stigg.sidecar.proto.v1.GetEntitlementsRequest parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.stigg.sidecar.proto.v1.GetEntitlementsRequest parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.stigg.sidecar.proto.v1.GetEntitlementsRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.stigg.sidecar.proto.v1.GetEntitlementsRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.stigg.sidecar.proto.v1.GetEntitlementsRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.stigg.sidecar.proto.v1.GetEntitlementsRequest parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.stigg.sidecar.proto.v1.GetEntitlementsRequest parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static io.stigg.sidecar.proto.v1.GetEntitlementsRequest parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static io.stigg.sidecar.proto.v1.GetEntitlementsRequest parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static io.stigg.sidecar.proto.v1.GetEntitlementsRequest parseDelimitedFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static io.stigg.sidecar.proto.v1.GetEntitlementsRequest parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static io.stigg.sidecar.proto.v1.GetEntitlementsRequest parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.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(io.stigg.sidecar.proto.v1.GetEntitlementsRequest 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.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/** Protobuf type {@code stigg.sidecar.v1.GetEntitlementsRequest} */
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:stigg.sidecar.v1.GetEntitlementsRequest)
io.stigg.sidecar.proto.v1.GetEntitlementsRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return io.stigg.sidecar.proto.v1.SidecarProto
.internal_static_stigg_sidecar_v1_GetEntitlementsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.stigg.sidecar.proto.v1.SidecarProto
.internal_static_stigg_sidecar_v1_GetEntitlementsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.stigg.sidecar.proto.v1.GetEntitlementsRequest.class,
io.stigg.sidecar.proto.v1.GetEntitlementsRequest.Builder.class);
}
// Construct using io.stigg.sidecar.proto.v1.GetEntitlementsRequest.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
customerId_ = "";
resourceId_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return io.stigg.sidecar.proto.v1.SidecarProto
.internal_static_stigg_sidecar_v1_GetEntitlementsRequest_descriptor;
}
@java.lang.Override
public io.stigg.sidecar.proto.v1.GetEntitlementsRequest getDefaultInstanceForType() {
return io.stigg.sidecar.proto.v1.GetEntitlementsRequest.getDefaultInstance();
}
@java.lang.Override
public io.stigg.sidecar.proto.v1.GetEntitlementsRequest build() {
io.stigg.sidecar.proto.v1.GetEntitlementsRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.stigg.sidecar.proto.v1.GetEntitlementsRequest buildPartial() {
io.stigg.sidecar.proto.v1.GetEntitlementsRequest result =
new io.stigg.sidecar.proto.v1.GetEntitlementsRequest(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(io.stigg.sidecar.proto.v1.GetEntitlementsRequest result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.customerId_ = customerId_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000002) != 0)) {
result.resourceId_ = resourceId_;
to_bitField0_ |= 0x00000001;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.stigg.sidecar.proto.v1.GetEntitlementsRequest) {
return mergeFrom((io.stigg.sidecar.proto.v1.GetEntitlementsRequest) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.stigg.sidecar.proto.v1.GetEntitlementsRequest other) {
if (other == io.stigg.sidecar.proto.v1.GetEntitlementsRequest.getDefaultInstance())
return this;
if (!other.getCustomerId().isEmpty()) {
customerId_ = other.customerId_;
bitField0_ |= 0x00000001;
onChanged();
}
if (other.hasResourceId()) {
resourceId_ = other.resourceId_;
bitField0_ |= 0x00000002;
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.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:
{
customerId_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
resourceId_ = input.readStringRequireUtf8();
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.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object customerId_ = "";
/**
* string customer_id = 1 [json_name = "customerId"];
*
* @return The customerId.
*/
public java.lang.String getCustomerId() {
java.lang.Object ref = customerId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
customerId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string customer_id = 1 [json_name = "customerId"];
*
* @return The bytes for customerId.
*/
public com.google.protobuf.ByteString getCustomerIdBytes() {
java.lang.Object ref = customerId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
customerId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string customer_id = 1 [json_name = "customerId"];
*
* @param value The customerId to set.
* @return This builder for chaining.
*/
public Builder setCustomerId(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
customerId_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* string customer_id = 1 [json_name = "customerId"];
*
* @return This builder for chaining.
*/
public Builder clearCustomerId() {
customerId_ = getDefaultInstance().getCustomerId();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
* string customer_id = 1 [json_name = "customerId"];
*
* @param value The bytes for customerId to set.
* @return This builder for chaining.
*/
public Builder setCustomerIdBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
customerId_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object resourceId_ = "";
/**
* optional string resource_id = 2 [json_name = "resourceId"];
*
* @return Whether the resourceId field is set.
*/
public boolean hasResourceId() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* optional string resource_id = 2 [json_name = "resourceId"];
*
* @return The resourceId.
*/
public java.lang.String getResourceId() {
java.lang.Object ref = resourceId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
resourceId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string resource_id = 2 [json_name = "resourceId"];
*
* @return The bytes for resourceId.
*/
public com.google.protobuf.ByteString getResourceIdBytes() {
java.lang.Object ref = resourceId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
resourceId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string resource_id = 2 [json_name = "resourceId"];
*
* @param value The resourceId to set.
* @return This builder for chaining.
*/
public Builder setResourceId(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
resourceId_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* optional string resource_id = 2 [json_name = "resourceId"];
*
* @return This builder for chaining.
*/
public Builder clearResourceId() {
resourceId_ = getDefaultInstance().getResourceId();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
* optional string resource_id = 2 [json_name = "resourceId"];
*
* @param value The bytes for resourceId to set.
* @return This builder for chaining.
*/
public Builder setResourceIdBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
resourceId_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:stigg.sidecar.v1.GetEntitlementsRequest)
}
// @@protoc_insertion_point(class_scope:stigg.sidecar.v1.GetEntitlementsRequest)
private static final io.stigg.sidecar.proto.v1.GetEntitlementsRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.stigg.sidecar.proto.v1.GetEntitlementsRequest();
}
public static io.stigg.sidecar.proto.v1.GetEntitlementsRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public GetEntitlementsRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.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.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public io.stigg.sidecar.proto.v1.GetEntitlementsRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}