mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-29 11:43:13 +01:00
756 lines
26 KiB
Java
756 lines
26 KiB
Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
// source: OutgoingMessageSignal.proto
|
|
|
|
package org.whispersystems.textsecuregcm.entities;
|
|
|
|
public final class MessageProtos {
|
|
private MessageProtos() {}
|
|
public static void registerAllExtensions(
|
|
com.google.protobuf.ExtensionRegistry registry) {
|
|
}
|
|
public interface OutgoingMessageSignalOrBuilder
|
|
extends com.google.protobuf.MessageOrBuilder {
|
|
|
|
// optional uint32 type = 1;
|
|
boolean hasType();
|
|
int getType();
|
|
|
|
// optional string source = 2;
|
|
boolean hasSource();
|
|
String getSource();
|
|
|
|
// optional uint32 sourceDevice = 7;
|
|
boolean hasSourceDevice();
|
|
int getSourceDevice();
|
|
|
|
// optional string relay = 3;
|
|
boolean hasRelay();
|
|
String getRelay();
|
|
|
|
// optional uint64 timestamp = 5;
|
|
boolean hasTimestamp();
|
|
long getTimestamp();
|
|
|
|
// optional bytes message = 6;
|
|
boolean hasMessage();
|
|
com.google.protobuf.ByteString getMessage();
|
|
}
|
|
public static final class OutgoingMessageSignal extends
|
|
com.google.protobuf.GeneratedMessage
|
|
implements OutgoingMessageSignalOrBuilder {
|
|
// Use OutgoingMessageSignal.newBuilder() to construct.
|
|
private OutgoingMessageSignal(Builder builder) {
|
|
super(builder);
|
|
}
|
|
private OutgoingMessageSignal(boolean noInit) {}
|
|
|
|
private static final OutgoingMessageSignal defaultInstance;
|
|
public static OutgoingMessageSignal getDefaultInstance() {
|
|
return defaultInstance;
|
|
}
|
|
|
|
public OutgoingMessageSignal getDefaultInstanceForType() {
|
|
return defaultInstance;
|
|
}
|
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return org.whispersystems.textsecuregcm.entities.MessageProtos.internal_static_textsecure_OutgoingMessageSignal_descriptor;
|
|
}
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return org.whispersystems.textsecuregcm.entities.MessageProtos.internal_static_textsecure_OutgoingMessageSignal_fieldAccessorTable;
|
|
}
|
|
|
|
private int bitField0_;
|
|
// optional uint32 type = 1;
|
|
public static final int TYPE_FIELD_NUMBER = 1;
|
|
private int type_;
|
|
public boolean hasType() {
|
|
return ((bitField0_ & 0x00000001) == 0x00000001);
|
|
}
|
|
public int getType() {
|
|
return type_;
|
|
}
|
|
|
|
// optional string source = 2;
|
|
public static final int SOURCE_FIELD_NUMBER = 2;
|
|
private java.lang.Object source_;
|
|
public boolean hasSource() {
|
|
return ((bitField0_ & 0x00000002) == 0x00000002);
|
|
}
|
|
public String getSource() {
|
|
java.lang.Object ref = source_;
|
|
if (ref instanceof String) {
|
|
return (String) ref;
|
|
} else {
|
|
com.google.protobuf.ByteString bs =
|
|
(com.google.protobuf.ByteString) ref;
|
|
String s = bs.toStringUtf8();
|
|
if (com.google.protobuf.Internal.isValidUtf8(bs)) {
|
|
source_ = s;
|
|
}
|
|
return s;
|
|
}
|
|
}
|
|
private com.google.protobuf.ByteString getSourceBytes() {
|
|
java.lang.Object ref = source_;
|
|
if (ref instanceof String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8((String) ref);
|
|
source_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
|
|
// optional uint32 sourceDevice = 7;
|
|
public static final int SOURCEDEVICE_FIELD_NUMBER = 7;
|
|
private int sourceDevice_;
|
|
public boolean hasSourceDevice() {
|
|
return ((bitField0_ & 0x00000004) == 0x00000004);
|
|
}
|
|
public int getSourceDevice() {
|
|
return sourceDevice_;
|
|
}
|
|
|
|
// optional string relay = 3;
|
|
public static final int RELAY_FIELD_NUMBER = 3;
|
|
private java.lang.Object relay_;
|
|
public boolean hasRelay() {
|
|
return ((bitField0_ & 0x00000008) == 0x00000008);
|
|
}
|
|
public String getRelay() {
|
|
java.lang.Object ref = relay_;
|
|
if (ref instanceof String) {
|
|
return (String) ref;
|
|
} else {
|
|
com.google.protobuf.ByteString bs =
|
|
(com.google.protobuf.ByteString) ref;
|
|
String s = bs.toStringUtf8();
|
|
if (com.google.protobuf.Internal.isValidUtf8(bs)) {
|
|
relay_ = s;
|
|
}
|
|
return s;
|
|
}
|
|
}
|
|
private com.google.protobuf.ByteString getRelayBytes() {
|
|
java.lang.Object ref = relay_;
|
|
if (ref instanceof String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8((String) ref);
|
|
relay_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
|
|
// optional uint64 timestamp = 5;
|
|
public static final int TIMESTAMP_FIELD_NUMBER = 5;
|
|
private long timestamp_;
|
|
public boolean hasTimestamp() {
|
|
return ((bitField0_ & 0x00000010) == 0x00000010);
|
|
}
|
|
public long getTimestamp() {
|
|
return timestamp_;
|
|
}
|
|
|
|
// optional bytes message = 6;
|
|
public static final int MESSAGE_FIELD_NUMBER = 6;
|
|
private com.google.protobuf.ByteString message_;
|
|
public boolean hasMessage() {
|
|
return ((bitField0_ & 0x00000020) == 0x00000020);
|
|
}
|
|
public com.google.protobuf.ByteString getMessage() {
|
|
return message_;
|
|
}
|
|
|
|
private void initFields() {
|
|
type_ = 0;
|
|
source_ = "";
|
|
sourceDevice_ = 0;
|
|
relay_ = "";
|
|
timestamp_ = 0L;
|
|
message_ = com.google.protobuf.ByteString.EMPTY;
|
|
}
|
|
private byte memoizedIsInitialized = -1;
|
|
public final boolean isInitialized() {
|
|
byte isInitialized = memoizedIsInitialized;
|
|
if (isInitialized != -1) return isInitialized == 1;
|
|
|
|
memoizedIsInitialized = 1;
|
|
return true;
|
|
}
|
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
throws java.io.IOException {
|
|
getSerializedSize();
|
|
if (((bitField0_ & 0x00000001) == 0x00000001)) {
|
|
output.writeUInt32(1, type_);
|
|
}
|
|
if (((bitField0_ & 0x00000002) == 0x00000002)) {
|
|
output.writeBytes(2, getSourceBytes());
|
|
}
|
|
if (((bitField0_ & 0x00000008) == 0x00000008)) {
|
|
output.writeBytes(3, getRelayBytes());
|
|
}
|
|
if (((bitField0_ & 0x00000010) == 0x00000010)) {
|
|
output.writeUInt64(5, timestamp_);
|
|
}
|
|
if (((bitField0_ & 0x00000020) == 0x00000020)) {
|
|
output.writeBytes(6, message_);
|
|
}
|
|
if (((bitField0_ & 0x00000004) == 0x00000004)) {
|
|
output.writeUInt32(7, sourceDevice_);
|
|
}
|
|
getUnknownFields().writeTo(output);
|
|
}
|
|
|
|
private int memoizedSerializedSize = -1;
|
|
public int getSerializedSize() {
|
|
int size = memoizedSerializedSize;
|
|
if (size != -1) return size;
|
|
|
|
size = 0;
|
|
if (((bitField0_ & 0x00000001) == 0x00000001)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(1, type_);
|
|
}
|
|
if (((bitField0_ & 0x00000002) == 0x00000002)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBytesSize(2, getSourceBytes());
|
|
}
|
|
if (((bitField0_ & 0x00000008) == 0x00000008)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBytesSize(3, getRelayBytes());
|
|
}
|
|
if (((bitField0_ & 0x00000010) == 0x00000010)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt64Size(5, timestamp_);
|
|
}
|
|
if (((bitField0_ & 0x00000020) == 0x00000020)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBytesSize(6, message_);
|
|
}
|
|
if (((bitField0_ & 0x00000004) == 0x00000004)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(7, sourceDevice_);
|
|
}
|
|
size += getUnknownFields().getSerializedSize();
|
|
memoizedSerializedSize = size;
|
|
return size;
|
|
}
|
|
|
|
private static final long serialVersionUID = 0L;
|
|
@java.lang.Override
|
|
protected java.lang.Object writeReplace()
|
|
throws java.io.ObjectStreamException {
|
|
return super.writeReplace();
|
|
}
|
|
|
|
public static org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal parseFrom(
|
|
com.google.protobuf.ByteString data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
}
|
|
public static org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal parseFrom(
|
|
com.google.protobuf.ByteString data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
.buildParsed();
|
|
}
|
|
public static org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal parseFrom(byte[] data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
}
|
|
public static org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal parseFrom(
|
|
byte[] data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
.buildParsed();
|
|
}
|
|
public static org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal parseFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
}
|
|
public static org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal parseFrom(
|
|
java.io.InputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
.buildParsed();
|
|
}
|
|
public static org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal parseDelimitedFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
Builder builder = newBuilder();
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
return builder.buildParsed();
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
public static org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal parseDelimitedFrom(
|
|
java.io.InputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
Builder builder = newBuilder();
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
return builder.buildParsed();
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
public static org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal parseFrom(
|
|
com.google.protobuf.CodedInputStream input)
|
|
throws java.io.IOException {
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
}
|
|
public static org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal parseFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
.buildParsed();
|
|
}
|
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
|
public static Builder newBuilder(org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal prototype) {
|
|
return newBuilder().mergeFrom(prototype);
|
|
}
|
|
public Builder toBuilder() { return newBuilder(this); }
|
|
|
|
@java.lang.Override
|
|
protected Builder newBuilderForType(
|
|
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
|
|
Builder builder = new Builder(parent);
|
|
return builder;
|
|
}
|
|
public static final class Builder extends
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder>
|
|
implements org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignalOrBuilder {
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return org.whispersystems.textsecuregcm.entities.MessageProtos.internal_static_textsecure_OutgoingMessageSignal_descriptor;
|
|
}
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return org.whispersystems.textsecuregcm.entities.MessageProtos.internal_static_textsecure_OutgoingMessageSignal_fieldAccessorTable;
|
|
}
|
|
|
|
// Construct using org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal.newBuilder()
|
|
private Builder() {
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
|
|
private Builder(BuilderParent parent) {
|
|
super(parent);
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
private void maybeForceBuilderInitialization() {
|
|
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
|
|
}
|
|
}
|
|
private static Builder create() {
|
|
return new Builder();
|
|
}
|
|
|
|
public Builder clear() {
|
|
super.clear();
|
|
type_ = 0;
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
source_ = "";
|
|
bitField0_ = (bitField0_ & ~0x00000002);
|
|
sourceDevice_ = 0;
|
|
bitField0_ = (bitField0_ & ~0x00000004);
|
|
relay_ = "";
|
|
bitField0_ = (bitField0_ & ~0x00000008);
|
|
timestamp_ = 0L;
|
|
bitField0_ = (bitField0_ & ~0x00000010);
|
|
message_ = com.google.protobuf.ByteString.EMPTY;
|
|
bitField0_ = (bitField0_ & ~0x00000020);
|
|
return this;
|
|
}
|
|
|
|
public Builder clone() {
|
|
return create().mergeFrom(buildPartial());
|
|
}
|
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptorForType() {
|
|
return org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal.getDescriptor();
|
|
}
|
|
|
|
public org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal getDefaultInstanceForType() {
|
|
return org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal.getDefaultInstance();
|
|
}
|
|
|
|
public org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal build() {
|
|
org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal result = buildPartial();
|
|
if (!result.isInitialized()) {
|
|
throw newUninitializedMessageException(result);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
private org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal buildParsed()
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal result = buildPartial();
|
|
if (!result.isInitialized()) {
|
|
throw newUninitializedMessageException(
|
|
result).asInvalidProtocolBufferException();
|
|
}
|
|
return result;
|
|
}
|
|
|
|
public org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal buildPartial() {
|
|
org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal result = new org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal(this);
|
|
int from_bitField0_ = bitField0_;
|
|
int to_bitField0_ = 0;
|
|
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
|
|
to_bitField0_ |= 0x00000001;
|
|
}
|
|
result.type_ = type_;
|
|
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
|
|
to_bitField0_ |= 0x00000002;
|
|
}
|
|
result.source_ = source_;
|
|
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
|
|
to_bitField0_ |= 0x00000004;
|
|
}
|
|
result.sourceDevice_ = sourceDevice_;
|
|
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
|
|
to_bitField0_ |= 0x00000008;
|
|
}
|
|
result.relay_ = relay_;
|
|
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
|
|
to_bitField0_ |= 0x00000010;
|
|
}
|
|
result.timestamp_ = timestamp_;
|
|
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
|
|
to_bitField0_ |= 0x00000020;
|
|
}
|
|
result.message_ = message_;
|
|
result.bitField0_ = to_bitField0_;
|
|
onBuilt();
|
|
return result;
|
|
}
|
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
|
if (other instanceof org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal) {
|
|
return mergeFrom((org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal)other);
|
|
} else {
|
|
super.mergeFrom(other);
|
|
return this;
|
|
}
|
|
}
|
|
|
|
public Builder mergeFrom(org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal other) {
|
|
if (other == org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal.getDefaultInstance()) return this;
|
|
if (other.hasType()) {
|
|
setType(other.getType());
|
|
}
|
|
if (other.hasSource()) {
|
|
setSource(other.getSource());
|
|
}
|
|
if (other.hasSourceDevice()) {
|
|
setSourceDevice(other.getSourceDevice());
|
|
}
|
|
if (other.hasRelay()) {
|
|
setRelay(other.getRelay());
|
|
}
|
|
if (other.hasTimestamp()) {
|
|
setTimestamp(other.getTimestamp());
|
|
}
|
|
if (other.hasMessage()) {
|
|
setMessage(other.getMessage());
|
|
}
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
return this;
|
|
}
|
|
|
|
public final boolean isInitialized() {
|
|
return true;
|
|
}
|
|
|
|
public Builder mergeFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
this.getUnknownFields());
|
|
while (true) {
|
|
int tag = input.readTag();
|
|
switch (tag) {
|
|
case 0:
|
|
this.setUnknownFields(unknownFields.build());
|
|
onChanged();
|
|
return this;
|
|
default: {
|
|
if (!parseUnknownField(input, unknownFields,
|
|
extensionRegistry, tag)) {
|
|
this.setUnknownFields(unknownFields.build());
|
|
onChanged();
|
|
return this;
|
|
}
|
|
break;
|
|
}
|
|
case 8: {
|
|
bitField0_ |= 0x00000001;
|
|
type_ = input.readUInt32();
|
|
break;
|
|
}
|
|
case 18: {
|
|
bitField0_ |= 0x00000002;
|
|
source_ = input.readBytes();
|
|
break;
|
|
}
|
|
case 26: {
|
|
bitField0_ |= 0x00000008;
|
|
relay_ = input.readBytes();
|
|
break;
|
|
}
|
|
case 40: {
|
|
bitField0_ |= 0x00000010;
|
|
timestamp_ = input.readUInt64();
|
|
break;
|
|
}
|
|
case 50: {
|
|
bitField0_ |= 0x00000020;
|
|
message_ = input.readBytes();
|
|
break;
|
|
}
|
|
case 56: {
|
|
bitField0_ |= 0x00000004;
|
|
sourceDevice_ = input.readUInt32();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private int bitField0_;
|
|
|
|
// optional uint32 type = 1;
|
|
private int type_ ;
|
|
public boolean hasType() {
|
|
return ((bitField0_ & 0x00000001) == 0x00000001);
|
|
}
|
|
public int getType() {
|
|
return type_;
|
|
}
|
|
public Builder setType(int value) {
|
|
bitField0_ |= 0x00000001;
|
|
type_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
public Builder clearType() {
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
type_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// optional string source = 2;
|
|
private java.lang.Object source_ = "";
|
|
public boolean hasSource() {
|
|
return ((bitField0_ & 0x00000002) == 0x00000002);
|
|
}
|
|
public String getSource() {
|
|
java.lang.Object ref = source_;
|
|
if (!(ref instanceof String)) {
|
|
String s = ((com.google.protobuf.ByteString) ref).toStringUtf8();
|
|
source_ = s;
|
|
return s;
|
|
} else {
|
|
return (String) ref;
|
|
}
|
|
}
|
|
public Builder setSource(String value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000002;
|
|
source_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
public Builder clearSource() {
|
|
bitField0_ = (bitField0_ & ~0x00000002);
|
|
source_ = getDefaultInstance().getSource();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
void setSource(com.google.protobuf.ByteString value) {
|
|
bitField0_ |= 0x00000002;
|
|
source_ = value;
|
|
onChanged();
|
|
}
|
|
|
|
// optional uint32 sourceDevice = 7;
|
|
private int sourceDevice_ ;
|
|
public boolean hasSourceDevice() {
|
|
return ((bitField0_ & 0x00000004) == 0x00000004);
|
|
}
|
|
public int getSourceDevice() {
|
|
return sourceDevice_;
|
|
}
|
|
public Builder setSourceDevice(int value) {
|
|
bitField0_ |= 0x00000004;
|
|
sourceDevice_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
public Builder clearSourceDevice() {
|
|
bitField0_ = (bitField0_ & ~0x00000004);
|
|
sourceDevice_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// optional string relay = 3;
|
|
private java.lang.Object relay_ = "";
|
|
public boolean hasRelay() {
|
|
return ((bitField0_ & 0x00000008) == 0x00000008);
|
|
}
|
|
public String getRelay() {
|
|
java.lang.Object ref = relay_;
|
|
if (!(ref instanceof String)) {
|
|
String s = ((com.google.protobuf.ByteString) ref).toStringUtf8();
|
|
relay_ = s;
|
|
return s;
|
|
} else {
|
|
return (String) ref;
|
|
}
|
|
}
|
|
public Builder setRelay(String value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000008;
|
|
relay_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
public Builder clearRelay() {
|
|
bitField0_ = (bitField0_ & ~0x00000008);
|
|
relay_ = getDefaultInstance().getRelay();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
void setRelay(com.google.protobuf.ByteString value) {
|
|
bitField0_ |= 0x00000008;
|
|
relay_ = value;
|
|
onChanged();
|
|
}
|
|
|
|
// optional uint64 timestamp = 5;
|
|
private long timestamp_ ;
|
|
public boolean hasTimestamp() {
|
|
return ((bitField0_ & 0x00000010) == 0x00000010);
|
|
}
|
|
public long getTimestamp() {
|
|
return timestamp_;
|
|
}
|
|
public Builder setTimestamp(long value) {
|
|
bitField0_ |= 0x00000010;
|
|
timestamp_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
public Builder clearTimestamp() {
|
|
bitField0_ = (bitField0_ & ~0x00000010);
|
|
timestamp_ = 0L;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// optional bytes message = 6;
|
|
private com.google.protobuf.ByteString message_ = com.google.protobuf.ByteString.EMPTY;
|
|
public boolean hasMessage() {
|
|
return ((bitField0_ & 0x00000020) == 0x00000020);
|
|
}
|
|
public com.google.protobuf.ByteString getMessage() {
|
|
return message_;
|
|
}
|
|
public Builder setMessage(com.google.protobuf.ByteString value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000020;
|
|
message_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
public Builder clearMessage() {
|
|
bitField0_ = (bitField0_ & ~0x00000020);
|
|
message_ = getDefaultInstance().getMessage();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// @@protoc_insertion_point(builder_scope:textsecure.OutgoingMessageSignal)
|
|
}
|
|
|
|
static {
|
|
defaultInstance = new OutgoingMessageSignal(true);
|
|
defaultInstance.initFields();
|
|
}
|
|
|
|
// @@protoc_insertion_point(class_scope:textsecure.OutgoingMessageSignal)
|
|
}
|
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
|
internal_static_textsecure_OutgoingMessageSignal_descriptor;
|
|
private static
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
internal_static_textsecure_OutgoingMessageSignal_fieldAccessorTable;
|
|
|
|
public static com.google.protobuf.Descriptors.FileDescriptor
|
|
getDescriptor() {
|
|
return descriptor;
|
|
}
|
|
private static com.google.protobuf.Descriptors.FileDescriptor
|
|
descriptor;
|
|
static {
|
|
java.lang.String[] descriptorData = {
|
|
"\n\033OutgoingMessageSignal.proto\022\ntextsecur" +
|
|
"e\"~\n\025OutgoingMessageSignal\022\014\n\004type\030\001 \001(\r" +
|
|
"\022\016\n\006source\030\002 \001(\t\022\024\n\014sourceDevice\030\007 \001(\r\022\r" +
|
|
"\n\005relay\030\003 \001(\t\022\021\n\ttimestamp\030\005 \001(\004\022\017\n\007mess" +
|
|
"age\030\006 \001(\014B:\n)org.whispersystems.textsecu" +
|
|
"regcm.entitiesB\rMessageProtos"
|
|
};
|
|
com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
|
|
new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() {
|
|
public com.google.protobuf.ExtensionRegistry assignDescriptors(
|
|
com.google.protobuf.Descriptors.FileDescriptor root) {
|
|
descriptor = root;
|
|
internal_static_textsecure_OutgoingMessageSignal_descriptor =
|
|
getDescriptor().getMessageTypes().get(0);
|
|
internal_static_textsecure_OutgoingMessageSignal_fieldAccessorTable = new
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
internal_static_textsecure_OutgoingMessageSignal_descriptor,
|
|
new java.lang.String[] { "Type", "Source", "SourceDevice", "Relay", "Timestamp", "Message", },
|
|
org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal.class,
|
|
org.whispersystems.textsecuregcm.entities.MessageProtos.OutgoingMessageSignal.Builder.class);
|
|
return null;
|
|
}
|
|
};
|
|
com.google.protobuf.Descriptors.FileDescriptor
|
|
.internalBuildGeneratedFileFrom(descriptorData,
|
|
new com.google.protobuf.Descriptors.FileDescriptor[] {
|
|
}, assigner);
|
|
}
|
|
|
|
// @@protoc_insertion_point(outer_class_scope)
|
|
}
|