From 05a1e83029e5a41feb47c8f2fbd6b652acc4fa3d Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 9 May 2018 13:32:42 +0430 Subject: [PATCH] Update Matched V 0.6.0 --- app/build.gradle | 26 +- app/proguard-rules.pro | 2 - app/src/main/AndroidManifest.xml | 14 +- app/src/main/assets/filedownloader.properties | 83 + app/src/main/java/net/iGap/Config.java | 14 +- app/src/main/java/net/iGap/G.java | 1 + .../main/java/net/iGap/WebSocketClient.java | 13 + .../net/iGap/activities/ActivityCrop.java | 1 + .../net/iGap/activities/ActivityMain.java | 13 +- .../iGap/adapter/AdapterChatBackground.java | 4 +- .../net/iGap/adapter/items/RoomItemA.java | 4 +- .../adapter/items/chat/AbstractMessage.java | 9 +- .../iGap/fragments/FragmentAddContact.java | 10 +- .../java/net/iGap/fragments/FragmentCall.java | 4 +- .../java/net/iGap/fragments/FragmentChat.java | 272 +- .../fragments/FragmentContactsProfile.java | 11 +- .../net/iGap/fragments/FragmentEditImage.java | 27 +- .../net/iGap/fragments/FragmentExplorer.java | 2 +- .../iGap/fragments/FragmentMediaPlayer.java | 6 +- .../FragmentRegistrationNickname.java | 42 +- .../iGap/fragments/FragmentShearedMedia.java | 8 +- .../iGap/fragments/FragmentShowAvatars.java | 6 +- .../net/iGap/fragments/FragmentShowImage.java | 4 +- .../net/iGap/fragments/FragmentiGapMap.java | 60 +- .../fragments/RegisteredContactsFragment.java | 6 +- .../fragments/filterImage/BitmapUtils.java | 136 + .../filterImage/EditImageFragment.java | 138 + .../filterImage/FiltersListFragment.java | 159 + .../filterImage/FragmentFilterImage.java | 553 +- .../filterImage/NonSwipeableViewPager.java | 69 + .../filterImage/SpacesItemDecoration.java | 35 + .../filterImage/ThumbnailsAdapter.java | 94 + .../net/iGap/helper/HelperDownloadFile.java | 238 +- .../java/net/iGap/helper/HelperError.java | 6 +- .../helper/HelperGetDataFromOtherApp.java | 79 +- .../iGap/helper/HelperMessageResponse.java | 3 +- .../helper/HelperNotificationAndBadge.java | 39 +- .../main/java/net/iGap/helper/HelperUrl.java | 4 +- .../java/net/iGap/helper/ImageHelper.java | 21 + .../java/net/iGap/helper/ServiceContact.java | 86 +- .../interfaces/OnContactFetchForServer.java | 4 +- .../iGap/interfaces/OnQueueSendContact.java | 15 + .../interfaces/OnQueueSendContactEdit.java | 15 + .../main/java/net/iGap/module/AppUtils.java | 12 +- .../main/java/net/iGap/module/AttachFile.java | 6 +- .../net/iGap/module/ChatSendMessageUtil.java | 30 +- .../main/java/net/iGap/module/Contacts.java | 85 +- .../main/java/net/iGap/module/FileUtils.java | 84 +- .../java/net/iGap/module/LoginActions.java | 9 +- .../java/net/iGap/module/MessageLoader.java | 24 +- .../java/net/iGap/module/MusicPlayer.java | 23 +- .../java/net/iGap/module/SHP_SETTING.java | 2 + .../java/net/iGap/module/StartupActions.java | 46 +- .../structs/StructMessageAttachment.java | 15 +- .../java/net/iGap/realm/RealmAttachment.java | 15 +- .../main/java/net/iGap/realm/RealmAvatar.java | 2 +- .../net/iGap/realm/RealmChannelExtra.java | 4 +- .../main/java/net/iGap/realm/RealmMember.java | 4 +- .../java/net/iGap/realm/RealmMigration.java | 21 +- .../net/iGap/realm/RealmPhoneContacts.java | 125 +- .../net/iGap/realm/RealmRegisteredInfo.java | 2 +- .../main/java/net/iGap/realm/RealmRoom.java | 26 +- .../java/net/iGap/realm/RealmRoomMessage.java | 57 +- .../iGap/realm/RealmRoomMessageContact.java | 4 +- .../iGap/realm/RealmRoomMessageLocation.java | 4 +- .../net/iGap/realm/RealmRoomMessageLog.java | 4 +- .../main/java/net/iGap/realm/RealmString.java | 4 +- .../java/net/iGap/realm/RealmThumbnail.java | 4 +- .../java/net/iGap/realm/RealmUserInfo.java | 39 + .../request/RequestGeoUpdatePosition.java | 6 + .../java/net/iGap/request/RequestQueue.java | 1 + .../request/RequestUserContactImport.java | 8 +- .../response/ConnectionSecuringResponse.java | 13 +- .../ConnectionSymmetricKeyResponse.java | 12 +- .../response/UserContactsImportResponse.java | 22 + .../net/iGap/response/UserInfoResponse.java | 8 +- .../iGap/viewmodel/ActivityCallViewModel.java | 2 +- .../ActivityManageSpaceViewModel.java | 4 +- .../viewmodel/FragmentRegisterViewModel.java | 30 +- .../viewmodel/FragmentSettingViewModel.java | 66 +- .../main/res/fragment_editFilter_image.xml | 43 + .../res/layout/fragment_edit_filter_image.xml | 74 + .../main/res/layout/fragment_edit_image.xml | 4 +- .../main/res/layout/fragment_filter_image.xml | 194 +- .../main/res/layout/fragment_filters_list.xml | 17 + app/src/main/res/layout/fragment_setting.xml | 46 + app/src/main/res/layout/option_item.xml | 24 +- app/src/main/res/values-ar/strings.xml | 20 +- app/src/main/res/values-fa/strings.xml | 18 +- app/src/main/res/values/strings.xml | 11 +- build.gradle | 6 +- gradle.properties | 6 +- gradle/wrapper/gradle-wrapper.properties | 4 +- .../main/java/net/iGap/proto/ProtoGlobal.java | 7994 +++++++++-------- 94 files changed, 6638 insertions(+), 4982 deletions(-) create mode 100644 app/src/main/assets/filedownloader.properties create mode 100644 app/src/main/java/net/iGap/fragments/filterImage/BitmapUtils.java create mode 100644 app/src/main/java/net/iGap/fragments/filterImage/EditImageFragment.java create mode 100644 app/src/main/java/net/iGap/fragments/filterImage/FiltersListFragment.java create mode 100644 app/src/main/java/net/iGap/fragments/filterImage/NonSwipeableViewPager.java create mode 100644 app/src/main/java/net/iGap/fragments/filterImage/SpacesItemDecoration.java create mode 100644 app/src/main/java/net/iGap/fragments/filterImage/ThumbnailsAdapter.java create mode 100644 app/src/main/java/net/iGap/interfaces/OnQueueSendContact.java create mode 100644 app/src/main/java/net/iGap/interfaces/OnQueueSendContactEdit.java create mode 100644 app/src/main/res/fragment_editFilter_image.xml create mode 100644 app/src/main/res/layout/fragment_edit_filter_image.xml create mode 100644 app/src/main/res/layout/fragment_filters_list.xml diff --git a/app/build.gradle b/app/build.gradle index e2ea965..24c2b84 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -4,7 +4,7 @@ buildscript { } dependencies { - classpath 'io.fabric.tools:gradle:1.22.0' + classpath 'io.fabric.tools:gradle:1.25.3' } } apply plugin: 'com.android.application' @@ -24,8 +24,8 @@ android { applicationId "net.iGap" minSdkVersion 15 targetSdkVersion 25 - versionCode 59 - versionName "0.5.0" + versionCode 60 + versionName "0.6.0" multiDexEnabled true vectorDrawables.useSupportLibrary = true @@ -61,9 +61,6 @@ android { dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') - compile('com.mikepenz:fastadapter:3.0.4@aar') { - transitive = true - } compile project(':messageprogress') compile project(':proto') compile project(':websocket') @@ -83,10 +80,12 @@ dependencies { exclude group: 'com.googlecode.mp4parser', module: 'isoparser' } - compile 'com.mikepenz:fastadapter-commons:3.0.3@aar' - compile 'com.mikepenz:fastadapter-extensions:3.0.3@aar' - compile 'com.mikepenz:materialize:1.0.3@aar' - compile 'com.android.support:multidex:1.0.1' + implementation 'com.mikepenz:fastadapter:3.2.5' + implementation 'com.mikepenz:fastadapter-commons:3.2.5' + implementation 'com.mikepenz:fastadapter-extensions-expandable:3.2.5' + implementation 'com.mikepenz:fastadapter-extensions:3.2.5' + + compile 'com.android.support:multidex:1.0.3' compile 'com.android.support:appcompat-v7:26.0.2' compile 'com.nineoldandroids:library:2.4.0' compile 'com.android.support:recyclerview-v7:26.0.2' @@ -110,8 +109,8 @@ dependencies { compile 'com.dlazaro66.qrcodereaderview:qrcodereaderview:2.0.3' compile 'com.google.zxing:core:3.3.0' compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.7' - compile 'com.google.android.gms:play-services-analytics:10.2.1' - compile 'com.google.android.gms:play-services-maps:10.2.1' + compile 'com.google.android.gms:play-services-analytics:15.0.0' + compile 'com.google.android.gms:play-services-maps:15.0.0' compile 'me.zhanghai.android.customtabshelper:library:1.0.3' compile 'com.readystatesoftware.systembartint:systembartint:1.0.4' compile 'cat.ereza:customactivityoncrash:2.1.0' @@ -126,8 +125,9 @@ dependencies { provided 'com.android.support:support-annotations:26.0.2' compile group: 'com.github.msarhan', name: 'ummalqura-calendar', version: '1.1.7' compile 'com.sothree.slidinguppanel:library:3.4.0' - compile 'it.chengdazhi.styleimageview:styleimageview:1.0.4' compile 'com.github.krokyze:ucropnedit:2.2.2' + implementation 'info.androidhive:imagefilters:1.0.7' + compile 'com.mindorks.android:prdownloader:0.3.0' } configurations.all { diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index c316918..9e553f9 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -16,8 +16,6 @@ # public *; #} -### TapStream --keep class com.google.android.gms.ads.identifier.** { *; } ########## My Tricks -keep class net.iGap.proto.** , com.neovisionaries.ws.client.** { *; } diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 07e3bad..c53359a 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -15,7 +15,7 @@ - + @@ -90,8 +90,8 @@ + android:excludeFromRecents="true" + android:launchMode="singleInstance"> + + + + + + + - - + android:layout_margin="@dimen/dp6" + android:layout_weight="1" /> - - - - - - - - - - - - - + app:cardBackgroundColor="@color/toolbar_transparent"> - - - - + android:orientation="vertical"> - - - + - - - - + app:tabGravity="fill" + app:tabTextColor="@color/green" + app:tabSelectedTextColor="@color/white" + app:tabMode="fixed" /> - - - - - - + \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_filters_list.xml b/app/src/main/res/layout/fragment_filters_list.xml new file mode 100644 index 0000000..e50d1e0 --- /dev/null +++ b/app/src/main/res/layout/fragment_filters_list.xml @@ -0,0 +1,17 @@ + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_setting.xml b/app/src/main/res/layout/fragment_setting.xml index 2829c0a..ed937c4 100644 --- a/app/src/main/res/layout/fragment_setting.xml +++ b/app/src/main/res/layout/fragment_setting.xml @@ -967,8 +967,54 @@ + + + + + + + + + + + + - + - + android:layout_width="@dimen/dp80" + android:layout_height="@dimen/dp80" + android:layout_gravity="center" /> - + \ No newline at end of file diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index 2a29b4e..6247289 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -2099,7 +2099,7 @@ ذیحجه تبويب متعدد - + موضوع الظلام حصلت عليه اهتمام ملاحظة: تجدر الإشارة إلى أن الأفراد على الخريطة سيتم عرض مع وجود خطأ من 500 متر. لذلك لا تقلق @@ -2110,9 +2110,17 @@ غرفة أخرى إرسال لا ترسل - Save data in sd card - Are you sure - Change storage place - Other Files - + حفظ المعلومات على البطاقة الجانبية + هل أنت متأكد؟ + تغيير موقع التخزين + ملفات اخرى + دخول قائمة الاتصال + عذرًا ، عدد جهات الاتصال لديك كبير جدًا لا يمكننا التحقق من الخادم ، يرجى حفظ جهات الاتصال على مستوى معقول + + هل تخليت عن التغييرات؟ + سطوع + تباين + التشبع + مرشح اللون + تحرير \ No newline at end of file diff --git a/app/src/main/res/values-fa/strings.xml b/app/src/main/res/values-fa/strings.xml index d091a64..4d46ad1 100644 --- a/app/src/main/res/values-fa/strings.xml +++ b/app/src/main/res/values-fa/strings.xml @@ -1145,6 +1145,7 @@ ذیحجه چند نواری + زمینه تیره فهمیدم توجه نکته : قابل ذکر است افراد بر روی نقشه با خطای 500 متر نمایش داده خواهند شد. پس جای نگرانی نیست @@ -1152,9 +1153,18 @@ ویدئو را با پخش کننده پیشفرض باز کن واکنش در کانال کانال تأیید شده - Save data in sd card - Are you sure - Change storage place - Other Files + ذخیره اطلاعات در کارت جانبی + شما مطمئن هستید ؟ + تغییر مکان ذخیره سازی + سایر فایل ها + در حال وارد کردن لیست تماس + متاسفانه تعداد مخاطبین شما بیش از حد مجاز میباشد. نمیتوانیم با سرور بررسی کنیم ، لطفا مخاطبین را در حد معقول ذخیره کنید + + آیا از تغییرات انجام داده منصرف شدید ؟ + روشنایی + کنتراست + اشباع + فیلتر رنگ + ویرایش \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 8124675..9a2ad83 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -1168,6 +1168,7 @@ Thul Hijjah Multi Tab + Dark Theme Understood Attention Note: People on the map will be displayed with a 500-meter error. So no worries @@ -1182,6 +1183,14 @@ Are you sure Change storage place Other Files - + Import contact list + Your contact list is very large and can not import to server + + Are you discarding changes? + Brightness + Contrast + Saturation + Filters + Edit \ No newline at end of file diff --git a/build.gradle b/build.gradle index c504b63..272b41f 100644 --- a/build.gradle +++ b/build.gradle @@ -9,11 +9,11 @@ buildscript { } dependencies { - classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2' + classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.2' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3' classpath 'com.android.tools.build:gradle:3.0.1' - classpath "io.realm:realm-gradle-plugin:4.3.3" - classpath 'com.google.gms:google-services:3.0.0' + classpath "io.realm:realm-gradle-plugin:5.0.1" + classpath 'com.google.gms:google-services:3.1.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/gradle.properties b/gradle.properties index 17a05ad..c3e51e9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -17,4 +17,8 @@ # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true org.gradle.jvmargs=-Xmx4608M -android.enableD8=true \ No newline at end of file +android.enableD8=true +org.gradle.daemon=true +org.gradle.parallel=true +org.gradle.configureondemand=true +android.enableBuildCache=true \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 2758205..336199e 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Mon Oct 30 18:16:22 IRST 2017 +#Mon Apr 23 10:32:23 IRDT 2018 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip diff --git a/proto/src/main/java/net/iGap/proto/ProtoGlobal.java b/proto/src/main/java/net/iGap/proto/ProtoGlobal.java index 72e2939..08617a6 100644 --- a/proto/src/main/java/net/iGap/proto/ProtoGlobal.java +++ b/proto/src/main/java/net/iGap/proto/ProtoGlobal.java @@ -50,7 +50,7 @@ public enum Gender public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -95,7 +95,7 @@ public Gender findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(0); + return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(0); } private static final Gender[] VALUES = values(); @@ -103,7 +103,7 @@ public Gender findValueByNumber(int number) { public static Gender valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -165,7 +165,7 @@ public enum Device public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -211,7 +211,7 @@ public Device findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(1); + return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(1); } private static final Device[] VALUES = values(); @@ -219,7 +219,7 @@ public Device findValueByNumber(int number) { public static Device valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -305,7 +305,7 @@ public enum Platform public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -354,7 +354,7 @@ public Platform findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(2); + return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(2); } private static final Platform[] VALUES = values(); @@ -362,7 +362,7 @@ public Platform findValueByNumber(int number) { public static Platform valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -408,7 +408,7 @@ public enum Language public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -452,7 +452,7 @@ public Language findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(3); + return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(3); } private static final Language[] VALUES = values(); @@ -460,7 +460,7 @@ public Language findValueByNumber(int number) { public static Language valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -610,7 +610,7 @@ public enum RoomMessageType public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -667,7 +667,7 @@ public RoomMessageType findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(4); + return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(4); } private static final RoomMessageType[] VALUES = values(); @@ -675,7 +675,7 @@ public RoomMessageType findValueByNumber(int number) { public static RoomMessageType valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -753,7 +753,7 @@ public enum RoomMessageStatus public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -801,7 +801,7 @@ public RoomMessageStatus findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(5); + return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(5); } private static final RoomMessageStatus[] VALUES = values(); @@ -809,7 +809,7 @@ public RoomMessageStatus findValueByNumber(int number) { public static RoomMessageStatus valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -855,7 +855,7 @@ public enum RoomMessageReaction public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -899,7 +899,7 @@ public RoomMessageReaction findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(6); + return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(6); } private static final RoomMessageReaction[] VALUES = values(); @@ -907,7 +907,7 @@ public RoomMessageReaction findValueByNumber(int number) { public static RoomMessageReaction valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -1057,7 +1057,7 @@ public enum ClientAction public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -1114,7 +1114,7 @@ public ClientAction findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(7); + return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(7); } private static final ClientAction[] VALUES = values(); @@ -1122,7 +1122,7 @@ public ClientAction findValueByNumber(int number) { public static ClientAction valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -1168,7 +1168,7 @@ public enum RoomMute public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -1212,7 +1212,7 @@ public RoomMute findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(8); + return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(8); } private static final RoomMute[] VALUES = values(); @@ -1220,7 +1220,7 @@ public RoomMute findValueByNumber(int number) { public static RoomMute valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -1314,7 +1314,7 @@ public enum PrivacyType public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -1364,7 +1364,7 @@ public PrivacyType findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(9); + return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(9); } private static final PrivacyType[] VALUES = values(); @@ -1372,7 +1372,7 @@ public PrivacyType findValueByNumber(int number) { public static PrivacyType valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -1426,7 +1426,7 @@ public enum PrivacyLevel public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -1471,7 +1471,7 @@ public PrivacyLevel findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(10); + return net.iGap.proto.ProtoGlobal.getDescriptor().getEnumTypes().get(10); } private static final PrivacyLevel[] VALUES = values(); @@ -1479,7 +1479,7 @@ public PrivacyLevel findValueByNumber(int number) { public static PrivacyLevel valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -1527,7 +1527,7 @@ private RoomMessageLocation() { lon_ = 0D; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -1575,14 +1575,14 @@ private RoomMessageLocation( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLocation_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLocation_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLocation_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLocation_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessageLocation.class, net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessageLocation.class, net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder.class); } public static final int LAT_FIELD_NUMBER = 1; @@ -1641,29 +1641,30 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessageLocation)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessageLocation)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.RoomMessageLocation other = (net.iGap.proto.ProtoGlobal.RoomMessageLocation) obj; + net.iGap.proto.ProtoGlobal.RoomMessageLocation other = (net.iGap.proto.ProtoGlobal.RoomMessageLocation) obj; boolean result = true; result = result && ( - java.lang.Double.doubleToLongBits(getLat()) - == java.lang.Double.doubleToLongBits( + java.lang.Double.doubleToLongBits(getLat()) + == java.lang.Double.doubleToLongBits( other.getLat())); result = result && ( - java.lang.Double.doubleToLongBits(getLon()) - == java.lang.Double.doubleToLongBits( + java.lang.Double.doubleToLongBits(getLon()) + == java.lang.Double.doubleToLongBits( other.getLon())); return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -1672,67 +1673,76 @@ public int hashCode() { hash = (19 * hash) + getDescriptorForType().hashCode(); hash = (37 * hash) + LAT_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - java.lang.Double.doubleToLongBits(getLat())); + java.lang.Double.doubleToLongBits(getLat())); hash = (37 * hash) + LON_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - java.lang.Double.doubleToLongBits(getLon())); + java.lang.Double.doubleToLongBits(getLon())); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } - public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom( + public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLocation 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 net.iGap.proto.ProtoGlobal.RoomMessageLocation parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLocation 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 net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -1744,7 +1754,8 @@ public static net.iGap.proto.ProtoGlobal.RoomMessageLocation parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessageLocation prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessageLocation prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -1752,9 +1763,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -1764,17 +1775,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.RoomMessageLocation) - net.iGap.proto.ProtoGlobal.RoomMessageLocationOrBuilder { + net.iGap.proto.ProtoGlobal.RoomMessageLocationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLocation_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLocation_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLocation_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLocation_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessageLocation.class, net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessageLocation.class, net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.RoomMessageLocation.newBuilder() @@ -1783,7 +1794,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -1803,23 +1814,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLocation_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLocation_descriptor; } - public net.iGap.proto.ProtoGlobal.RoomMessageLocation getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.RoomMessageLocation.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.RoomMessageLocation getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.RoomMessageLocation.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.RoomMessageLocation build() { - net.iGap.proto.ProtoGlobal.RoomMessageLocation result = buildPartial(); + public net.iGap.proto.ProtoGlobal.RoomMessageLocation build() { + net.iGap.proto.ProtoGlobal.RoomMessageLocation result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.RoomMessageLocation buildPartial() { - net.iGap.proto.ProtoGlobal.RoomMessageLocation result = new net.iGap.proto.ProtoGlobal.RoomMessageLocation(this); + public net.iGap.proto.ProtoGlobal.RoomMessageLocation buildPartial() { + net.iGap.proto.ProtoGlobal.RoomMessageLocation result = new net.iGap.proto.ProtoGlobal.RoomMessageLocation(this); result.lat_ = lat_; result.lon_ = lon_; onBuilt(); @@ -1853,16 +1864,17 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessageLocation) { - return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessageLocation)other); + if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessageLocation) { + return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessageLocation) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessageLocation other) { - if (other == net.iGap.proto.ProtoGlobal.RoomMessageLocation.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessageLocation other) { + if (other == net.iGap.proto.ProtoGlobal.RoomMessageLocation.getDefaultInstance()) + return this; if (other.getLat() != 0D) { setLat(other.getLat()); } @@ -1881,11 +1893,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.RoomMessageLocation parsedMessage = null; + net.iGap.proto.ProtoGlobal.RoomMessageLocation parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessageLocation) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessageLocation) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -1906,7 +1918,7 @@ public double getLat() { * optional double lat = 1; */ public Builder setLat(double value) { - + lat_ = value; onChanged(); return this; @@ -1915,7 +1927,7 @@ public Builder setLat(double value) { * optional double lat = 1; */ public Builder clearLat() { - + lat_ = 0D; onChanged(); return this; @@ -1932,7 +1944,7 @@ public double getLon() { * optional double lon = 2; */ public Builder setLon(double value) { - + lon_ = value; onChanged(); return this; @@ -1941,7 +1953,7 @@ public Builder setLon(double value) { * optional double lon = 2; */ public Builder clearLon() { - + lon_ = 0D; onChanged(); return this; @@ -1963,10 +1975,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.RoomMessageLocation) private static final net.iGap.proto.ProtoGlobal.RoomMessageLocation DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessageLocation(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessageLocation(); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLocation getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.RoomMessageLocation getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -1984,12 +1996,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.RoomMessageLocation getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.RoomMessageLocation getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -2046,7 +2058,7 @@ private RoomMessageLog() { extraType_ = 0; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -2084,11 +2096,11 @@ private RoomMessageLog( break; } case 26: { - net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder subBuilder = null; if (targetUser_ != null) { subBuilder = targetUser_.toBuilder(); } - targetUser_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.parser(), extensionRegistry); + targetUser_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(targetUser_); targetUser_ = subBuilder.buildPartial(); @@ -2109,14 +2121,14 @@ private RoomMessageLog( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessageLog.class, net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessageLog.class, net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder.class); } /** @@ -2243,7 +2255,7 @@ public enum Type public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -2299,7 +2311,7 @@ public Type findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.RoomMessageLog.getDescriptor().getEnumTypes().get(0); + return net.iGap.proto.ProtoGlobal.RoomMessageLog.getDescriptor().getEnumTypes().get(0); } private static final Type[] VALUES = values(); @@ -2307,7 +2319,7 @@ public Type findValueByNumber(int number) { public static Type valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -2353,7 +2365,7 @@ public enum ExtraType public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -2397,7 +2409,7 @@ public ExtraType findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.RoomMessageLog.getDescriptor().getEnumTypes().get(1); + return net.iGap.proto.ProtoGlobal.RoomMessageLog.getDescriptor().getEnumTypes().get(1); } private static final ExtraType[] VALUES = values(); @@ -2405,7 +2417,7 @@ public ExtraType findValueByNumber(int number) { public static ExtraType valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -2447,7 +2459,7 @@ private TargetUser() { id_ = 0L; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -2490,14 +2502,14 @@ private TargetUser( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_TargetUser_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_TargetUser_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_TargetUser_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_TargetUser_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.class, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.class, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder.class); } public static final int ID_FIELD_NUMBER = 1; @@ -2540,15 +2552,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser other = (net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser) obj; + net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser other = (net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser) obj; boolean result = true; result = result && (getId() @@ -2556,7 +2569,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -2571,58 +2584,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom( + public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser 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 net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser 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 net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -2634,7 +2656,8 @@ public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -2642,9 +2665,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -2654,17 +2677,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.RoomMessageLog.TargetUser) - net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUserOrBuilder { + net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUserOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_TargetUser_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_TargetUser_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_TargetUser_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_TargetUser_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.class, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.class, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.newBuilder() @@ -2673,7 +2696,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -2691,23 +2714,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_TargetUser_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_TargetUser_descriptor; } - public net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser build() { - net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser result = buildPartial(); + public net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser build() { + net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser buildPartial() { - net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser result = new net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser(this); + public net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser buildPartial() { + net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser result = new net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser(this); result.id_ = id_; onBuilt(); return result; @@ -2740,16 +2763,17 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser) { - return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser)other); + if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser) { + return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser other) { - if (other == net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser other) { + if (other == net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.getDefaultInstance()) + return this; if (other.getId() != 0L) { setId(other.getId()); } @@ -2765,11 +2789,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parsedMessage = null; + net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -2790,7 +2814,7 @@ public long getId() { * optional uint64 id = 1; */ public Builder setId(long value) { - + id_ = value; onChanged(); return this; @@ -2799,7 +2823,7 @@ public Builder setId(long value) { * optional uint64 id = 1; */ public Builder clearId() { - + id_ = 0L; onChanged(); return this; @@ -2821,10 +2845,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.RoomMessageLog.TargetUser) private static final net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser(); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -2842,12 +2866,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -2865,8 +2889,8 @@ public int getTypeValue() { * optional .proto.RoomMessageLog.Type type = 1; */ public net.iGap.proto.ProtoGlobal.RoomMessageLog.Type getType() { - net.iGap.proto.ProtoGlobal.RoomMessageLog.Type result = net.iGap.proto.ProtoGlobal.RoomMessageLog.Type.valueOf(type_); - return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.Type.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.RoomMessageLog.Type result = net.iGap.proto.ProtoGlobal.RoomMessageLog.Type.valueOf(type_); + return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.Type.UNRECOGNIZED : result; } public static final int EXTRA_TYPE_FIELD_NUMBER = 2; @@ -2881,12 +2905,12 @@ public int getExtraTypeValue() { * optional .proto.RoomMessageLog.ExtraType extra_type = 2; */ public net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType getExtraType() { - net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType result = net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType.valueOf(extraType_); - return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType result = net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType.valueOf(extraType_); + return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType.UNRECOGNIZED : result; } public static final int TARGET_USER_FIELD_NUMBER = 3; - private net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser targetUser_; + private net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser targetUser_; /** * optional .proto.RoomMessageLog.TargetUser target_user = 3; */ @@ -2897,7 +2921,7 @@ public boolean hasTargetUser() { * optional .proto.RoomMessageLog.TargetUser target_user = 3; */ public net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser getTargetUser() { - return targetUser_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.getDefaultInstance() : targetUser_; + return targetUser_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.getDefaultInstance() : targetUser_; } /** * optional .proto.RoomMessageLog.TargetUser target_user = 3; @@ -2918,10 +2942,10 @@ public final boolean isInitialized() { public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { - if (type_ != net.iGap.proto.ProtoGlobal.RoomMessageLog.Type.USER_JOINED.getNumber()) { + if (type_ != net.iGap.proto.ProtoGlobal.RoomMessageLog.Type.USER_JOINED.getNumber()) { output.writeEnum(1, type_); } - if (extraType_ != net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType.NO_EXTRA.getNumber()) { + if (extraType_ != net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType.NO_EXTRA.getNumber()) { output.writeEnum(2, extraType_); } if (targetUser_ != null) { @@ -2934,11 +2958,11 @@ public int getSerializedSize() { if (size != -1) return size; size = 0; - if (type_ != net.iGap.proto.ProtoGlobal.RoomMessageLog.Type.USER_JOINED.getNumber()) { + if (type_ != net.iGap.proto.ProtoGlobal.RoomMessageLog.Type.USER_JOINED.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(1, type_); } - if (extraType_ != net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType.NO_EXTRA.getNumber()) { + if (extraType_ != net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType.NO_EXTRA.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(2, extraType_); } @@ -2951,15 +2975,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessageLog)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessageLog)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.RoomMessageLog other = (net.iGap.proto.ProtoGlobal.RoomMessageLog) obj; + net.iGap.proto.ProtoGlobal.RoomMessageLog other = (net.iGap.proto.ProtoGlobal.RoomMessageLog) obj; boolean result = true; result = result && type_ == other.type_; @@ -2972,7 +2997,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -2992,58 +3017,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom( + public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog 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 net.iGap.proto.ProtoGlobal.RoomMessageLog parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog 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 net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -3055,7 +3089,8 @@ public static net.iGap.proto.ProtoGlobal.RoomMessageLog parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessageLog prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessageLog prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -3063,9 +3098,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -3075,17 +3110,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.RoomMessageLog) - net.iGap.proto.ProtoGlobal.RoomMessageLogOrBuilder { + net.iGap.proto.ProtoGlobal.RoomMessageLogOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessageLog.class, net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessageLog.class, net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.RoomMessageLog.newBuilder() @@ -3094,7 +3129,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -3120,23 +3155,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageLog_descriptor; } - public net.iGap.proto.ProtoGlobal.RoomMessageLog getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.RoomMessageLog.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.RoomMessageLog getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.RoomMessageLog.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.RoomMessageLog build() { - net.iGap.proto.ProtoGlobal.RoomMessageLog result = buildPartial(); + public net.iGap.proto.ProtoGlobal.RoomMessageLog build() { + net.iGap.proto.ProtoGlobal.RoomMessageLog result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.RoomMessageLog buildPartial() { - net.iGap.proto.ProtoGlobal.RoomMessageLog result = new net.iGap.proto.ProtoGlobal.RoomMessageLog(this); + public net.iGap.proto.ProtoGlobal.RoomMessageLog buildPartial() { + net.iGap.proto.ProtoGlobal.RoomMessageLog result = new net.iGap.proto.ProtoGlobal.RoomMessageLog(this); result.type_ = type_; result.extraType_ = extraType_; if (targetUserBuilder_ == null) { @@ -3175,16 +3210,17 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessageLog) { - return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessageLog)other); + if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessageLog) { + return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessageLog) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessageLog other) { - if (other == net.iGap.proto.ProtoGlobal.RoomMessageLog.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessageLog other) { + if (other == net.iGap.proto.ProtoGlobal.RoomMessageLog.getDefaultInstance()) + return this; if (other.type_ != 0) { setTypeValue(other.getTypeValue()); } @@ -3206,11 +3242,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.RoomMessageLog parsedMessage = null; + net.iGap.proto.ProtoGlobal.RoomMessageLog parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessageLog) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessageLog) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -3239,8 +3275,8 @@ public Builder setTypeValue(int value) { * optional .proto.RoomMessageLog.Type type = 1; */ public net.iGap.proto.ProtoGlobal.RoomMessageLog.Type getType() { - net.iGap.proto.ProtoGlobal.RoomMessageLog.Type result = net.iGap.proto.ProtoGlobal.RoomMessageLog.Type.valueOf(type_); - return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.Type.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.RoomMessageLog.Type result = net.iGap.proto.ProtoGlobal.RoomMessageLog.Type.valueOf(type_); + return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.Type.UNRECOGNIZED : result; } /** * optional .proto.RoomMessageLog.Type type = 1; @@ -3249,7 +3285,7 @@ public Builder setType(net.iGap.proto.ProtoGlobal.RoomMessageLog.Type value) { if (value == null) { throw new NullPointerException(); } - + type_ = value.getNumber(); onChanged(); return this; @@ -3258,7 +3294,7 @@ public Builder setType(net.iGap.proto.ProtoGlobal.RoomMessageLog.Type value) { * optional .proto.RoomMessageLog.Type type = 1; */ public Builder clearType() { - + type_ = 0; onChanged(); return this; @@ -3283,8 +3319,8 @@ public Builder setExtraTypeValue(int value) { * optional .proto.RoomMessageLog.ExtraType extra_type = 2; */ public net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType getExtraType() { - net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType result = net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType.valueOf(extraType_); - return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType result = net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType.valueOf(extraType_); + return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType.UNRECOGNIZED : result; } /** * optional .proto.RoomMessageLog.ExtraType extra_type = 2; @@ -3293,7 +3329,7 @@ public Builder setExtraType(net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType if (value == null) { throw new NullPointerException(); } - + extraType_ = value.getNumber(); onChanged(); return this; @@ -3302,15 +3338,15 @@ public Builder setExtraType(net.iGap.proto.ProtoGlobal.RoomMessageLog.ExtraType * optional .proto.RoomMessageLog.ExtraType extra_type = 2; */ public Builder clearExtraType() { - + extraType_ = 0; onChanged(); return this; } - private net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser targetUser_ = null; + private net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser targetUser_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUserOrBuilder> targetUserBuilder_; + net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUserOrBuilder> targetUserBuilder_; /** * optional .proto.RoomMessageLog.TargetUser target_user = 3; */ @@ -3322,7 +3358,7 @@ public boolean hasTargetUser() { */ public net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser getTargetUser() { if (targetUserBuilder_ == null) { - return targetUser_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.getDefaultInstance() : targetUser_; + return targetUser_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.getDefaultInstance() : targetUser_; } else { return targetUserBuilder_.getMessage(); } @@ -3347,7 +3383,7 @@ public Builder setTargetUser(net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUse * optional .proto.RoomMessageLog.TargetUser target_user = 3; */ public Builder setTargetUser( - net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder builderForValue) { if (targetUserBuilder_ == null) { targetUser_ = builderForValue.build(); onChanged(); @@ -3364,7 +3400,7 @@ public Builder mergeTargetUser(net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetU if (targetUserBuilder_ == null) { if (targetUser_ != null) { targetUser_ = - net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.newBuilder(targetUser_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.newBuilder(targetUser_).mergeFrom(value).buildPartial(); } else { targetUser_ = value; } @@ -3393,7 +3429,7 @@ public Builder clearTargetUser() { * optional .proto.RoomMessageLog.TargetUser target_user = 3; */ public net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder getTargetUserBuilder() { - + onChanged(); return getTargetUserFieldBuilder().getBuilder(); } @@ -3405,18 +3441,18 @@ public net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUserOrBuilder getTargetUs return targetUserBuilder_.getMessageOrBuilder(); } else { return targetUser_ == null ? - net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.getDefaultInstance() : targetUser_; + net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.getDefaultInstance() : targetUser_; } } /** * optional .proto.RoomMessageLog.TargetUser target_user = 3; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUserOrBuilder> + net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUserOrBuilder> getTargetUserFieldBuilder() { if (targetUserBuilder_ == null) { targetUserBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUserOrBuilder>( + net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUser.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLog.TargetUserOrBuilder>( getTargetUser(), getParentForChildren(), isClean()); @@ -3441,10 +3477,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.RoomMessageLog) private static final net.iGap.proto.ProtoGlobal.RoomMessageLog DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessageLog(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessageLog(); } - public static net.iGap.proto.ProtoGlobal.RoomMessageLog getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.RoomMessageLog getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -3462,12 +3498,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.RoomMessageLog getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.RoomMessageLog getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -3564,7 +3600,7 @@ private RoomMessageContact() { email_ = com.google.protobuf.LazyStringArrayList.EMPTY; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -3590,25 +3626,25 @@ private RoomMessageContact( break; } case 10: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); firstName_ = s; break; } case 18: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); lastName_ = s; break; } case 26: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); nickname_ = s; break; } case 34: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); if (!((mutable_bitField0_ & 0x00000008) == 0x00000008)) { phone_ = new com.google.protobuf.LazyStringArrayList(); mutable_bitField0_ |= 0x00000008; @@ -3617,7 +3653,7 @@ private RoomMessageContact( break; } case 42: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); if (!((mutable_bitField0_ & 0x00000010) == 0x00000010)) { email_ = new com.google.protobuf.LazyStringArrayList(); mutable_bitField0_ |= 0x00000010; @@ -3644,30 +3680,30 @@ private RoomMessageContact( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageContact_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageContact_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageContact_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageContact_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessageContact.class, net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessageContact.class, net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder.class); } private int bitField0_; public static final int FIRST_NAME_FIELD_NUMBER = 1; - private volatile java.lang.Object firstName_; + private volatile java.lang.Object firstName_; /** * optional string first_name = 1; */ public java.lang.String getFirstName() { - java.lang.Object ref = firstName_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = firstName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); firstName_ = s; return s; } @@ -3677,11 +3713,11 @@ public java.lang.String getFirstName() { */ public com.google.protobuf.ByteString getFirstNameBytes() { - java.lang.Object ref = firstName_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = firstName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); firstName_ = b; return b; } else { @@ -3690,18 +3726,18 @@ public java.lang.String getFirstName() { } public static final int LAST_NAME_FIELD_NUMBER = 2; - private volatile java.lang.Object lastName_; + private volatile java.lang.Object lastName_; /** * optional string last_name = 2; */ public java.lang.String getLastName() { - java.lang.Object ref = lastName_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = lastName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); lastName_ = s; return s; } @@ -3711,11 +3747,11 @@ public java.lang.String getLastName() { */ public com.google.protobuf.ByteString getLastNameBytes() { - java.lang.Object ref = lastName_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = lastName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); lastName_ = b; return b; } else { @@ -3724,18 +3760,18 @@ public java.lang.String getLastName() { } public static final int NICKNAME_FIELD_NUMBER = 3; - private volatile java.lang.Object nickname_; + private volatile java.lang.Object nickname_; /** * optional string nickname = 3; */ public java.lang.String getNickname() { - java.lang.Object ref = nickname_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = nickname_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); nickname_ = s; return s; } @@ -3745,11 +3781,11 @@ public java.lang.String getNickname() { */ public com.google.protobuf.ByteString getNicknameBytes() { - java.lang.Object ref = nickname_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = nickname_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); nickname_ = b; return b; } else { @@ -3879,15 +3915,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessageContact)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessageContact)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.RoomMessageContact other = (net.iGap.proto.ProtoGlobal.RoomMessageContact) obj; + net.iGap.proto.ProtoGlobal.RoomMessageContact other = (net.iGap.proto.ProtoGlobal.RoomMessageContact) obj; boolean result = true; result = result && getFirstName() @@ -3903,7 +3940,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -3929,58 +3966,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom( + public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageContact 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 net.iGap.proto.ProtoGlobal.RoomMessageContact parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageContact 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 net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -3992,7 +4038,8 @@ public static net.iGap.proto.ProtoGlobal.RoomMessageContact parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessageContact prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessageContact prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -4000,9 +4047,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -4012,17 +4059,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.RoomMessageContact) - net.iGap.proto.ProtoGlobal.RoomMessageContactOrBuilder { + net.iGap.proto.ProtoGlobal.RoomMessageContactOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageContact_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageContact_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageContact_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageContact_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessageContact.class, net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessageContact.class, net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.RoomMessageContact.newBuilder() @@ -4031,7 +4078,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -4057,23 +4104,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageContact_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageContact_descriptor; } - public net.iGap.proto.ProtoGlobal.RoomMessageContact getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.RoomMessageContact.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.RoomMessageContact getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.RoomMessageContact.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.RoomMessageContact build() { - net.iGap.proto.ProtoGlobal.RoomMessageContact result = buildPartial(); + public net.iGap.proto.ProtoGlobal.RoomMessageContact build() { + net.iGap.proto.ProtoGlobal.RoomMessageContact result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.RoomMessageContact buildPartial() { - net.iGap.proto.ProtoGlobal.RoomMessageContact result = new net.iGap.proto.ProtoGlobal.RoomMessageContact(this); + public net.iGap.proto.ProtoGlobal.RoomMessageContact buildPartial() { + net.iGap.proto.ProtoGlobal.RoomMessageContact result = new net.iGap.proto.ProtoGlobal.RoomMessageContact(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; result.firstName_ = firstName_; @@ -4121,16 +4168,17 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessageContact) { - return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessageContact)other); + if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessageContact) { + return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessageContact) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessageContact other) { - if (other == net.iGap.proto.ProtoGlobal.RoomMessageContact.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessageContact other) { + if (other == net.iGap.proto.ProtoGlobal.RoomMessageContact.getDefaultInstance()) + return this; if (!other.getFirstName().isEmpty()) { firstName_ = other.firstName_; onChanged(); @@ -4175,11 +4223,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.RoomMessageContact parsedMessage = null; + net.iGap.proto.ProtoGlobal.RoomMessageContact parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessageContact) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessageContact) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -4190,20 +4238,20 @@ public Builder mergeFrom( } private int bitField0_; - private java.lang.Object firstName_ = ""; + private java.lang.Object firstName_ = ""; /** * optional string first_name = 1; */ public java.lang.String getFirstName() { - java.lang.Object ref = firstName_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = firstName_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); firstName_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -4211,11 +4259,11 @@ public java.lang.String getFirstName() { */ public com.google.protobuf.ByteString getFirstNameBytes() { - java.lang.Object ref = firstName_; + java.lang.Object ref = firstName_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); firstName_ = b; return b; } else { @@ -4226,11 +4274,11 @@ public java.lang.String getFirstName() { * optional string first_name = 1; */ public Builder setFirstName( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + firstName_ = value; onChanged(); return this; @@ -4239,7 +4287,7 @@ public Builder setFirstName( * optional string first_name = 1; */ public Builder clearFirstName() { - + firstName_ = getDefaultInstance().getFirstName(); onChanged(); return this; @@ -4253,26 +4301,26 @@ public Builder setFirstNameBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + firstName_ = value; onChanged(); return this; } - private java.lang.Object lastName_ = ""; + private java.lang.Object lastName_ = ""; /** * optional string last_name = 2; */ public java.lang.String getLastName() { - java.lang.Object ref = lastName_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = lastName_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); lastName_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -4280,11 +4328,11 @@ public java.lang.String getLastName() { */ public com.google.protobuf.ByteString getLastNameBytes() { - java.lang.Object ref = lastName_; + java.lang.Object ref = lastName_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); lastName_ = b; return b; } else { @@ -4295,11 +4343,11 @@ public java.lang.String getLastName() { * optional string last_name = 2; */ public Builder setLastName( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + lastName_ = value; onChanged(); return this; @@ -4308,7 +4356,7 @@ public Builder setLastName( * optional string last_name = 2; */ public Builder clearLastName() { - + lastName_ = getDefaultInstance().getLastName(); onChanged(); return this; @@ -4322,26 +4370,26 @@ public Builder setLastNameBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + lastName_ = value; onChanged(); return this; } - private java.lang.Object nickname_ = ""; + private java.lang.Object nickname_ = ""; /** * optional string nickname = 3; */ public java.lang.String getNickname() { - java.lang.Object ref = nickname_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = nickname_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); nickname_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -4349,11 +4397,11 @@ public java.lang.String getNickname() { */ public com.google.protobuf.ByteString getNicknameBytes() { - java.lang.Object ref = nickname_; + java.lang.Object ref = nickname_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); nickname_ = b; return b; } else { @@ -4364,11 +4412,11 @@ public java.lang.String getNickname() { * optional string nickname = 3; */ public Builder setNickname( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + nickname_ = value; onChanged(); return this; @@ -4377,7 +4425,7 @@ public Builder setNickname( * optional string nickname = 3; */ public Builder clearNickname() { - + nickname_ = getDefaultInstance().getNickname(); onChanged(); return this; @@ -4391,7 +4439,7 @@ public Builder setNicknameBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + nickname_ = value; onChanged(); return this; @@ -4434,7 +4482,7 @@ public java.lang.String getPhone(int index) { * repeated string phone = 4; */ public Builder setPhone( - int index, java.lang.String value) { + int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } @@ -4447,7 +4495,7 @@ public Builder setPhone( * repeated string phone = 4; */ public Builder addPhone( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } @@ -4460,7 +4508,7 @@ public Builder addPhone( * repeated string phone = 4; */ public Builder addAllPhone( - java.lang.Iterable values) { + java.lang.Iterable values) { ensurePhoneIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, phone_); @@ -4528,7 +4576,7 @@ public java.lang.String getEmail(int index) { * repeated string email = 5; */ public Builder setEmail( - int index, java.lang.String value) { + int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } @@ -4541,7 +4589,7 @@ public Builder setEmail( * repeated string email = 5; */ public Builder addEmail( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } @@ -4554,7 +4602,7 @@ public Builder addEmail( * repeated string email = 5; */ public Builder addAllEmail( - java.lang.Iterable values) { + java.lang.Iterable values) { ensureEmailIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, email_); @@ -4601,10 +4649,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.RoomMessageContact) private static final net.iGap.proto.ProtoGlobal.RoomMessageContact DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessageContact(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessageContact(); } - public static net.iGap.proto.ProtoGlobal.RoomMessageContact getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.RoomMessageContact getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -4622,12 +4670,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.RoomMessageContact getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.RoomMessageContact getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -4663,7 +4711,7 @@ private RoomMessageForwardFrom() { messageId_ = 0L; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -4711,14 +4759,14 @@ private RoomMessageForwardFrom( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageForwardFrom_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageForwardFrom_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageForwardFrom_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageForwardFrom_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom.class, net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom.class, net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom.Builder.class); } public static final int ROOM_ID_FIELD_NUMBER = 1; @@ -4777,15 +4825,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom other = (net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom) obj; + net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom other = (net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom) obj; boolean result = true; result = result && (getRoomId() @@ -4795,7 +4844,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -4813,58 +4862,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom( + public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom 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 net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom 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 net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -4876,7 +4934,8 @@ public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -4884,9 +4943,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -4896,17 +4955,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.RoomMessageForwardFrom) - net.iGap.proto.ProtoGlobal.RoomMessageForwardFromOrBuilder { + net.iGap.proto.ProtoGlobal.RoomMessageForwardFromOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageForwardFrom_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageForwardFrom_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageForwardFrom_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageForwardFrom_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom.class, net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom.class, net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom.newBuilder() @@ -4915,7 +4974,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -4935,23 +4994,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageForwardFrom_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessageForwardFrom_descriptor; } - public net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom build() { - net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom result = buildPartial(); + public net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom build() { + net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom buildPartial() { - net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom result = new net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom(this); + public net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom buildPartial() { + net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom result = new net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom(this); result.roomId_ = roomId_; result.messageId_ = messageId_; onBuilt(); @@ -4985,16 +5044,17 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom) { - return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom)other); + if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom) { + return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom other) { - if (other == net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom other) { + if (other == net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom.getDefaultInstance()) + return this; if (other.getRoomId() != 0L) { setRoomId(other.getRoomId()); } @@ -5013,11 +5073,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parsedMessage = null; + net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -5038,7 +5098,7 @@ public long getRoomId() { * optional uint64 room_id = 1; */ public Builder setRoomId(long value) { - + roomId_ = value; onChanged(); return this; @@ -5047,7 +5107,7 @@ public Builder setRoomId(long value) { * optional uint64 room_id = 1; */ public Builder clearRoomId() { - + roomId_ = 0L; onChanged(); return this; @@ -5064,7 +5124,7 @@ public long getMessageId() { * optional uint64 message_id = 2; */ public Builder setMessageId(long value) { - + messageId_ = value; onChanged(); return this; @@ -5073,7 +5133,7 @@ public Builder setMessageId(long value) { * optional uint64 message_id = 2; */ public Builder clearMessageId() { - + messageId_ = 0L; onChanged(); return this; @@ -5095,10 +5155,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.RoomMessageForwardFrom) private static final net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom(); } - public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -5116,12 +5176,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.RoomMessageForwardFrom getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -5292,7 +5352,7 @@ private RegisteredUser() { bio_ = ""; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -5323,7 +5383,7 @@ private RegisteredUser( break; } case 18: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); username_ = s; break; @@ -5334,31 +5394,31 @@ private RegisteredUser( break; } case 34: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); firstName_ = s; break; } case 42: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); lastName_ = s; break; } case 50: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); displayName_ = s; break; } case 58: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); initials_ = s; break; } case 66: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); color_ = s; break; @@ -5380,11 +5440,11 @@ private RegisteredUser( break; } case 98: { - net.iGap.proto.ProtoGlobal.Avatar.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.Avatar.Builder subBuilder = null; if (avatar_ != null) { subBuilder = avatar_.toBuilder(); } - avatar_ = input.readMessage(net.iGap.proto.ProtoGlobal.Avatar.parser(), extensionRegistry); + avatar_ = input.readMessage(net.iGap.proto.ProtoGlobal.Avatar.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(avatar_); avatar_ = subBuilder.buildPartial(); @@ -5403,13 +5463,13 @@ private RegisteredUser( break; } case 122: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); cacheId_ = s; break; } case 130: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); bio_ = s; break; @@ -5427,14 +5487,14 @@ private RegisteredUser( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RegisteredUser_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RegisteredUser_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RegisteredUser_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RegisteredUser_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RegisteredUser.class, net.iGap.proto.ProtoGlobal.RegisteredUser.Builder.class); + net.iGap.proto.ProtoGlobal.RegisteredUser.class, net.iGap.proto.ProtoGlobal.RegisteredUser.Builder.class); } /** @@ -5513,7 +5573,7 @@ public enum Status public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -5563,7 +5623,7 @@ public Status findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.RegisteredUser.getDescriptor().getEnumTypes().get(0); + return net.iGap.proto.ProtoGlobal.RegisteredUser.getDescriptor().getEnumTypes().get(0); } private static final Status[] VALUES = values(); @@ -5571,7 +5631,7 @@ public Status findValueByNumber(int number) { public static Status valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -5599,18 +5659,18 @@ public long getId() { } public static final int USERNAME_FIELD_NUMBER = 2; - private volatile java.lang.Object username_; + private volatile java.lang.Object username_; /** * optional string username = 2; */ public java.lang.String getUsername() { - java.lang.Object ref = username_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = username_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); username_ = s; return s; } @@ -5620,11 +5680,11 @@ public java.lang.String getUsername() { */ public com.google.protobuf.ByteString getUsernameBytes() { - java.lang.Object ref = username_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = username_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); username_ = b; return b; } else { @@ -5642,18 +5702,18 @@ public long getPhone() { } public static final int FIRST_NAME_FIELD_NUMBER = 4; - private volatile java.lang.Object firstName_; + private volatile java.lang.Object firstName_; /** * optional string first_name = 4; */ public java.lang.String getFirstName() { - java.lang.Object ref = firstName_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = firstName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); firstName_ = s; return s; } @@ -5663,11 +5723,11 @@ public java.lang.String getFirstName() { */ public com.google.protobuf.ByteString getFirstNameBytes() { - java.lang.Object ref = firstName_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = firstName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); firstName_ = b; return b; } else { @@ -5676,18 +5736,18 @@ public java.lang.String getFirstName() { } public static final int LAST_NAME_FIELD_NUMBER = 5; - private volatile java.lang.Object lastName_; + private volatile java.lang.Object lastName_; /** * optional string last_name = 5; */ public java.lang.String getLastName() { - java.lang.Object ref = lastName_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = lastName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); lastName_ = s; return s; } @@ -5697,11 +5757,11 @@ public java.lang.String getLastName() { */ public com.google.protobuf.ByteString getLastNameBytes() { - java.lang.Object ref = lastName_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = lastName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); lastName_ = b; return b; } else { @@ -5710,18 +5770,18 @@ public java.lang.String getLastName() { } public static final int DISPLAY_NAME_FIELD_NUMBER = 6; - private volatile java.lang.Object displayName_; + private volatile java.lang.Object displayName_; /** * optional string display_name = 6; */ public java.lang.String getDisplayName() { - java.lang.Object ref = displayName_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = displayName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); displayName_ = s; return s; } @@ -5731,11 +5791,11 @@ public java.lang.String getDisplayName() { */ public com.google.protobuf.ByteString getDisplayNameBytes() { - java.lang.Object ref = displayName_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = displayName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); displayName_ = b; return b; } else { @@ -5744,18 +5804,18 @@ public java.lang.String getDisplayName() { } public static final int INITIALS_FIELD_NUMBER = 7; - private volatile java.lang.Object initials_; + private volatile java.lang.Object initials_; /** * optional string initials = 7; */ public java.lang.String getInitials() { - java.lang.Object ref = initials_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = initials_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); initials_ = s; return s; } @@ -5765,11 +5825,11 @@ public java.lang.String getInitials() { */ public com.google.protobuf.ByteString getInitialsBytes() { - java.lang.Object ref = initials_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = initials_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); initials_ = b; return b; } else { @@ -5778,18 +5838,18 @@ public java.lang.String getInitials() { } public static final int COLOR_FIELD_NUMBER = 8; - private volatile java.lang.Object color_; + private volatile java.lang.Object color_; /** * optional string color = 8; */ public java.lang.String getColor() { - java.lang.Object ref = color_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = color_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); color_ = s; return s; } @@ -5799,11 +5859,11 @@ public java.lang.String getColor() { */ public com.google.protobuf.ByteString getColorBytes() { - java.lang.Object ref = color_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = color_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); color_ = b; return b; } else { @@ -5823,8 +5883,8 @@ public int getStatusValue() { * optional .proto.RegisteredUser.Status status = 9; */ public net.iGap.proto.ProtoGlobal.RegisteredUser.Status getStatus() { - net.iGap.proto.ProtoGlobal.RegisteredUser.Status result = net.iGap.proto.ProtoGlobal.RegisteredUser.Status.valueOf(status_); - return result == null ? net.iGap.proto.ProtoGlobal.RegisteredUser.Status.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.RegisteredUser.Status result = net.iGap.proto.ProtoGlobal.RegisteredUser.Status.valueOf(status_); + return result == null ? net.iGap.proto.ProtoGlobal.RegisteredUser.Status.UNRECOGNIZED : result; } public static final int LAST_SEEN_FIELD_NUMBER = 10; @@ -5846,7 +5906,7 @@ public int getAvatarCount() { } public static final int AVATAR_FIELD_NUMBER = 12; - private net.iGap.proto.ProtoGlobal.Avatar avatar_; + private net.iGap.proto.ProtoGlobal.Avatar avatar_; /** * optional .proto.Avatar avatar = 12; */ @@ -5857,7 +5917,7 @@ public boolean hasAvatar() { * optional .proto.Avatar avatar = 12; */ public net.iGap.proto.ProtoGlobal.Avatar getAvatar() { - return avatar_ == null ? net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; + return avatar_ == null ? net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; } /** * optional .proto.Avatar avatar = 12; @@ -5885,18 +5945,18 @@ public boolean getDeleted() { } public static final int CACHE_ID_FIELD_NUMBER = 15; - private volatile java.lang.Object cacheId_; + private volatile java.lang.Object cacheId_; /** * optional string cache_id = 15; */ public java.lang.String getCacheId() { - java.lang.Object ref = cacheId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = cacheId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); cacheId_ = s; return s; } @@ -5906,11 +5966,11 @@ public java.lang.String getCacheId() { */ public com.google.protobuf.ByteString getCacheIdBytes() { - java.lang.Object ref = cacheId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = cacheId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); cacheId_ = b; return b; } else { @@ -5919,18 +5979,18 @@ public java.lang.String getCacheId() { } public static final int BIO_FIELD_NUMBER = 16; - private volatile java.lang.Object bio_; + private volatile java.lang.Object bio_; /** * optional string bio = 16; */ public java.lang.String getBio() { - java.lang.Object ref = bio_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = bio_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); bio_ = s; return s; } @@ -5940,11 +6000,11 @@ public java.lang.String getBio() { */ public com.google.protobuf.ByteString getBioBytes() { - java.lang.Object ref = bio_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = bio_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); bio_ = b; return b; } else { @@ -5988,7 +6048,7 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (!getColorBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 8, color_); } - if (status_ != net.iGap.proto.ProtoGlobal.RegisteredUser.Status.LONG_TIME_AGO.getNumber()) { + if (status_ != net.iGap.proto.ProtoGlobal.RegisteredUser.Status.LONG_TIME_AGO.getNumber()) { output.writeEnum(9, status_); } if (lastSeen_ != 0) { @@ -6045,7 +6105,7 @@ public int getSerializedSize() { if (!getColorBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(8, color_); } - if (status_ != net.iGap.proto.ProtoGlobal.RegisteredUser.Status.LONG_TIME_AGO.getNumber()) { + if (status_ != net.iGap.proto.ProtoGlobal.RegisteredUser.Status.LONG_TIME_AGO.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(9, status_); } @@ -6080,15 +6140,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.RegisteredUser)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.RegisteredUser)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.RegisteredUser other = (net.iGap.proto.ProtoGlobal.RegisteredUser) obj; + net.iGap.proto.ProtoGlobal.RegisteredUser other = (net.iGap.proto.ProtoGlobal.RegisteredUser) obj; boolean result = true; result = result && (getId() @@ -6128,7 +6189,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -6178,58 +6239,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom( + public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom( + + public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom( + + public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom( + + public static net.iGap.proto.ProtoGlobal.RegisteredUser 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 net.iGap.proto.ProtoGlobal.RegisteredUser parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RegisteredUser parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RegisteredUser parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.RegisteredUser 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 net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom( + + public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom( + + public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -6241,7 +6311,8 @@ public static net.iGap.proto.ProtoGlobal.RegisteredUser parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RegisteredUser prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RegisteredUser prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -6249,9 +6320,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -6261,17 +6332,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.RegisteredUser) - net.iGap.proto.ProtoGlobal.RegisteredUserOrBuilder { + net.iGap.proto.ProtoGlobal.RegisteredUserOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RegisteredUser_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RegisteredUser_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RegisteredUser_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RegisteredUser_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RegisteredUser.class, net.iGap.proto.ProtoGlobal.RegisteredUser.Builder.class); + net.iGap.proto.ProtoGlobal.RegisteredUser.class, net.iGap.proto.ProtoGlobal.RegisteredUser.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.RegisteredUser.newBuilder() @@ -6280,7 +6351,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -6332,23 +6403,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RegisteredUser_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RegisteredUser_descriptor; } - public net.iGap.proto.ProtoGlobal.RegisteredUser getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.RegisteredUser.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.RegisteredUser getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.RegisteredUser.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.RegisteredUser build() { - net.iGap.proto.ProtoGlobal.RegisteredUser result = buildPartial(); + public net.iGap.proto.ProtoGlobal.RegisteredUser build() { + net.iGap.proto.ProtoGlobal.RegisteredUser result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.RegisteredUser buildPartial() { - net.iGap.proto.ProtoGlobal.RegisteredUser result = new net.iGap.proto.ProtoGlobal.RegisteredUser(this); + public net.iGap.proto.ProtoGlobal.RegisteredUser buildPartial() { + net.iGap.proto.ProtoGlobal.RegisteredUser result = new net.iGap.proto.ProtoGlobal.RegisteredUser(this); result.id_ = id_; result.username_ = username_; result.phone_ = phone_; @@ -6400,16 +6471,17 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.RegisteredUser) { - return mergeFrom((net.iGap.proto.ProtoGlobal.RegisteredUser)other); + if (other instanceof net.iGap.proto.ProtoGlobal.RegisteredUser) { + return mergeFrom((net.iGap.proto.ProtoGlobal.RegisteredUser) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RegisteredUser other) { - if (other == net.iGap.proto.ProtoGlobal.RegisteredUser.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RegisteredUser other) { + if (other == net.iGap.proto.ProtoGlobal.RegisteredUser.getDefaultInstance()) + return this; if (other.getId() != 0L) { setId(other.getId()); } @@ -6478,11 +6550,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.RegisteredUser parsedMessage = null; + net.iGap.proto.ProtoGlobal.RegisteredUser parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.RegisteredUser) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.RegisteredUser) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -6503,7 +6575,7 @@ public long getId() { * optional uint64 id = 1; */ public Builder setId(long value) { - + id_ = value; onChanged(); return this; @@ -6512,26 +6584,26 @@ public Builder setId(long value) { * optional uint64 id = 1; */ public Builder clearId() { - + id_ = 0L; onChanged(); return this; } - private java.lang.Object username_ = ""; + private java.lang.Object username_ = ""; /** * optional string username = 2; */ public java.lang.String getUsername() { - java.lang.Object ref = username_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = username_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); username_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -6539,11 +6611,11 @@ public java.lang.String getUsername() { */ public com.google.protobuf.ByteString getUsernameBytes() { - java.lang.Object ref = username_; + java.lang.Object ref = username_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); username_ = b; return b; } else { @@ -6554,11 +6626,11 @@ public java.lang.String getUsername() { * optional string username = 2; */ public Builder setUsername( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + username_ = value; onChanged(); return this; @@ -6567,7 +6639,7 @@ public Builder setUsername( * optional string username = 2; */ public Builder clearUsername() { - + username_ = getDefaultInstance().getUsername(); onChanged(); return this; @@ -6581,7 +6653,7 @@ public Builder setUsernameBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + username_ = value; onChanged(); return this; @@ -6598,7 +6670,7 @@ public long getPhone() { * optional uint64 phone = 3; */ public Builder setPhone(long value) { - + phone_ = value; onChanged(); return this; @@ -6607,26 +6679,26 @@ public Builder setPhone(long value) { * optional uint64 phone = 3; */ public Builder clearPhone() { - + phone_ = 0L; onChanged(); return this; } - private java.lang.Object firstName_ = ""; + private java.lang.Object firstName_ = ""; /** * optional string first_name = 4; */ public java.lang.String getFirstName() { - java.lang.Object ref = firstName_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = firstName_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); firstName_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -6634,11 +6706,11 @@ public java.lang.String getFirstName() { */ public com.google.protobuf.ByteString getFirstNameBytes() { - java.lang.Object ref = firstName_; + java.lang.Object ref = firstName_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); firstName_ = b; return b; } else { @@ -6649,11 +6721,11 @@ public java.lang.String getFirstName() { * optional string first_name = 4; */ public Builder setFirstName( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + firstName_ = value; onChanged(); return this; @@ -6662,7 +6734,7 @@ public Builder setFirstName( * optional string first_name = 4; */ public Builder clearFirstName() { - + firstName_ = getDefaultInstance().getFirstName(); onChanged(); return this; @@ -6676,26 +6748,26 @@ public Builder setFirstNameBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + firstName_ = value; onChanged(); return this; } - private java.lang.Object lastName_ = ""; + private java.lang.Object lastName_ = ""; /** * optional string last_name = 5; */ public java.lang.String getLastName() { - java.lang.Object ref = lastName_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = lastName_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); lastName_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -6703,11 +6775,11 @@ public java.lang.String getLastName() { */ public com.google.protobuf.ByteString getLastNameBytes() { - java.lang.Object ref = lastName_; + java.lang.Object ref = lastName_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); lastName_ = b; return b; } else { @@ -6718,11 +6790,11 @@ public java.lang.String getLastName() { * optional string last_name = 5; */ public Builder setLastName( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + lastName_ = value; onChanged(); return this; @@ -6731,7 +6803,7 @@ public Builder setLastName( * optional string last_name = 5; */ public Builder clearLastName() { - + lastName_ = getDefaultInstance().getLastName(); onChanged(); return this; @@ -6745,26 +6817,26 @@ public Builder setLastNameBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + lastName_ = value; onChanged(); return this; } - private java.lang.Object displayName_ = ""; + private java.lang.Object displayName_ = ""; /** * optional string display_name = 6; */ public java.lang.String getDisplayName() { - java.lang.Object ref = displayName_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = displayName_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); displayName_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -6772,11 +6844,11 @@ public java.lang.String getDisplayName() { */ public com.google.protobuf.ByteString getDisplayNameBytes() { - java.lang.Object ref = displayName_; + java.lang.Object ref = displayName_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); displayName_ = b; return b; } else { @@ -6787,11 +6859,11 @@ public java.lang.String getDisplayName() { * optional string display_name = 6; */ public Builder setDisplayName( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + displayName_ = value; onChanged(); return this; @@ -6800,7 +6872,7 @@ public Builder setDisplayName( * optional string display_name = 6; */ public Builder clearDisplayName() { - + displayName_ = getDefaultInstance().getDisplayName(); onChanged(); return this; @@ -6814,26 +6886,26 @@ public Builder setDisplayNameBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + displayName_ = value; onChanged(); return this; } - private java.lang.Object initials_ = ""; + private java.lang.Object initials_ = ""; /** * optional string initials = 7; */ public java.lang.String getInitials() { - java.lang.Object ref = initials_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = initials_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); initials_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -6841,11 +6913,11 @@ public java.lang.String getInitials() { */ public com.google.protobuf.ByteString getInitialsBytes() { - java.lang.Object ref = initials_; + java.lang.Object ref = initials_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); initials_ = b; return b; } else { @@ -6856,11 +6928,11 @@ public java.lang.String getInitials() { * optional string initials = 7; */ public Builder setInitials( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + initials_ = value; onChanged(); return this; @@ -6869,7 +6941,7 @@ public Builder setInitials( * optional string initials = 7; */ public Builder clearInitials() { - + initials_ = getDefaultInstance().getInitials(); onChanged(); return this; @@ -6883,26 +6955,26 @@ public Builder setInitialsBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + initials_ = value; onChanged(); return this; } - private java.lang.Object color_ = ""; + private java.lang.Object color_ = ""; /** * optional string color = 8; */ public java.lang.String getColor() { - java.lang.Object ref = color_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = color_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); color_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -6910,11 +6982,11 @@ public java.lang.String getColor() { */ public com.google.protobuf.ByteString getColorBytes() { - java.lang.Object ref = color_; + java.lang.Object ref = color_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); color_ = b; return b; } else { @@ -6925,11 +6997,11 @@ public java.lang.String getColor() { * optional string color = 8; */ public Builder setColor( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + color_ = value; onChanged(); return this; @@ -6938,7 +7010,7 @@ public Builder setColor( * optional string color = 8; */ public Builder clearColor() { - + color_ = getDefaultInstance().getColor(); onChanged(); return this; @@ -6952,7 +7024,7 @@ public Builder setColorBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + color_ = value; onChanged(); return this; @@ -6977,8 +7049,8 @@ public Builder setStatusValue(int value) { * optional .proto.RegisteredUser.Status status = 9; */ public net.iGap.proto.ProtoGlobal.RegisteredUser.Status getStatus() { - net.iGap.proto.ProtoGlobal.RegisteredUser.Status result = net.iGap.proto.ProtoGlobal.RegisteredUser.Status.valueOf(status_); - return result == null ? net.iGap.proto.ProtoGlobal.RegisteredUser.Status.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.RegisteredUser.Status result = net.iGap.proto.ProtoGlobal.RegisteredUser.Status.valueOf(status_); + return result == null ? net.iGap.proto.ProtoGlobal.RegisteredUser.Status.UNRECOGNIZED : result; } /** * optional .proto.RegisteredUser.Status status = 9; @@ -6987,7 +7059,7 @@ public Builder setStatus(net.iGap.proto.ProtoGlobal.RegisteredUser.Status value) if (value == null) { throw new NullPointerException(); } - + status_ = value.getNumber(); onChanged(); return this; @@ -6996,7 +7068,7 @@ public Builder setStatus(net.iGap.proto.ProtoGlobal.RegisteredUser.Status value) * optional .proto.RegisteredUser.Status status = 9; */ public Builder clearStatus() { - + status_ = 0; onChanged(); return this; @@ -7013,7 +7085,7 @@ public int getLastSeen() { * optional uint32 last_seen = 10; */ public Builder setLastSeen(int value) { - + lastSeen_ = value; onChanged(); return this; @@ -7022,7 +7094,7 @@ public Builder setLastSeen(int value) { * optional uint32 last_seen = 10; */ public Builder clearLastSeen() { - + lastSeen_ = 0; onChanged(); return this; @@ -7039,7 +7111,7 @@ public int getAvatarCount() { * optional uint32 avatar_count = 11; */ public Builder setAvatarCount(int value) { - + avatarCount_ = value; onChanged(); return this; @@ -7048,15 +7120,15 @@ public Builder setAvatarCount(int value) { * optional uint32 avatar_count = 11; */ public Builder clearAvatarCount() { - + avatarCount_ = 0; onChanged(); return this; } - private net.iGap.proto.ProtoGlobal.Avatar avatar_ = null; + private net.iGap.proto.ProtoGlobal.Avatar avatar_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder> avatarBuilder_; + net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder> avatarBuilder_; /** * optional .proto.Avatar avatar = 12; */ @@ -7068,7 +7140,7 @@ public boolean hasAvatar() { */ public net.iGap.proto.ProtoGlobal.Avatar getAvatar() { if (avatarBuilder_ == null) { - return avatar_ == null ? net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; + return avatar_ == null ? net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; } else { return avatarBuilder_.getMessage(); } @@ -7093,7 +7165,7 @@ public Builder setAvatar(net.iGap.proto.ProtoGlobal.Avatar value) { * optional .proto.Avatar avatar = 12; */ public Builder setAvatar( - net.iGap.proto.ProtoGlobal.Avatar.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.Avatar.Builder builderForValue) { if (avatarBuilder_ == null) { avatar_ = builderForValue.build(); onChanged(); @@ -7110,7 +7182,7 @@ public Builder mergeAvatar(net.iGap.proto.ProtoGlobal.Avatar value) { if (avatarBuilder_ == null) { if (avatar_ != null) { avatar_ = - net.iGap.proto.ProtoGlobal.Avatar.newBuilder(avatar_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.Avatar.newBuilder(avatar_).mergeFrom(value).buildPartial(); } else { avatar_ = value; } @@ -7139,7 +7211,7 @@ public Builder clearAvatar() { * optional .proto.Avatar avatar = 12; */ public net.iGap.proto.ProtoGlobal.Avatar.Builder getAvatarBuilder() { - + onChanged(); return getAvatarFieldBuilder().getBuilder(); } @@ -7151,18 +7223,18 @@ public net.iGap.proto.ProtoGlobal.AvatarOrBuilder getAvatarOrBuilder() { return avatarBuilder_.getMessageOrBuilder(); } else { return avatar_ == null ? - net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; + net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; } } /** * optional .proto.Avatar avatar = 12; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder> + net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder> getAvatarFieldBuilder() { if (avatarBuilder_ == null) { avatarBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder>( + net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder>( getAvatar(), getParentForChildren(), isClean()); @@ -7182,7 +7254,7 @@ public boolean getMutual() { * optional bool mutual = 13; */ public Builder setMutual(boolean value) { - + mutual_ = value; onChanged(); return this; @@ -7191,7 +7263,7 @@ public Builder setMutual(boolean value) { * optional bool mutual = 13; */ public Builder clearMutual() { - + mutual_ = false; onChanged(); return this; @@ -7208,7 +7280,7 @@ public boolean getDeleted() { * optional bool deleted = 14; */ public Builder setDeleted(boolean value) { - + deleted_ = value; onChanged(); return this; @@ -7217,26 +7289,26 @@ public Builder setDeleted(boolean value) { * optional bool deleted = 14; */ public Builder clearDeleted() { - + deleted_ = false; onChanged(); return this; } - private java.lang.Object cacheId_ = ""; + private java.lang.Object cacheId_ = ""; /** * optional string cache_id = 15; */ public java.lang.String getCacheId() { - java.lang.Object ref = cacheId_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = cacheId_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); cacheId_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -7244,11 +7316,11 @@ public java.lang.String getCacheId() { */ public com.google.protobuf.ByteString getCacheIdBytes() { - java.lang.Object ref = cacheId_; + java.lang.Object ref = cacheId_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); cacheId_ = b; return b; } else { @@ -7259,11 +7331,11 @@ public java.lang.String getCacheId() { * optional string cache_id = 15; */ public Builder setCacheId( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + cacheId_ = value; onChanged(); return this; @@ -7272,7 +7344,7 @@ public Builder setCacheId( * optional string cache_id = 15; */ public Builder clearCacheId() { - + cacheId_ = getDefaultInstance().getCacheId(); onChanged(); return this; @@ -7286,26 +7358,26 @@ public Builder setCacheIdBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + cacheId_ = value; onChanged(); return this; } - private java.lang.Object bio_ = ""; + private java.lang.Object bio_ = ""; /** * optional string bio = 16; */ public java.lang.String getBio() { - java.lang.Object ref = bio_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = bio_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); bio_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -7313,11 +7385,11 @@ public java.lang.String getBio() { */ public com.google.protobuf.ByteString getBioBytes() { - java.lang.Object ref = bio_; + java.lang.Object ref = bio_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); bio_ = b; return b; } else { @@ -7328,11 +7400,11 @@ public java.lang.String getBio() { * optional string bio = 16; */ public Builder setBio( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + bio_ = value; onChanged(); return this; @@ -7341,7 +7413,7 @@ public Builder setBio( * optional string bio = 16; */ public Builder clearBio() { - + bio_ = getDefaultInstance().getBio(); onChanged(); return this; @@ -7355,7 +7427,7 @@ public Builder setBioBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + bio_ = value; onChanged(); return this; @@ -7377,10 +7449,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.RegisteredUser) private static final net.iGap.proto.ProtoGlobal.RegisteredUser DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RegisteredUser(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RegisteredUser(); } - public static net.iGap.proto.ProtoGlobal.RegisteredUser getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.RegisteredUser getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -7398,12 +7470,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.RegisteredUser getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.RegisteredUser getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -7446,7 +7518,7 @@ private Avatar() { id_ = 0L; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -7477,11 +7549,11 @@ private Avatar( break; } case 18: { - net.iGap.proto.ProtoGlobal.File.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.File.Builder subBuilder = null; if (file_ != null) { subBuilder = file_.toBuilder(); } - file_ = input.readMessage(net.iGap.proto.ProtoGlobal.File.parser(), extensionRegistry); + file_ = input.readMessage(net.iGap.proto.ProtoGlobal.File.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(file_); file_ = subBuilder.buildPartial(); @@ -7502,14 +7574,14 @@ private Avatar( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Avatar_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_Avatar_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Avatar_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_Avatar_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.Avatar.class, net.iGap.proto.ProtoGlobal.Avatar.Builder.class); + net.iGap.proto.ProtoGlobal.Avatar.class, net.iGap.proto.ProtoGlobal.Avatar.Builder.class); } public static final int ID_FIELD_NUMBER = 1; @@ -7522,7 +7594,7 @@ public long getId() { } public static final int FILE_FIELD_NUMBER = 2; - private net.iGap.proto.ProtoGlobal.File file_; + private net.iGap.proto.ProtoGlobal.File file_; /** * optional .proto.File file = 2; */ @@ -7533,7 +7605,7 @@ public boolean hasFile() { * optional .proto.File file = 2; */ public net.iGap.proto.ProtoGlobal.File getFile() { - return file_ == null ? net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : file_; + return file_ == null ? net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : file_; } /** * optional .proto.File file = 2; @@ -7580,15 +7652,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.Avatar)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.Avatar)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.Avatar other = (net.iGap.proto.ProtoGlobal.Avatar) obj; + net.iGap.proto.ProtoGlobal.Avatar other = (net.iGap.proto.ProtoGlobal.Avatar) obj; boolean result = true; result = result && (getId() @@ -7601,7 +7674,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -7620,58 +7693,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.Avatar parseFrom( + public static net.iGap.proto.ProtoGlobal.Avatar parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.Avatar parseFrom( + + public static net.iGap.proto.ProtoGlobal.Avatar parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.Avatar parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.Avatar parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.Avatar parseFrom( + + public static net.iGap.proto.ProtoGlobal.Avatar parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.Avatar parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.Avatar parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.Avatar parseFrom( + + public static net.iGap.proto.ProtoGlobal.Avatar 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 net.iGap.proto.ProtoGlobal.Avatar parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.Avatar parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.Avatar parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.Avatar 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 net.iGap.proto.ProtoGlobal.Avatar parseFrom( + + public static net.iGap.proto.ProtoGlobal.Avatar parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.Avatar parseFrom( + + public static net.iGap.proto.ProtoGlobal.Avatar parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -7683,7 +7765,8 @@ public static net.iGap.proto.ProtoGlobal.Avatar parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.Avatar prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.Avatar prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -7691,9 +7774,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -7703,17 +7786,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.Avatar) - net.iGap.proto.ProtoGlobal.AvatarOrBuilder { + net.iGap.proto.ProtoGlobal.AvatarOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Avatar_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_Avatar_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Avatar_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_Avatar_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.Avatar.class, net.iGap.proto.ProtoGlobal.Avatar.Builder.class); + net.iGap.proto.ProtoGlobal.Avatar.class, net.iGap.proto.ProtoGlobal.Avatar.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.Avatar.newBuilder() @@ -7722,7 +7805,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -7746,23 +7829,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Avatar_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_Avatar_descriptor; } - public net.iGap.proto.ProtoGlobal.Avatar getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.Avatar getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.Avatar build() { - net.iGap.proto.ProtoGlobal.Avatar result = buildPartial(); + public net.iGap.proto.ProtoGlobal.Avatar build() { + net.iGap.proto.ProtoGlobal.Avatar result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.Avatar buildPartial() { - net.iGap.proto.ProtoGlobal.Avatar result = new net.iGap.proto.ProtoGlobal.Avatar(this); + public net.iGap.proto.ProtoGlobal.Avatar buildPartial() { + net.iGap.proto.ProtoGlobal.Avatar result = new net.iGap.proto.ProtoGlobal.Avatar(this); result.id_ = id_; if (fileBuilder_ == null) { result.file_ = file_; @@ -7800,16 +7883,16 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.Avatar) { - return mergeFrom((net.iGap.proto.ProtoGlobal.Avatar)other); + if (other instanceof net.iGap.proto.ProtoGlobal.Avatar) { + return mergeFrom((net.iGap.proto.ProtoGlobal.Avatar) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.Avatar other) { - if (other == net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.Avatar other) { + if (other == net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance()) return this; if (other.getId() != 0L) { setId(other.getId()); } @@ -7828,11 +7911,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.Avatar parsedMessage = null; + net.iGap.proto.ProtoGlobal.Avatar parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.Avatar) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.Avatar) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -7853,7 +7936,7 @@ public long getId() { * optional uint64 id = 1; */ public Builder setId(long value) { - + id_ = value; onChanged(); return this; @@ -7862,15 +7945,15 @@ public Builder setId(long value) { * optional uint64 id = 1; */ public Builder clearId() { - + id_ = 0L; onChanged(); return this; } - private net.iGap.proto.ProtoGlobal.File file_ = null; + private net.iGap.proto.ProtoGlobal.File file_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder> fileBuilder_; + net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder> fileBuilder_; /** * optional .proto.File file = 2; */ @@ -7882,7 +7965,7 @@ public boolean hasFile() { */ public net.iGap.proto.ProtoGlobal.File getFile() { if (fileBuilder_ == null) { - return file_ == null ? net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : file_; + return file_ == null ? net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : file_; } else { return fileBuilder_.getMessage(); } @@ -7907,7 +7990,7 @@ public Builder setFile(net.iGap.proto.ProtoGlobal.File value) { * optional .proto.File file = 2; */ public Builder setFile( - net.iGap.proto.ProtoGlobal.File.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.File.Builder builderForValue) { if (fileBuilder_ == null) { file_ = builderForValue.build(); onChanged(); @@ -7924,7 +8007,7 @@ public Builder mergeFile(net.iGap.proto.ProtoGlobal.File value) { if (fileBuilder_ == null) { if (file_ != null) { file_ = - net.iGap.proto.ProtoGlobal.File.newBuilder(file_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.File.newBuilder(file_).mergeFrom(value).buildPartial(); } else { file_ = value; } @@ -7953,7 +8036,7 @@ public Builder clearFile() { * optional .proto.File file = 2; */ public net.iGap.proto.ProtoGlobal.File.Builder getFileBuilder() { - + onChanged(); return getFileFieldBuilder().getBuilder(); } @@ -7965,18 +8048,18 @@ public net.iGap.proto.ProtoGlobal.FileOrBuilder getFileOrBuilder() { return fileBuilder_.getMessageOrBuilder(); } else { return file_ == null ? - net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : file_; + net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : file_; } } /** * optional .proto.File file = 2; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder> + net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder> getFileFieldBuilder() { if (fileBuilder_ == null) { fileBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder>( + net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder>( getFile(), getParentForChildren(), isClean()); @@ -8001,10 +8084,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.Avatar) private static final net.iGap.proto.ProtoGlobal.Avatar DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.Avatar(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.Avatar(); } - public static net.iGap.proto.ProtoGlobal.Avatar getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.Avatar getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -8022,12 +8105,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.Avatar getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.Avatar getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -8244,7 +8327,7 @@ private RoomMessage() { extraType_ = 0; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -8297,17 +8380,17 @@ private RoomMessage( break; } case 50: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); message_ = s; break; } case 58: { - net.iGap.proto.ProtoGlobal.File.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.File.Builder subBuilder = null; if (attachment_ != null) { subBuilder = attachment_.toBuilder(); } - attachment_ = input.readMessage(net.iGap.proto.ProtoGlobal.File.parser(), extensionRegistry); + attachment_ = input.readMessage(net.iGap.proto.ProtoGlobal.File.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(attachment_); attachment_ = subBuilder.buildPartial(); @@ -8316,11 +8399,11 @@ private RoomMessage( break; } case 66: { - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder subBuilder = null; if (author_ != null) { subBuilder = author_.toBuilder(); } - author_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.Author.parser(), extensionRegistry); + author_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.Author.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(author_); author_ = subBuilder.buildPartial(); @@ -8329,11 +8412,11 @@ private RoomMessage( break; } case 74: { - net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder subBuilder = null; if (location_ != null) { subBuilder = location_.toBuilder(); } - location_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessageLocation.parser(), extensionRegistry); + location_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessageLocation.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(location_); location_ = subBuilder.buildPartial(); @@ -8342,11 +8425,11 @@ private RoomMessage( break; } case 82: { - net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder subBuilder = null; if (log_ != null) { subBuilder = log_.toBuilder(); } - log_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessageLog.parser(), extensionRegistry); + log_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessageLog.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(log_); log_ = subBuilder.buildPartial(); @@ -8355,11 +8438,11 @@ private RoomMessage( break; } case 90: { - net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder subBuilder = null; if (contact_ != null) { subBuilder = contact_.toBuilder(); } - contact_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessageContact.parser(), extensionRegistry); + contact_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessageContact.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(contact_); contact_ = subBuilder.buildPartial(); @@ -8388,11 +8471,11 @@ private RoomMessage( break; } case 130: { - net.iGap.proto.ProtoGlobal.RoomMessage.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.RoomMessage.Builder subBuilder = null; if (forwardFrom_ != null) { subBuilder = forwardFrom_.toBuilder(); } - forwardFrom_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.parser(), extensionRegistry); + forwardFrom_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(forwardFrom_); forwardFrom_ = subBuilder.buildPartial(); @@ -8401,11 +8484,11 @@ private RoomMessage( break; } case 138: { - net.iGap.proto.ProtoGlobal.RoomMessage.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.RoomMessage.Builder subBuilder = null; if (replyTo_ != null) { subBuilder = replyTo_.toBuilder(); } - replyTo_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.parser(), extensionRegistry); + replyTo_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(replyTo_); replyTo_ = subBuilder.buildPartial(); @@ -8425,11 +8508,11 @@ private RoomMessage( break; } case 162: { - net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder subBuilder = null; if (channelExtra_ != null) { subBuilder = channelExtra_.toBuilder(); } - channelExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.parser(), extensionRegistry); + channelExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(channelExtra_); channelExtra_ = subBuilder.buildPartial(); @@ -8450,14 +8533,14 @@ private RoomMessage( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessage.class, net.iGap.proto.ProtoGlobal.RoomMessage.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessage.class, net.iGap.proto.ProtoGlobal.RoomMessage.Builder.class); } /** @@ -8488,7 +8571,7 @@ public enum ExtraType public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -8532,7 +8615,7 @@ public ExtraType findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.RoomMessage.getDescriptor().getEnumTypes().get(0); + return net.iGap.proto.ProtoGlobal.RoomMessage.getDescriptor().getEnumTypes().get(0); } private static final ExtraType[] VALUES = values(); @@ -8540,7 +8623,7 @@ public ExtraType findValueByNumber(int number) { public static ExtraType valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -8613,7 +8696,7 @@ private Author() { hash_ = ""; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -8639,17 +8722,17 @@ private Author( break; } case 10: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); hash_ = s; break; } case 18: { - net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder subBuilder = null; if (user_ != null) { subBuilder = user_.toBuilder(); } - user_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.parser(), extensionRegistry); + user_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(user_); user_ = subBuilder.buildPartial(); @@ -8658,11 +8741,11 @@ private Author( break; } case 26: { - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder subBuilder = null; if (room_ != null) { subBuilder = room_.toBuilder(); } - room_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.parser(), extensionRegistry); + room_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(room_); room_ = subBuilder.buildPartial(); @@ -8683,14 +8766,14 @@ private Author( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessage.Author.class, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessage.Author.class, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder.class); } public interface UserOrBuilder extends @@ -8728,7 +8811,7 @@ private User() { cacheId_ = ""; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -8759,7 +8842,7 @@ private User( break; } case 18: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); cacheId_ = s; break; @@ -8777,14 +8860,14 @@ private User( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_User_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_User_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_User_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_User_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.class, net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.class, net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder.class); } public static final int USER_ID_FIELD_NUMBER = 1; @@ -8797,18 +8880,18 @@ public long getUserId() { } public static final int CACHE_ID_FIELD_NUMBER = 2; - private volatile java.lang.Object cacheId_; + private volatile java.lang.Object cacheId_; /** * optional string cache_id = 2; */ public java.lang.String getCacheId() { - java.lang.Object ref = cacheId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = cacheId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); cacheId_ = s; return s; } @@ -8818,11 +8901,11 @@ public java.lang.String getCacheId() { */ public com.google.protobuf.ByteString getCacheIdBytes() { - java.lang.Object ref = cacheId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = cacheId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); cacheId_ = b; return b; } else { @@ -8867,15 +8950,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessage.Author.User)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessage.Author.User)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.RoomMessage.Author.User other = (net.iGap.proto.ProtoGlobal.RoomMessage.Author.User) obj; + net.iGap.proto.ProtoGlobal.RoomMessage.Author.User other = (net.iGap.proto.ProtoGlobal.RoomMessage.Author.User) obj; boolean result = true; result = result && (getUserId() @@ -8885,7 +8969,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -8902,58 +8986,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom( + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User 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 net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User 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 net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -8965,7 +9058,8 @@ public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessage.Author.User prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessage.Author.User prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -8973,9 +9067,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -8985,17 +9079,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.RoomMessage.Author.User) - net.iGap.proto.ProtoGlobal.RoomMessage.Author.UserOrBuilder { + net.iGap.proto.ProtoGlobal.RoomMessage.Author.UserOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_User_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_User_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_User_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_User_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.class, net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.class, net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.newBuilder() @@ -9004,7 +9098,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -9024,23 +9118,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_User_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_User_descriptor; } - public net.iGap.proto.ProtoGlobal.RoomMessage.Author.User getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.RoomMessage.Author.User getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.RoomMessage.Author.User build() { - net.iGap.proto.ProtoGlobal.RoomMessage.Author.User result = buildPartial(); + public net.iGap.proto.ProtoGlobal.RoomMessage.Author.User build() { + net.iGap.proto.ProtoGlobal.RoomMessage.Author.User result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.RoomMessage.Author.User buildPartial() { - net.iGap.proto.ProtoGlobal.RoomMessage.Author.User result = new net.iGap.proto.ProtoGlobal.RoomMessage.Author.User(this); + public net.iGap.proto.ProtoGlobal.RoomMessage.Author.User buildPartial() { + net.iGap.proto.ProtoGlobal.RoomMessage.Author.User result = new net.iGap.proto.ProtoGlobal.RoomMessage.Author.User(this); result.userId_ = userId_; result.cacheId_ = cacheId_; onBuilt(); @@ -9074,16 +9168,17 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessage.Author.User) { - return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessage.Author.User)other); + if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessage.Author.User) { + return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessage.Author.User) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessage.Author.User other) { - if (other == net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessage.Author.User other) { + if (other == net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.getDefaultInstance()) + return this; if (other.getUserId() != 0L) { setUserId(other.getUserId()); } @@ -9103,11 +9198,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parsedMessage = null; + net.iGap.proto.ProtoGlobal.RoomMessage.Author.User parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessage.Author.User) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessage.Author.User) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -9128,7 +9223,7 @@ public long getUserId() { * optional uint64 user_id = 1; */ public Builder setUserId(long value) { - + userId_ = value; onChanged(); return this; @@ -9137,26 +9232,26 @@ public Builder setUserId(long value) { * optional uint64 user_id = 1; */ public Builder clearUserId() { - + userId_ = 0L; onChanged(); return this; } - private java.lang.Object cacheId_ = ""; + private java.lang.Object cacheId_ = ""; /** * optional string cache_id = 2; */ public java.lang.String getCacheId() { - java.lang.Object ref = cacheId_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = cacheId_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); cacheId_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -9164,11 +9259,11 @@ public java.lang.String getCacheId() { */ public com.google.protobuf.ByteString getCacheIdBytes() { - java.lang.Object ref = cacheId_; + java.lang.Object ref = cacheId_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); cacheId_ = b; return b; } else { @@ -9179,11 +9274,11 @@ public java.lang.String getCacheId() { * optional string cache_id = 2; */ public Builder setCacheId( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + cacheId_ = value; onChanged(); return this; @@ -9192,7 +9287,7 @@ public Builder setCacheId( * optional string cache_id = 2; */ public Builder clearCacheId() { - + cacheId_ = getDefaultInstance().getCacheId(); onChanged(); return this; @@ -9206,7 +9301,7 @@ public Builder setCacheIdBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + cacheId_ = value; onChanged(); return this; @@ -9228,10 +9323,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.RoomMessage.Author.User) private static final net.iGap.proto.ProtoGlobal.RoomMessage.Author.User DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessage.Author.User(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessage.Author.User(); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.User getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -9249,12 +9344,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.RoomMessage.Author.User getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.RoomMessage.Author.User getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -9284,7 +9379,7 @@ private Room() { roomId_ = 0L; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -9327,14 +9422,14 @@ private Room( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_Room_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_Room_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_Room_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_Room_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.class, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.class, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder.class); } public static final int ROOM_ID_FIELD_NUMBER = 1; @@ -9377,15 +9472,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room other = (net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room) obj; + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room other = (net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room) obj; boolean result = true; result = result && (getRoomId() @@ -9393,7 +9489,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -9408,58 +9504,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom( + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room 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 net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room 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 net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -9471,7 +9576,8 @@ public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -9479,9 +9585,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -9491,17 +9597,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.RoomMessage.Author.Room) - net.iGap.proto.ProtoGlobal.RoomMessage.Author.RoomOrBuilder { + net.iGap.proto.ProtoGlobal.RoomMessage.Author.RoomOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_Room_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_Room_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_Room_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_Room_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.class, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.class, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.newBuilder() @@ -9510,7 +9616,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -9528,23 +9634,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_Room_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_Room_descriptor; } - public net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room build() { - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room result = buildPartial(); + public net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room build() { + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room buildPartial() { - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room result = new net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room(this); + public net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room buildPartial() { + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room result = new net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room(this); result.roomId_ = roomId_; onBuilt(); return result; @@ -9577,16 +9683,17 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room) { - return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room)other); + if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room) { + return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room other) { - if (other == net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room other) { + if (other == net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.getDefaultInstance()) + return this; if (other.getRoomId() != 0L) { setRoomId(other.getRoomId()); } @@ -9602,11 +9709,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parsedMessage = null; + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -9627,7 +9734,7 @@ public long getRoomId() { * optional uint64 room_id = 1; */ public Builder setRoomId(long value) { - + roomId_ = value; onChanged(); return this; @@ -9636,7 +9743,7 @@ public Builder setRoomId(long value) { * optional uint64 room_id = 1; */ public Builder clearRoomId() { - + roomId_ = 0L; onChanged(); return this; @@ -9658,10 +9765,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.RoomMessage.Author.Room) private static final net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room(); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -9679,30 +9786,30 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } public static final int HASH_FIELD_NUMBER = 1; - private volatile java.lang.Object hash_; + private volatile java.lang.Object hash_; /** * optional string hash = 1; */ public java.lang.String getHash() { - java.lang.Object ref = hash_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = hash_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); hash_ = s; return s; } @@ -9712,11 +9819,11 @@ public java.lang.String getHash() { */ public com.google.protobuf.ByteString getHashBytes() { - java.lang.Object ref = hash_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = hash_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); hash_ = b; return b; } else { @@ -9725,7 +9832,7 @@ public java.lang.String getHash() { } public static final int USER_FIELD_NUMBER = 2; - private net.iGap.proto.ProtoGlobal.RoomMessage.Author.User user_; + private net.iGap.proto.ProtoGlobal.RoomMessage.Author.User user_; /** * optional .proto.RoomMessage.Author.User user = 2; */ @@ -9736,7 +9843,7 @@ public boolean hasUser() { * optional .proto.RoomMessage.Author.User user = 2; */ public net.iGap.proto.ProtoGlobal.RoomMessage.Author.User getUser() { - return user_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.getDefaultInstance() : user_; + return user_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.getDefaultInstance() : user_; } /** * optional .proto.RoomMessage.Author.User user = 2; @@ -9746,7 +9853,7 @@ public net.iGap.proto.ProtoGlobal.RoomMessage.Author.UserOrBuilder getUserOrBuil } public static final int ROOM_FIELD_NUMBER = 3; - private net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room room_; + private net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room room_; /** * optional .proto.RoomMessage.Author.Room room = 3; */ @@ -9757,7 +9864,7 @@ public boolean hasRoom() { * optional .proto.RoomMessage.Author.Room room = 3; */ public net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room getRoom() { - return room_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.getDefaultInstance() : room_; + return room_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.getDefaultInstance() : room_; } /** * optional .proto.RoomMessage.Author.Room room = 3; @@ -9810,15 +9917,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessage.Author)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessage.Author)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.RoomMessage.Author other = (net.iGap.proto.ProtoGlobal.RoomMessage.Author) obj; + net.iGap.proto.ProtoGlobal.RoomMessage.Author other = (net.iGap.proto.ProtoGlobal.RoomMessage.Author) obj; boolean result = true; result = result && getHash() @@ -9836,7 +9944,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -9858,58 +9966,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom( + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author 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 net.iGap.proto.ProtoGlobal.RoomMessage.Author parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author 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 net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -9921,7 +10038,8 @@ public static net.iGap.proto.ProtoGlobal.RoomMessage.Author parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessage.Author prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessage.Author prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -9929,9 +10047,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -9941,17 +10059,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.RoomMessage.Author) - net.iGap.proto.ProtoGlobal.RoomMessage.AuthorOrBuilder { + net.iGap.proto.ProtoGlobal.RoomMessage.AuthorOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessage.Author.class, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessage.Author.class, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.RoomMessage.Author.newBuilder() @@ -9960,7 +10078,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -9990,23 +10108,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_Author_descriptor; } - public net.iGap.proto.ProtoGlobal.RoomMessage.Author getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.RoomMessage.Author.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.RoomMessage.Author getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.RoomMessage.Author.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.RoomMessage.Author build() { - net.iGap.proto.ProtoGlobal.RoomMessage.Author result = buildPartial(); + public net.iGap.proto.ProtoGlobal.RoomMessage.Author build() { + net.iGap.proto.ProtoGlobal.RoomMessage.Author result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.RoomMessage.Author buildPartial() { - net.iGap.proto.ProtoGlobal.RoomMessage.Author result = new net.iGap.proto.ProtoGlobal.RoomMessage.Author(this); + public net.iGap.proto.ProtoGlobal.RoomMessage.Author buildPartial() { + net.iGap.proto.ProtoGlobal.RoomMessage.Author result = new net.iGap.proto.ProtoGlobal.RoomMessage.Author(this); result.hash_ = hash_; if (userBuilder_ == null) { result.user_ = user_; @@ -10049,16 +10167,17 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessage.Author) { - return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessage.Author)other); + if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessage.Author) { + return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessage.Author) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessage.Author other) { - if (other == net.iGap.proto.ProtoGlobal.RoomMessage.Author.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessage.Author other) { + if (other == net.iGap.proto.ProtoGlobal.RoomMessage.Author.getDefaultInstance()) + return this; if (!other.getHash().isEmpty()) { hash_ = other.hash_; onChanged(); @@ -10081,11 +10200,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.RoomMessage.Author parsedMessage = null; + net.iGap.proto.ProtoGlobal.RoomMessage.Author parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessage.Author) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessage.Author) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -10095,20 +10214,20 @@ public Builder mergeFrom( return this; } - private java.lang.Object hash_ = ""; + private java.lang.Object hash_ = ""; /** * optional string hash = 1; */ public java.lang.String getHash() { - java.lang.Object ref = hash_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = hash_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); hash_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -10116,11 +10235,11 @@ public java.lang.String getHash() { */ public com.google.protobuf.ByteString getHashBytes() { - java.lang.Object ref = hash_; + java.lang.Object ref = hash_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); hash_ = b; return b; } else { @@ -10131,11 +10250,11 @@ public java.lang.String getHash() { * optional string hash = 1; */ public Builder setHash( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + hash_ = value; onChanged(); return this; @@ -10144,7 +10263,7 @@ public Builder setHash( * optional string hash = 1; */ public Builder clearHash() { - + hash_ = getDefaultInstance().getHash(); onChanged(); return this; @@ -10158,15 +10277,15 @@ public Builder setHashBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + hash_ = value; onChanged(); return this; } - private net.iGap.proto.ProtoGlobal.RoomMessage.Author.User user_ = null; + private net.iGap.proto.ProtoGlobal.RoomMessage.Author.User user_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage.Author.User, net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.Author.UserOrBuilder> userBuilder_; + net.iGap.proto.ProtoGlobal.RoomMessage.Author.User, net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.Author.UserOrBuilder> userBuilder_; /** * optional .proto.RoomMessage.Author.User user = 2; */ @@ -10178,7 +10297,7 @@ public boolean hasUser() { */ public net.iGap.proto.ProtoGlobal.RoomMessage.Author.User getUser() { if (userBuilder_ == null) { - return user_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.getDefaultInstance() : user_; + return user_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.getDefaultInstance() : user_; } else { return userBuilder_.getMessage(); } @@ -10203,7 +10322,7 @@ public Builder setUser(net.iGap.proto.ProtoGlobal.RoomMessage.Author.User value) * optional .proto.RoomMessage.Author.User user = 2; */ public Builder setUser( - net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder builderForValue) { if (userBuilder_ == null) { user_ = builderForValue.build(); onChanged(); @@ -10220,7 +10339,7 @@ public Builder mergeUser(net.iGap.proto.ProtoGlobal.RoomMessage.Author.User valu if (userBuilder_ == null) { if (user_ != null) { user_ = - net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.newBuilder(user_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.newBuilder(user_).mergeFrom(value).buildPartial(); } else { user_ = value; } @@ -10249,7 +10368,7 @@ public Builder clearUser() { * optional .proto.RoomMessage.Author.User user = 2; */ public net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder getUserBuilder() { - + onChanged(); return getUserFieldBuilder().getBuilder(); } @@ -10261,18 +10380,18 @@ public net.iGap.proto.ProtoGlobal.RoomMessage.Author.UserOrBuilder getUserOrBuil return userBuilder_.getMessageOrBuilder(); } else { return user_ == null ? - net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.getDefaultInstance() : user_; + net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.getDefaultInstance() : user_; } } /** * optional .proto.RoomMessage.Author.User user = 2; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage.Author.User, net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.Author.UserOrBuilder> + net.iGap.proto.ProtoGlobal.RoomMessage.Author.User, net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.Author.UserOrBuilder> getUserFieldBuilder() { if (userBuilder_ == null) { userBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage.Author.User, net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.Author.UserOrBuilder>( + net.iGap.proto.ProtoGlobal.RoomMessage.Author.User, net.iGap.proto.ProtoGlobal.RoomMessage.Author.User.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.Author.UserOrBuilder>( getUser(), getParentForChildren(), isClean()); @@ -10281,9 +10400,9 @@ public net.iGap.proto.ProtoGlobal.RoomMessage.Author.UserOrBuilder getUserOrBuil return userBuilder_; } - private net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room room_ = null; + private net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room room_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.Author.RoomOrBuilder> roomBuilder_; + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.Author.RoomOrBuilder> roomBuilder_; /** * optional .proto.RoomMessage.Author.Room room = 3; */ @@ -10295,7 +10414,7 @@ public boolean hasRoom() { */ public net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room getRoom() { if (roomBuilder_ == null) { - return room_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.getDefaultInstance() : room_; + return room_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.getDefaultInstance() : room_; } else { return roomBuilder_.getMessage(); } @@ -10320,7 +10439,7 @@ public Builder setRoom(net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room value) * optional .proto.RoomMessage.Author.Room room = 3; */ public Builder setRoom( - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder builderForValue) { if (roomBuilder_ == null) { room_ = builderForValue.build(); onChanged(); @@ -10337,7 +10456,7 @@ public Builder mergeRoom(net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room valu if (roomBuilder_ == null) { if (room_ != null) { room_ = - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.newBuilder(room_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.newBuilder(room_).mergeFrom(value).buildPartial(); } else { room_ = value; } @@ -10366,7 +10485,7 @@ public Builder clearRoom() { * optional .proto.RoomMessage.Author.Room room = 3; */ public net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder getRoomBuilder() { - + onChanged(); return getRoomFieldBuilder().getBuilder(); } @@ -10378,18 +10497,18 @@ public net.iGap.proto.ProtoGlobal.RoomMessage.Author.RoomOrBuilder getRoomOrBuil return roomBuilder_.getMessageOrBuilder(); } else { return room_ == null ? - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.getDefaultInstance() : room_; + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.getDefaultInstance() : room_; } } /** * optional .proto.RoomMessage.Author.Room room = 3; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.Author.RoomOrBuilder> + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.Author.RoomOrBuilder> getRoomFieldBuilder() { if (roomBuilder_ == null) { roomBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.Author.RoomOrBuilder>( + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Room.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.Author.RoomOrBuilder>( getRoom(), getParentForChildren(), isClean()); @@ -10414,10 +10533,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.RoomMessage.Author) private static final net.iGap.proto.ProtoGlobal.RoomMessage.Author DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessage.Author(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessage.Author(); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.Author getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.RoomMessage.Author getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -10435,12 +10554,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.RoomMessage.Author getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.RoomMessage.Author getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -10508,7 +10627,7 @@ private ChannelExtra() { thumbsDownLabel_ = ""; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -10534,25 +10653,25 @@ private ChannelExtra( break; } case 10: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); signature_ = s; break; } case 18: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); viewsLabel_ = s; break; } case 26: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); thumbsUpLabel_ = s; break; } case 34: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); thumbsDownLabel_ = s; break; @@ -10570,29 +10689,29 @@ private ChannelExtra( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_ChannelExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_ChannelExtra_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_ChannelExtra_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_ChannelExtra_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.class, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.class, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder.class); } public static final int SIGNATURE_FIELD_NUMBER = 1; - private volatile java.lang.Object signature_; + private volatile java.lang.Object signature_; /** * optional string signature = 1; */ public java.lang.String getSignature() { - java.lang.Object ref = signature_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = signature_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); signature_ = s; return s; } @@ -10602,11 +10721,11 @@ public java.lang.String getSignature() { */ public com.google.protobuf.ByteString getSignatureBytes() { - java.lang.Object ref = signature_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = signature_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); signature_ = b; return b; } else { @@ -10615,18 +10734,18 @@ public java.lang.String getSignature() { } public static final int VIEWS_LABEL_FIELD_NUMBER = 2; - private volatile java.lang.Object viewsLabel_; + private volatile java.lang.Object viewsLabel_; /** * optional string views_label = 2; */ public java.lang.String getViewsLabel() { - java.lang.Object ref = viewsLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = viewsLabel_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); viewsLabel_ = s; return s; } @@ -10636,11 +10755,11 @@ public java.lang.String getViewsLabel() { */ public com.google.protobuf.ByteString getViewsLabelBytes() { - java.lang.Object ref = viewsLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = viewsLabel_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); viewsLabel_ = b; return b; } else { @@ -10649,18 +10768,18 @@ public java.lang.String getViewsLabel() { } public static final int THUMBS_UP_LABEL_FIELD_NUMBER = 3; - private volatile java.lang.Object thumbsUpLabel_; + private volatile java.lang.Object thumbsUpLabel_; /** * optional string thumbs_up_label = 3; */ public java.lang.String getThumbsUpLabel() { - java.lang.Object ref = thumbsUpLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = thumbsUpLabel_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); thumbsUpLabel_ = s; return s; } @@ -10670,11 +10789,11 @@ public java.lang.String getThumbsUpLabel() { */ public com.google.protobuf.ByteString getThumbsUpLabelBytes() { - java.lang.Object ref = thumbsUpLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = thumbsUpLabel_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); thumbsUpLabel_ = b; return b; } else { @@ -10683,18 +10802,18 @@ public java.lang.String getThumbsUpLabel() { } public static final int THUMBS_DOWN_LABEL_FIELD_NUMBER = 4; - private volatile java.lang.Object thumbsDownLabel_; + private volatile java.lang.Object thumbsDownLabel_; /** * optional string thumbs_down_label = 4; */ public java.lang.String getThumbsDownLabel() { - java.lang.Object ref = thumbsDownLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = thumbsDownLabel_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); thumbsDownLabel_ = s; return s; } @@ -10704,11 +10823,11 @@ public java.lang.String getThumbsDownLabel() { */ public com.google.protobuf.ByteString getThumbsDownLabelBytes() { - java.lang.Object ref = thumbsDownLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = thumbsDownLabel_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); thumbsDownLabel_ = b; return b; } else { @@ -10764,15 +10883,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra other = (net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra) obj; + net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra other = (net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra) obj; boolean result = true; result = result && getSignature() @@ -10786,7 +10906,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -10806,58 +10926,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom( + public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra 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 net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra 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 net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -10869,7 +10998,8 @@ public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -10877,9 +11007,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -10889,17 +11019,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.RoomMessage.ChannelExtra) - net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtraOrBuilder { + net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtraOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_ChannelExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_ChannelExtra_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_ChannelExtra_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_ChannelExtra_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.class, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.class, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.newBuilder() @@ -10908,7 +11038,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -10932,23 +11062,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_ChannelExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_ChannelExtra_descriptor; } - public net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra build() { - net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra result = buildPartial(); + public net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra build() { + net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra buildPartial() { - net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra result = new net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra(this); + public net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra buildPartial() { + net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra result = new net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra(this); result.signature_ = signature_; result.viewsLabel_ = viewsLabel_; result.thumbsUpLabel_ = thumbsUpLabel_; @@ -10984,16 +11114,17 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra) { - return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra)other); + if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra) { + return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra other) { - if (other == net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra other) { + if (other == net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.getDefaultInstance()) + return this; if (!other.getSignature().isEmpty()) { signature_ = other.signature_; onChanged(); @@ -11022,11 +11153,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parsedMessage = null; + net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -11036,20 +11167,20 @@ public Builder mergeFrom( return this; } - private java.lang.Object signature_ = ""; + private java.lang.Object signature_ = ""; /** * optional string signature = 1; */ public java.lang.String getSignature() { - java.lang.Object ref = signature_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = signature_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); signature_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -11057,11 +11188,11 @@ public java.lang.String getSignature() { */ public com.google.protobuf.ByteString getSignatureBytes() { - java.lang.Object ref = signature_; + java.lang.Object ref = signature_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); signature_ = b; return b; } else { @@ -11072,11 +11203,11 @@ public java.lang.String getSignature() { * optional string signature = 1; */ public Builder setSignature( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + signature_ = value; onChanged(); return this; @@ -11085,7 +11216,7 @@ public Builder setSignature( * optional string signature = 1; */ public Builder clearSignature() { - + signature_ = getDefaultInstance().getSignature(); onChanged(); return this; @@ -11099,26 +11230,26 @@ public Builder setSignatureBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + signature_ = value; onChanged(); return this; } - private java.lang.Object viewsLabel_ = ""; + private java.lang.Object viewsLabel_ = ""; /** * optional string views_label = 2; */ public java.lang.String getViewsLabel() { - java.lang.Object ref = viewsLabel_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = viewsLabel_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); viewsLabel_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -11126,11 +11257,11 @@ public java.lang.String getViewsLabel() { */ public com.google.protobuf.ByteString getViewsLabelBytes() { - java.lang.Object ref = viewsLabel_; + java.lang.Object ref = viewsLabel_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); viewsLabel_ = b; return b; } else { @@ -11141,11 +11272,11 @@ public java.lang.String getViewsLabel() { * optional string views_label = 2; */ public Builder setViewsLabel( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + viewsLabel_ = value; onChanged(); return this; @@ -11154,7 +11285,7 @@ public Builder setViewsLabel( * optional string views_label = 2; */ public Builder clearViewsLabel() { - + viewsLabel_ = getDefaultInstance().getViewsLabel(); onChanged(); return this; @@ -11168,26 +11299,26 @@ public Builder setViewsLabelBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + viewsLabel_ = value; onChanged(); return this; } - private java.lang.Object thumbsUpLabel_ = ""; + private java.lang.Object thumbsUpLabel_ = ""; /** * optional string thumbs_up_label = 3; */ public java.lang.String getThumbsUpLabel() { - java.lang.Object ref = thumbsUpLabel_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = thumbsUpLabel_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); thumbsUpLabel_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -11195,11 +11326,11 @@ public java.lang.String getThumbsUpLabel() { */ public com.google.protobuf.ByteString getThumbsUpLabelBytes() { - java.lang.Object ref = thumbsUpLabel_; + java.lang.Object ref = thumbsUpLabel_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); thumbsUpLabel_ = b; return b; } else { @@ -11210,11 +11341,11 @@ public java.lang.String getThumbsUpLabel() { * optional string thumbs_up_label = 3; */ public Builder setThumbsUpLabel( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + thumbsUpLabel_ = value; onChanged(); return this; @@ -11223,7 +11354,7 @@ public Builder setThumbsUpLabel( * optional string thumbs_up_label = 3; */ public Builder clearThumbsUpLabel() { - + thumbsUpLabel_ = getDefaultInstance().getThumbsUpLabel(); onChanged(); return this; @@ -11237,26 +11368,26 @@ public Builder setThumbsUpLabelBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + thumbsUpLabel_ = value; onChanged(); return this; } - private java.lang.Object thumbsDownLabel_ = ""; + private java.lang.Object thumbsDownLabel_ = ""; /** * optional string thumbs_down_label = 4; */ public java.lang.String getThumbsDownLabel() { - java.lang.Object ref = thumbsDownLabel_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = thumbsDownLabel_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); thumbsDownLabel_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -11264,11 +11395,11 @@ public java.lang.String getThumbsDownLabel() { */ public com.google.protobuf.ByteString getThumbsDownLabelBytes() { - java.lang.Object ref = thumbsDownLabel_; + java.lang.Object ref = thumbsDownLabel_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); thumbsDownLabel_ = b; return b; } else { @@ -11279,11 +11410,11 @@ public java.lang.String getThumbsDownLabel() { * optional string thumbs_down_label = 4; */ public Builder setThumbsDownLabel( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + thumbsDownLabel_ = value; onChanged(); return this; @@ -11292,7 +11423,7 @@ public Builder setThumbsDownLabel( * optional string thumbs_down_label = 4; */ public Builder clearThumbsDownLabel() { - + thumbsDownLabel_ = getDefaultInstance().getThumbsDownLabel(); onChanged(); return this; @@ -11306,7 +11437,7 @@ public Builder setThumbsDownLabelBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + thumbsDownLabel_ = value; onChanged(); return this; @@ -11328,10 +11459,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.RoomMessage.ChannelExtra) private static final net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra(); } - public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -11349,12 +11480,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -11390,8 +11521,8 @@ public int getStatusValue() { * optional .proto.RoomMessageStatus status = 3; */ public net.iGap.proto.ProtoGlobal.RoomMessageStatus getStatus() { - net.iGap.proto.ProtoGlobal.RoomMessageStatus result = net.iGap.proto.ProtoGlobal.RoomMessageStatus.valueOf(status_); - return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageStatus.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.RoomMessageStatus result = net.iGap.proto.ProtoGlobal.RoomMessageStatus.valueOf(status_); + return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageStatus.UNRECOGNIZED : result; } public static final int STATUS_VERSION_FIELD_NUMBER = 4; @@ -11415,23 +11546,23 @@ public int getMessageTypeValue() { * optional .proto.RoomMessageType message_type = 5; */ public net.iGap.proto.ProtoGlobal.RoomMessageType getMessageType() { - net.iGap.proto.ProtoGlobal.RoomMessageType result = net.iGap.proto.ProtoGlobal.RoomMessageType.valueOf(messageType_); - return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageType.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.RoomMessageType result = net.iGap.proto.ProtoGlobal.RoomMessageType.valueOf(messageType_); + return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageType.UNRECOGNIZED : result; } public static final int MESSAGE_FIELD_NUMBER = 6; - private volatile java.lang.Object message_; + private volatile java.lang.Object message_; /** * optional string message = 6; */ public java.lang.String getMessage() { - java.lang.Object ref = message_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = message_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); message_ = s; return s; } @@ -11441,11 +11572,11 @@ public java.lang.String getMessage() { */ public com.google.protobuf.ByteString getMessageBytes() { - java.lang.Object ref = message_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = message_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); message_ = b; return b; } else { @@ -11454,7 +11585,7 @@ public java.lang.String getMessage() { } public static final int ATTACHMENT_FIELD_NUMBER = 7; - private net.iGap.proto.ProtoGlobal.File attachment_; + private net.iGap.proto.ProtoGlobal.File attachment_; /** * optional .proto.File attachment = 7; */ @@ -11465,7 +11596,7 @@ public boolean hasAttachment() { * optional .proto.File attachment = 7; */ public net.iGap.proto.ProtoGlobal.File getAttachment() { - return attachment_ == null ? net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : attachment_; + return attachment_ == null ? net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : attachment_; } /** * optional .proto.File attachment = 7; @@ -11475,7 +11606,7 @@ public net.iGap.proto.ProtoGlobal.FileOrBuilder getAttachmentOrBuilder() { } public static final int AUTHOR_FIELD_NUMBER = 8; - private net.iGap.proto.ProtoGlobal.RoomMessage.Author author_; + private net.iGap.proto.ProtoGlobal.RoomMessage.Author author_; /** * optional .proto.RoomMessage.Author author = 8; */ @@ -11486,7 +11617,7 @@ public boolean hasAuthor() { * optional .proto.RoomMessage.Author author = 8; */ public net.iGap.proto.ProtoGlobal.RoomMessage.Author getAuthor() { - return author_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.Author.getDefaultInstance() : author_; + return author_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.Author.getDefaultInstance() : author_; } /** * optional .proto.RoomMessage.Author author = 8; @@ -11496,7 +11627,7 @@ public net.iGap.proto.ProtoGlobal.RoomMessage.AuthorOrBuilder getAuthorOrBuilder } public static final int LOCATION_FIELD_NUMBER = 9; - private net.iGap.proto.ProtoGlobal.RoomMessageLocation location_; + private net.iGap.proto.ProtoGlobal.RoomMessageLocation location_; /** * optional .proto.RoomMessageLocation location = 9; */ @@ -11507,7 +11638,7 @@ public boolean hasLocation() { * optional .proto.RoomMessageLocation location = 9; */ public net.iGap.proto.ProtoGlobal.RoomMessageLocation getLocation() { - return location_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageLocation.getDefaultInstance() : location_; + return location_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageLocation.getDefaultInstance() : location_; } /** * optional .proto.RoomMessageLocation location = 9; @@ -11517,7 +11648,7 @@ public net.iGap.proto.ProtoGlobal.RoomMessageLocationOrBuilder getLocationOrBuil } public static final int LOG_FIELD_NUMBER = 10; - private net.iGap.proto.ProtoGlobal.RoomMessageLog log_; + private net.iGap.proto.ProtoGlobal.RoomMessageLog log_; /** * optional .proto.RoomMessageLog log = 10; */ @@ -11528,7 +11659,7 @@ public boolean hasLog() { * optional .proto.RoomMessageLog log = 10; */ public net.iGap.proto.ProtoGlobal.RoomMessageLog getLog() { - return log_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.getDefaultInstance() : log_; + return log_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.getDefaultInstance() : log_; } /** * optional .proto.RoomMessageLog log = 10; @@ -11538,7 +11669,7 @@ public net.iGap.proto.ProtoGlobal.RoomMessageLogOrBuilder getLogOrBuilder() { } public static final int CONTACT_FIELD_NUMBER = 11; - private net.iGap.proto.ProtoGlobal.RoomMessageContact contact_; + private net.iGap.proto.ProtoGlobal.RoomMessageContact contact_; /** * optional .proto.RoomMessageContact contact = 11; */ @@ -11549,7 +11680,7 @@ public boolean hasContact() { * optional .proto.RoomMessageContact contact = 11; */ public net.iGap.proto.ProtoGlobal.RoomMessageContact getContact() { - return contact_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageContact.getDefaultInstance() : contact_; + return contact_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageContact.getDefaultInstance() : contact_; } /** * optional .proto.RoomMessageContact contact = 11; @@ -11595,7 +11726,7 @@ public boolean getDeleted() { } public static final int FORWARD_FROM_FIELD_NUMBER = 16; - private net.iGap.proto.ProtoGlobal.RoomMessage forwardFrom_; + private net.iGap.proto.ProtoGlobal.RoomMessage forwardFrom_; /** * optional .proto.RoomMessage forward_from = 16; */ @@ -11606,7 +11737,7 @@ public boolean hasForwardFrom() { * optional .proto.RoomMessage forward_from = 16; */ public net.iGap.proto.ProtoGlobal.RoomMessage getForwardFrom() { - return forwardFrom_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : forwardFrom_; + return forwardFrom_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : forwardFrom_; } /** * optional .proto.RoomMessage forward_from = 16; @@ -11616,7 +11747,7 @@ public net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder getForwardFromOrBuilder() } public static final int REPLY_TO_FIELD_NUMBER = 17; - private net.iGap.proto.ProtoGlobal.RoomMessage replyTo_; + private net.iGap.proto.ProtoGlobal.RoomMessage replyTo_; /** * optional .proto.RoomMessage reply_to = 17; */ @@ -11627,7 +11758,7 @@ public boolean hasReplyTo() { * optional .proto.RoomMessage reply_to = 17; */ public net.iGap.proto.ProtoGlobal.RoomMessage getReplyTo() { - return replyTo_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : replyTo_; + return replyTo_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : replyTo_; } /** * optional .proto.RoomMessage reply_to = 17; @@ -11657,12 +11788,12 @@ public int getExtraTypeValue() { * optional .proto.RoomMessage.ExtraType extra_type = 19; */ public net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType getExtraType() { - net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType result = net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType.valueOf(extraType_); - return result == null ? net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType result = net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType.valueOf(extraType_); + return result == null ? net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType.UNRECOGNIZED : result; } public static final int CHANNEL_EXTRA_FIELD_NUMBER = 20; - private net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra channelExtra_; + private net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra channelExtra_; /** * optional .proto.RoomMessage.ChannelExtra channel_extra = 20; */ @@ -11673,7 +11804,7 @@ public boolean hasChannelExtra() { * optional .proto.RoomMessage.ChannelExtra channel_extra = 20; */ public net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra getChannelExtra() { - return channelExtra_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.getDefaultInstance() : channelExtra_; + return channelExtra_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.getDefaultInstance() : channelExtra_; } /** * optional .proto.RoomMessage.ChannelExtra channel_extra = 20; @@ -11700,13 +11831,13 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (messageVersion_ != 0L) { output.writeUInt64(2, messageVersion_); } - if (status_ != net.iGap.proto.ProtoGlobal.RoomMessageStatus.FAILED.getNumber()) { + if (status_ != net.iGap.proto.ProtoGlobal.RoomMessageStatus.FAILED.getNumber()) { output.writeEnum(3, status_); } if (statusVersion_ != 0L) { output.writeUInt64(4, statusVersion_); } - if (messageType_ != net.iGap.proto.ProtoGlobal.RoomMessageType.TEXT.getNumber()) { + if (messageType_ != net.iGap.proto.ProtoGlobal.RoomMessageType.TEXT.getNumber()) { output.writeEnum(5, messageType_); } if (!getMessageBytes().isEmpty()) { @@ -11748,7 +11879,7 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (previousMessageId_ != 0L) { output.writeUInt64(18, previousMessageId_); } - if (extraType_ != net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType.NO_EXTRA.getNumber()) { + if (extraType_ != net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType.NO_EXTRA.getNumber()) { output.writeEnum(19, extraType_); } if (channelExtra_ != null) { @@ -11769,7 +11900,7 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeUInt64Size(2, messageVersion_); } - if (status_ != net.iGap.proto.ProtoGlobal.RoomMessageStatus.FAILED.getNumber()) { + if (status_ != net.iGap.proto.ProtoGlobal.RoomMessageStatus.FAILED.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(3, status_); } @@ -11777,7 +11908,7 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeUInt64Size(4, statusVersion_); } - if (messageType_ != net.iGap.proto.ProtoGlobal.RoomMessageType.TEXT.getNumber()) { + if (messageType_ != net.iGap.proto.ProtoGlobal.RoomMessageType.TEXT.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(5, messageType_); } @@ -11832,7 +11963,7 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeUInt64Size(18, previousMessageId_); } - if (extraType_ != net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType.NO_EXTRA.getNumber()) { + if (extraType_ != net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType.NO_EXTRA.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(19, extraType_); } @@ -11845,15 +11976,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessage)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomMessage)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.RoomMessage other = (net.iGap.proto.ProtoGlobal.RoomMessage) obj; + net.iGap.proto.ProtoGlobal.RoomMessage other = (net.iGap.proto.ProtoGlobal.RoomMessage) obj; boolean result = true; result = result && (getMessageId() @@ -11920,7 +12052,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -11994,58 +12126,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom( + public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage 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 net.iGap.proto.ProtoGlobal.RoomMessage parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomMessage parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage 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 net.iGap.proto.ProtoGlobal.RoomMessage parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -12057,7 +12198,8 @@ public static net.iGap.proto.ProtoGlobal.RoomMessage parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessage prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomMessage prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -12065,9 +12207,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -12077,17 +12219,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.RoomMessage) - net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder { + net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomMessage.class, net.iGap.proto.ProtoGlobal.RoomMessage.Builder.class); + net.iGap.proto.ProtoGlobal.RoomMessage.class, net.iGap.proto.ProtoGlobal.RoomMessage.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.RoomMessage.newBuilder() @@ -12096,7 +12238,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -12184,23 +12326,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomMessage_descriptor; } - public net.iGap.proto.ProtoGlobal.RoomMessage getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.RoomMessage getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.RoomMessage build() { - net.iGap.proto.ProtoGlobal.RoomMessage result = buildPartial(); + public net.iGap.proto.ProtoGlobal.RoomMessage build() { + net.iGap.proto.ProtoGlobal.RoomMessage result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.RoomMessage buildPartial() { - net.iGap.proto.ProtoGlobal.RoomMessage result = new net.iGap.proto.ProtoGlobal.RoomMessage(this); + public net.iGap.proto.ProtoGlobal.RoomMessage buildPartial() { + net.iGap.proto.ProtoGlobal.RoomMessage result = new net.iGap.proto.ProtoGlobal.RoomMessage(this); result.messageId_ = messageId_; result.messageVersion_ = messageVersion_; result.status_ = status_; @@ -12284,16 +12426,16 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessage) { - return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessage)other); + if (other instanceof net.iGap.proto.ProtoGlobal.RoomMessage) { + return mergeFrom((net.iGap.proto.ProtoGlobal.RoomMessage) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessage other) { - if (other == net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomMessage other) { + if (other == net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance()) return this; if (other.getMessageId() != 0L) { setMessageId(other.getMessageId()); } @@ -12367,11 +12509,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.RoomMessage parsedMessage = null; + net.iGap.proto.ProtoGlobal.RoomMessage parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessage) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.RoomMessage) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -12392,7 +12534,7 @@ public long getMessageId() { * optional uint64 message_id = 1; */ public Builder setMessageId(long value) { - + messageId_ = value; onChanged(); return this; @@ -12401,7 +12543,7 @@ public Builder setMessageId(long value) { * optional uint64 message_id = 1; */ public Builder clearMessageId() { - + messageId_ = 0L; onChanged(); return this; @@ -12418,7 +12560,7 @@ public long getMessageVersion() { * optional uint64 message_version = 2; */ public Builder setMessageVersion(long value) { - + messageVersion_ = value; onChanged(); return this; @@ -12427,7 +12569,7 @@ public Builder setMessageVersion(long value) { * optional uint64 message_version = 2; */ public Builder clearMessageVersion() { - + messageVersion_ = 0L; onChanged(); return this; @@ -12452,8 +12594,8 @@ public Builder setStatusValue(int value) { * optional .proto.RoomMessageStatus status = 3; */ public net.iGap.proto.ProtoGlobal.RoomMessageStatus getStatus() { - net.iGap.proto.ProtoGlobal.RoomMessageStatus result = net.iGap.proto.ProtoGlobal.RoomMessageStatus.valueOf(status_); - return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageStatus.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.RoomMessageStatus result = net.iGap.proto.ProtoGlobal.RoomMessageStatus.valueOf(status_); + return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageStatus.UNRECOGNIZED : result; } /** * optional .proto.RoomMessageStatus status = 3; @@ -12462,7 +12604,7 @@ public Builder setStatus(net.iGap.proto.ProtoGlobal.RoomMessageStatus value) { if (value == null) { throw new NullPointerException(); } - + status_ = value.getNumber(); onChanged(); return this; @@ -12471,7 +12613,7 @@ public Builder setStatus(net.iGap.proto.ProtoGlobal.RoomMessageStatus value) { * optional .proto.RoomMessageStatus status = 3; */ public Builder clearStatus() { - + status_ = 0; onChanged(); return this; @@ -12488,7 +12630,7 @@ public long getStatusVersion() { * optional uint64 status_version = 4; */ public Builder setStatusVersion(long value) { - + statusVersion_ = value; onChanged(); return this; @@ -12497,7 +12639,7 @@ public Builder setStatusVersion(long value) { * optional uint64 status_version = 4; */ public Builder clearStatusVersion() { - + statusVersion_ = 0L; onChanged(); return this; @@ -12522,8 +12664,8 @@ public Builder setMessageTypeValue(int value) { * optional .proto.RoomMessageType message_type = 5; */ public net.iGap.proto.ProtoGlobal.RoomMessageType getMessageType() { - net.iGap.proto.ProtoGlobal.RoomMessageType result = net.iGap.proto.ProtoGlobal.RoomMessageType.valueOf(messageType_); - return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageType.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.RoomMessageType result = net.iGap.proto.ProtoGlobal.RoomMessageType.valueOf(messageType_); + return result == null ? net.iGap.proto.ProtoGlobal.RoomMessageType.UNRECOGNIZED : result; } /** * optional .proto.RoomMessageType message_type = 5; @@ -12532,7 +12674,7 @@ public Builder setMessageType(net.iGap.proto.ProtoGlobal.RoomMessageType value) if (value == null) { throw new NullPointerException(); } - + messageType_ = value.getNumber(); onChanged(); return this; @@ -12541,26 +12683,26 @@ public Builder setMessageType(net.iGap.proto.ProtoGlobal.RoomMessageType value) * optional .proto.RoomMessageType message_type = 5; */ public Builder clearMessageType() { - + messageType_ = 0; onChanged(); return this; } - private java.lang.Object message_ = ""; + private java.lang.Object message_ = ""; /** * optional string message = 6; */ public java.lang.String getMessage() { - java.lang.Object ref = message_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = message_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); message_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -12568,11 +12710,11 @@ public java.lang.String getMessage() { */ public com.google.protobuf.ByteString getMessageBytes() { - java.lang.Object ref = message_; + java.lang.Object ref = message_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); message_ = b; return b; } else { @@ -12583,11 +12725,11 @@ public java.lang.String getMessage() { * optional string message = 6; */ public Builder setMessage( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + message_ = value; onChanged(); return this; @@ -12596,7 +12738,7 @@ public Builder setMessage( * optional string message = 6; */ public Builder clearMessage() { - + message_ = getDefaultInstance().getMessage(); onChanged(); return this; @@ -12610,15 +12752,15 @@ public Builder setMessageBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + message_ = value; onChanged(); return this; } - private net.iGap.proto.ProtoGlobal.File attachment_ = null; + private net.iGap.proto.ProtoGlobal.File attachment_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder> attachmentBuilder_; + net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder> attachmentBuilder_; /** * optional .proto.File attachment = 7; */ @@ -12630,7 +12772,7 @@ public boolean hasAttachment() { */ public net.iGap.proto.ProtoGlobal.File getAttachment() { if (attachmentBuilder_ == null) { - return attachment_ == null ? net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : attachment_; + return attachment_ == null ? net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : attachment_; } else { return attachmentBuilder_.getMessage(); } @@ -12655,7 +12797,7 @@ public Builder setAttachment(net.iGap.proto.ProtoGlobal.File value) { * optional .proto.File attachment = 7; */ public Builder setAttachment( - net.iGap.proto.ProtoGlobal.File.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.File.Builder builderForValue) { if (attachmentBuilder_ == null) { attachment_ = builderForValue.build(); onChanged(); @@ -12672,7 +12814,7 @@ public Builder mergeAttachment(net.iGap.proto.ProtoGlobal.File value) { if (attachmentBuilder_ == null) { if (attachment_ != null) { attachment_ = - net.iGap.proto.ProtoGlobal.File.newBuilder(attachment_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.File.newBuilder(attachment_).mergeFrom(value).buildPartial(); } else { attachment_ = value; } @@ -12701,7 +12843,7 @@ public Builder clearAttachment() { * optional .proto.File attachment = 7; */ public net.iGap.proto.ProtoGlobal.File.Builder getAttachmentBuilder() { - + onChanged(); return getAttachmentFieldBuilder().getBuilder(); } @@ -12713,18 +12855,18 @@ public net.iGap.proto.ProtoGlobal.FileOrBuilder getAttachmentOrBuilder() { return attachmentBuilder_.getMessageOrBuilder(); } else { return attachment_ == null ? - net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : attachment_; + net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : attachment_; } } /** * optional .proto.File attachment = 7; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder> + net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder> getAttachmentFieldBuilder() { if (attachmentBuilder_ == null) { attachmentBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder>( + net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder>( getAttachment(), getParentForChildren(), isClean()); @@ -12733,9 +12875,9 @@ public net.iGap.proto.ProtoGlobal.FileOrBuilder getAttachmentOrBuilder() { return attachmentBuilder_; } - private net.iGap.proto.ProtoGlobal.RoomMessage.Author author_ = null; + private net.iGap.proto.ProtoGlobal.RoomMessage.Author author_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage.Author, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.AuthorOrBuilder> authorBuilder_; + net.iGap.proto.ProtoGlobal.RoomMessage.Author, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.AuthorOrBuilder> authorBuilder_; /** * optional .proto.RoomMessage.Author author = 8; */ @@ -12747,7 +12889,7 @@ public boolean hasAuthor() { */ public net.iGap.proto.ProtoGlobal.RoomMessage.Author getAuthor() { if (authorBuilder_ == null) { - return author_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.Author.getDefaultInstance() : author_; + return author_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.Author.getDefaultInstance() : author_; } else { return authorBuilder_.getMessage(); } @@ -12772,7 +12914,7 @@ public Builder setAuthor(net.iGap.proto.ProtoGlobal.RoomMessage.Author value) { * optional .proto.RoomMessage.Author author = 8; */ public Builder setAuthor( - net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder builderForValue) { if (authorBuilder_ == null) { author_ = builderForValue.build(); onChanged(); @@ -12789,7 +12931,7 @@ public Builder mergeAuthor(net.iGap.proto.ProtoGlobal.RoomMessage.Author value) if (authorBuilder_ == null) { if (author_ != null) { author_ = - net.iGap.proto.ProtoGlobal.RoomMessage.Author.newBuilder(author_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.RoomMessage.Author.newBuilder(author_).mergeFrom(value).buildPartial(); } else { author_ = value; } @@ -12818,7 +12960,7 @@ public Builder clearAuthor() { * optional .proto.RoomMessage.Author author = 8; */ public net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder getAuthorBuilder() { - + onChanged(); return getAuthorFieldBuilder().getBuilder(); } @@ -12830,18 +12972,18 @@ public net.iGap.proto.ProtoGlobal.RoomMessage.AuthorOrBuilder getAuthorOrBuilder return authorBuilder_.getMessageOrBuilder(); } else { return author_ == null ? - net.iGap.proto.ProtoGlobal.RoomMessage.Author.getDefaultInstance() : author_; + net.iGap.proto.ProtoGlobal.RoomMessage.Author.getDefaultInstance() : author_; } } /** * optional .proto.RoomMessage.Author author = 8; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage.Author, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.AuthorOrBuilder> + net.iGap.proto.ProtoGlobal.RoomMessage.Author, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.AuthorOrBuilder> getAuthorFieldBuilder() { if (authorBuilder_ == null) { authorBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage.Author, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.AuthorOrBuilder>( + net.iGap.proto.ProtoGlobal.RoomMessage.Author, net.iGap.proto.ProtoGlobal.RoomMessage.Author.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.AuthorOrBuilder>( getAuthor(), getParentForChildren(), isClean()); @@ -12850,9 +12992,9 @@ public net.iGap.proto.ProtoGlobal.RoomMessage.AuthorOrBuilder getAuthorOrBuilder return authorBuilder_; } - private net.iGap.proto.ProtoGlobal.RoomMessageLocation location_ = null; + private net.iGap.proto.ProtoGlobal.RoomMessageLocation location_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessageLocation, net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLocationOrBuilder> locationBuilder_; + net.iGap.proto.ProtoGlobal.RoomMessageLocation, net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLocationOrBuilder> locationBuilder_; /** * optional .proto.RoomMessageLocation location = 9; */ @@ -12864,7 +13006,7 @@ public boolean hasLocation() { */ public net.iGap.proto.ProtoGlobal.RoomMessageLocation getLocation() { if (locationBuilder_ == null) { - return location_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageLocation.getDefaultInstance() : location_; + return location_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageLocation.getDefaultInstance() : location_; } else { return locationBuilder_.getMessage(); } @@ -12889,7 +13031,7 @@ public Builder setLocation(net.iGap.proto.ProtoGlobal.RoomMessageLocation value) * optional .proto.RoomMessageLocation location = 9; */ public Builder setLocation( - net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder builderForValue) { if (locationBuilder_ == null) { location_ = builderForValue.build(); onChanged(); @@ -12906,7 +13048,7 @@ public Builder mergeLocation(net.iGap.proto.ProtoGlobal.RoomMessageLocation valu if (locationBuilder_ == null) { if (location_ != null) { location_ = - net.iGap.proto.ProtoGlobal.RoomMessageLocation.newBuilder(location_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.RoomMessageLocation.newBuilder(location_).mergeFrom(value).buildPartial(); } else { location_ = value; } @@ -12935,7 +13077,7 @@ public Builder clearLocation() { * optional .proto.RoomMessageLocation location = 9; */ public net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder getLocationBuilder() { - + onChanged(); return getLocationFieldBuilder().getBuilder(); } @@ -12947,18 +13089,18 @@ public net.iGap.proto.ProtoGlobal.RoomMessageLocationOrBuilder getLocationOrBuil return locationBuilder_.getMessageOrBuilder(); } else { return location_ == null ? - net.iGap.proto.ProtoGlobal.RoomMessageLocation.getDefaultInstance() : location_; + net.iGap.proto.ProtoGlobal.RoomMessageLocation.getDefaultInstance() : location_; } } /** * optional .proto.RoomMessageLocation location = 9; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessageLocation, net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLocationOrBuilder> + net.iGap.proto.ProtoGlobal.RoomMessageLocation, net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLocationOrBuilder> getLocationFieldBuilder() { if (locationBuilder_ == null) { locationBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessageLocation, net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLocationOrBuilder>( + net.iGap.proto.ProtoGlobal.RoomMessageLocation, net.iGap.proto.ProtoGlobal.RoomMessageLocation.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLocationOrBuilder>( getLocation(), getParentForChildren(), isClean()); @@ -12967,9 +13109,9 @@ public net.iGap.proto.ProtoGlobal.RoomMessageLocationOrBuilder getLocationOrBuil return locationBuilder_; } - private net.iGap.proto.ProtoGlobal.RoomMessageLog log_ = null; + private net.iGap.proto.ProtoGlobal.RoomMessageLog log_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessageLog, net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLogOrBuilder> logBuilder_; + net.iGap.proto.ProtoGlobal.RoomMessageLog, net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLogOrBuilder> logBuilder_; /** * optional .proto.RoomMessageLog log = 10; */ @@ -12981,7 +13123,7 @@ public boolean hasLog() { */ public net.iGap.proto.ProtoGlobal.RoomMessageLog getLog() { if (logBuilder_ == null) { - return log_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.getDefaultInstance() : log_; + return log_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageLog.getDefaultInstance() : log_; } else { return logBuilder_.getMessage(); } @@ -13006,7 +13148,7 @@ public Builder setLog(net.iGap.proto.ProtoGlobal.RoomMessageLog value) { * optional .proto.RoomMessageLog log = 10; */ public Builder setLog( - net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder builderForValue) { if (logBuilder_ == null) { log_ = builderForValue.build(); onChanged(); @@ -13023,7 +13165,7 @@ public Builder mergeLog(net.iGap.proto.ProtoGlobal.RoomMessageLog value) { if (logBuilder_ == null) { if (log_ != null) { log_ = - net.iGap.proto.ProtoGlobal.RoomMessageLog.newBuilder(log_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.RoomMessageLog.newBuilder(log_).mergeFrom(value).buildPartial(); } else { log_ = value; } @@ -13052,7 +13194,7 @@ public Builder clearLog() { * optional .proto.RoomMessageLog log = 10; */ public net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder getLogBuilder() { - + onChanged(); return getLogFieldBuilder().getBuilder(); } @@ -13064,18 +13206,18 @@ public net.iGap.proto.ProtoGlobal.RoomMessageLogOrBuilder getLogOrBuilder() { return logBuilder_.getMessageOrBuilder(); } else { return log_ == null ? - net.iGap.proto.ProtoGlobal.RoomMessageLog.getDefaultInstance() : log_; + net.iGap.proto.ProtoGlobal.RoomMessageLog.getDefaultInstance() : log_; } } /** * optional .proto.RoomMessageLog log = 10; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessageLog, net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLogOrBuilder> + net.iGap.proto.ProtoGlobal.RoomMessageLog, net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLogOrBuilder> getLogFieldBuilder() { if (logBuilder_ == null) { logBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessageLog, net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLogOrBuilder>( + net.iGap.proto.ProtoGlobal.RoomMessageLog, net.iGap.proto.ProtoGlobal.RoomMessageLog.Builder, net.iGap.proto.ProtoGlobal.RoomMessageLogOrBuilder>( getLog(), getParentForChildren(), isClean()); @@ -13084,9 +13226,9 @@ public net.iGap.proto.ProtoGlobal.RoomMessageLogOrBuilder getLogOrBuilder() { return logBuilder_; } - private net.iGap.proto.ProtoGlobal.RoomMessageContact contact_ = null; + private net.iGap.proto.ProtoGlobal.RoomMessageContact contact_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessageContact, net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder, net.iGap.proto.ProtoGlobal.RoomMessageContactOrBuilder> contactBuilder_; + net.iGap.proto.ProtoGlobal.RoomMessageContact, net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder, net.iGap.proto.ProtoGlobal.RoomMessageContactOrBuilder> contactBuilder_; /** * optional .proto.RoomMessageContact contact = 11; */ @@ -13098,7 +13240,7 @@ public boolean hasContact() { */ public net.iGap.proto.ProtoGlobal.RoomMessageContact getContact() { if (contactBuilder_ == null) { - return contact_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageContact.getDefaultInstance() : contact_; + return contact_ == null ? net.iGap.proto.ProtoGlobal.RoomMessageContact.getDefaultInstance() : contact_; } else { return contactBuilder_.getMessage(); } @@ -13123,7 +13265,7 @@ public Builder setContact(net.iGap.proto.ProtoGlobal.RoomMessageContact value) { * optional .proto.RoomMessageContact contact = 11; */ public Builder setContact( - net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder builderForValue) { if (contactBuilder_ == null) { contact_ = builderForValue.build(); onChanged(); @@ -13140,7 +13282,7 @@ public Builder mergeContact(net.iGap.proto.ProtoGlobal.RoomMessageContact value) if (contactBuilder_ == null) { if (contact_ != null) { contact_ = - net.iGap.proto.ProtoGlobal.RoomMessageContact.newBuilder(contact_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.RoomMessageContact.newBuilder(contact_).mergeFrom(value).buildPartial(); } else { contact_ = value; } @@ -13169,7 +13311,7 @@ public Builder clearContact() { * optional .proto.RoomMessageContact contact = 11; */ public net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder getContactBuilder() { - + onChanged(); return getContactFieldBuilder().getBuilder(); } @@ -13181,18 +13323,18 @@ public net.iGap.proto.ProtoGlobal.RoomMessageContactOrBuilder getContactOrBuilde return contactBuilder_.getMessageOrBuilder(); } else { return contact_ == null ? - net.iGap.proto.ProtoGlobal.RoomMessageContact.getDefaultInstance() : contact_; + net.iGap.proto.ProtoGlobal.RoomMessageContact.getDefaultInstance() : contact_; } } /** * optional .proto.RoomMessageContact contact = 11; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessageContact, net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder, net.iGap.proto.ProtoGlobal.RoomMessageContactOrBuilder> + net.iGap.proto.ProtoGlobal.RoomMessageContact, net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder, net.iGap.proto.ProtoGlobal.RoomMessageContactOrBuilder> getContactFieldBuilder() { if (contactBuilder_ == null) { contactBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessageContact, net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder, net.iGap.proto.ProtoGlobal.RoomMessageContactOrBuilder>( + net.iGap.proto.ProtoGlobal.RoomMessageContact, net.iGap.proto.ProtoGlobal.RoomMessageContact.Builder, net.iGap.proto.ProtoGlobal.RoomMessageContactOrBuilder>( getContact(), getParentForChildren(), isClean()); @@ -13212,7 +13354,7 @@ public boolean getEdited() { * optional bool edited = 12; */ public Builder setEdited(boolean value) { - + edited_ = value; onChanged(); return this; @@ -13221,7 +13363,7 @@ public Builder setEdited(boolean value) { * optional bool edited = 12; */ public Builder clearEdited() { - + edited_ = false; onChanged(); return this; @@ -13238,7 +13380,7 @@ public int getCreateTime() { * optional uint32 create_time = 13; */ public Builder setCreateTime(int value) { - + createTime_ = value; onChanged(); return this; @@ -13247,7 +13389,7 @@ public Builder setCreateTime(int value) { * optional uint32 create_time = 13; */ public Builder clearCreateTime() { - + createTime_ = 0; onChanged(); return this; @@ -13264,7 +13406,7 @@ public int getUpdateTime() { * optional uint32 update_time = 14; */ public Builder setUpdateTime(int value) { - + updateTime_ = value; onChanged(); return this; @@ -13273,7 +13415,7 @@ public Builder setUpdateTime(int value) { * optional uint32 update_time = 14; */ public Builder clearUpdateTime() { - + updateTime_ = 0; onChanged(); return this; @@ -13290,7 +13432,7 @@ public boolean getDeleted() { * optional bool deleted = 15; */ public Builder setDeleted(boolean value) { - + deleted_ = value; onChanged(); return this; @@ -13299,15 +13441,15 @@ public Builder setDeleted(boolean value) { * optional bool deleted = 15; */ public Builder clearDeleted() { - + deleted_ = false; onChanged(); return this; } - private net.iGap.proto.ProtoGlobal.RoomMessage forwardFrom_ = null; + private net.iGap.proto.ProtoGlobal.RoomMessage forwardFrom_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> forwardFromBuilder_; + net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> forwardFromBuilder_; /** * optional .proto.RoomMessage forward_from = 16; */ @@ -13319,7 +13461,7 @@ public boolean hasForwardFrom() { */ public net.iGap.proto.ProtoGlobal.RoomMessage getForwardFrom() { if (forwardFromBuilder_ == null) { - return forwardFrom_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : forwardFrom_; + return forwardFrom_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : forwardFrom_; } else { return forwardFromBuilder_.getMessage(); } @@ -13344,7 +13486,7 @@ public Builder setForwardFrom(net.iGap.proto.ProtoGlobal.RoomMessage value) { * optional .proto.RoomMessage forward_from = 16; */ public Builder setForwardFrom( - net.iGap.proto.ProtoGlobal.RoomMessage.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.RoomMessage.Builder builderForValue) { if (forwardFromBuilder_ == null) { forwardFrom_ = builderForValue.build(); onChanged(); @@ -13361,7 +13503,7 @@ public Builder mergeForwardFrom(net.iGap.proto.ProtoGlobal.RoomMessage value) { if (forwardFromBuilder_ == null) { if (forwardFrom_ != null) { forwardFrom_ = - net.iGap.proto.ProtoGlobal.RoomMessage.newBuilder(forwardFrom_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.RoomMessage.newBuilder(forwardFrom_).mergeFrom(value).buildPartial(); } else { forwardFrom_ = value; } @@ -13390,7 +13532,7 @@ public Builder clearForwardFrom() { * optional .proto.RoomMessage forward_from = 16; */ public net.iGap.proto.ProtoGlobal.RoomMessage.Builder getForwardFromBuilder() { - + onChanged(); return getForwardFromFieldBuilder().getBuilder(); } @@ -13402,18 +13544,18 @@ public net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder getForwardFromOrBuilder() return forwardFromBuilder_.getMessageOrBuilder(); } else { return forwardFrom_ == null ? - net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : forwardFrom_; + net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : forwardFrom_; } } /** * optional .proto.RoomMessage forward_from = 16; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> + net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> getForwardFromFieldBuilder() { if (forwardFromBuilder_ == null) { forwardFromBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder>( + net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder>( getForwardFrom(), getParentForChildren(), isClean()); @@ -13422,9 +13564,9 @@ public net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder getForwardFromOrBuilder() return forwardFromBuilder_; } - private net.iGap.proto.ProtoGlobal.RoomMessage replyTo_ = null; + private net.iGap.proto.ProtoGlobal.RoomMessage replyTo_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> replyToBuilder_; + net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> replyToBuilder_; /** * optional .proto.RoomMessage reply_to = 17; */ @@ -13436,7 +13578,7 @@ public boolean hasReplyTo() { */ public net.iGap.proto.ProtoGlobal.RoomMessage getReplyTo() { if (replyToBuilder_ == null) { - return replyTo_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : replyTo_; + return replyTo_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : replyTo_; } else { return replyToBuilder_.getMessage(); } @@ -13461,7 +13603,7 @@ public Builder setReplyTo(net.iGap.proto.ProtoGlobal.RoomMessage value) { * optional .proto.RoomMessage reply_to = 17; */ public Builder setReplyTo( - net.iGap.proto.ProtoGlobal.RoomMessage.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.RoomMessage.Builder builderForValue) { if (replyToBuilder_ == null) { replyTo_ = builderForValue.build(); onChanged(); @@ -13478,7 +13620,7 @@ public Builder mergeReplyTo(net.iGap.proto.ProtoGlobal.RoomMessage value) { if (replyToBuilder_ == null) { if (replyTo_ != null) { replyTo_ = - net.iGap.proto.ProtoGlobal.RoomMessage.newBuilder(replyTo_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.RoomMessage.newBuilder(replyTo_).mergeFrom(value).buildPartial(); } else { replyTo_ = value; } @@ -13507,7 +13649,7 @@ public Builder clearReplyTo() { * optional .proto.RoomMessage reply_to = 17; */ public net.iGap.proto.ProtoGlobal.RoomMessage.Builder getReplyToBuilder() { - + onChanged(); return getReplyToFieldBuilder().getBuilder(); } @@ -13519,18 +13661,18 @@ public net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder getReplyToOrBuilder() { return replyToBuilder_.getMessageOrBuilder(); } else { return replyTo_ == null ? - net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : replyTo_; + net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : replyTo_; } } /** * optional .proto.RoomMessage reply_to = 17; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> + net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> getReplyToFieldBuilder() { if (replyToBuilder_ == null) { replyToBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder>( + net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder>( getReplyTo(), getParentForChildren(), isClean()); @@ -13550,7 +13692,7 @@ public long getPreviousMessageId() { * optional uint64 previous_message_id = 18; */ public Builder setPreviousMessageId(long value) { - + previousMessageId_ = value; onChanged(); return this; @@ -13559,7 +13701,7 @@ public Builder setPreviousMessageId(long value) { * optional uint64 previous_message_id = 18; */ public Builder clearPreviousMessageId() { - + previousMessageId_ = 0L; onChanged(); return this; @@ -13584,8 +13726,8 @@ public Builder setExtraTypeValue(int value) { * optional .proto.RoomMessage.ExtraType extra_type = 19; */ public net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType getExtraType() { - net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType result = net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType.valueOf(extraType_); - return result == null ? net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType result = net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType.valueOf(extraType_); + return result == null ? net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType.UNRECOGNIZED : result; } /** * optional .proto.RoomMessage.ExtraType extra_type = 19; @@ -13594,7 +13736,7 @@ public Builder setExtraType(net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType val if (value == null) { throw new NullPointerException(); } - + extraType_ = value.getNumber(); onChanged(); return this; @@ -13603,15 +13745,15 @@ public Builder setExtraType(net.iGap.proto.ProtoGlobal.RoomMessage.ExtraType val * optional .proto.RoomMessage.ExtraType extra_type = 19; */ public Builder clearExtraType() { - + extraType_ = 0; onChanged(); return this; } - private net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra channelExtra_ = null; + private net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra channelExtra_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtraOrBuilder> channelExtraBuilder_; + net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtraOrBuilder> channelExtraBuilder_; /** * optional .proto.RoomMessage.ChannelExtra channel_extra = 20; */ @@ -13623,7 +13765,7 @@ public boolean hasChannelExtra() { */ public net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra getChannelExtra() { if (channelExtraBuilder_ == null) { - return channelExtra_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.getDefaultInstance() : channelExtra_; + return channelExtra_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.getDefaultInstance() : channelExtra_; } else { return channelExtraBuilder_.getMessage(); } @@ -13648,7 +13790,7 @@ public Builder setChannelExtra(net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExt * optional .proto.RoomMessage.ChannelExtra channel_extra = 20; */ public Builder setChannelExtra( - net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder builderForValue) { if (channelExtraBuilder_ == null) { channelExtra_ = builderForValue.build(); onChanged(); @@ -13665,7 +13807,7 @@ public Builder mergeChannelExtra(net.iGap.proto.ProtoGlobal.RoomMessage.ChannelE if (channelExtraBuilder_ == null) { if (channelExtra_ != null) { channelExtra_ = - net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.newBuilder(channelExtra_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.newBuilder(channelExtra_).mergeFrom(value).buildPartial(); } else { channelExtra_ = value; } @@ -13694,7 +13836,7 @@ public Builder clearChannelExtra() { * optional .proto.RoomMessage.ChannelExtra channel_extra = 20; */ public net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder getChannelExtraBuilder() { - + onChanged(); return getChannelExtraFieldBuilder().getBuilder(); } @@ -13706,18 +13848,18 @@ public net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtraOrBuilder getChannelEx return channelExtraBuilder_.getMessageOrBuilder(); } else { return channelExtra_ == null ? - net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.getDefaultInstance() : channelExtra_; + net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.getDefaultInstance() : channelExtra_; } } /** * optional .proto.RoomMessage.ChannelExtra channel_extra = 20; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtraOrBuilder> + net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtraOrBuilder> getChannelExtraFieldBuilder() { if (channelExtraBuilder_ == null) { channelExtraBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtraOrBuilder>( + net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtra.Builder, net.iGap.proto.ProtoGlobal.RoomMessage.ChannelExtraOrBuilder>( getChannelExtra(), getParentForChildren(), isClean()); @@ -13742,10 +13884,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.RoomMessage) private static final net.iGap.proto.ProtoGlobal.RoomMessage DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessage(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomMessage(); } - public static net.iGap.proto.ProtoGlobal.RoomMessage getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.RoomMessage getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -13763,12 +13905,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.RoomMessage getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.RoomMessage getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -13809,7 +13951,7 @@ private RoomDraft() { replyTo_ = 0L; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -13835,7 +13977,7 @@ private RoomDraft( break; } case 10: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); message_ = s; break; @@ -13858,29 +14000,29 @@ private RoomDraft( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomDraft_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomDraft_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomDraft_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomDraft_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomDraft.class, net.iGap.proto.ProtoGlobal.RoomDraft.Builder.class); + net.iGap.proto.ProtoGlobal.RoomDraft.class, net.iGap.proto.ProtoGlobal.RoomDraft.Builder.class); } public static final int MESSAGE_FIELD_NUMBER = 1; - private volatile java.lang.Object message_; + private volatile java.lang.Object message_; /** * optional string message = 1; */ public java.lang.String getMessage() { - java.lang.Object ref = message_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = message_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); message_ = s; return s; } @@ -13890,11 +14032,11 @@ public java.lang.String getMessage() { */ public com.google.protobuf.ByteString getMessageBytes() { - java.lang.Object ref = message_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = message_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); message_ = b; return b; } else { @@ -13948,15 +14090,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomDraft)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.RoomDraft)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.RoomDraft other = (net.iGap.proto.ProtoGlobal.RoomDraft) obj; + net.iGap.proto.ProtoGlobal.RoomDraft other = (net.iGap.proto.ProtoGlobal.RoomDraft) obj; boolean result = true; result = result && getMessage() @@ -13966,7 +14109,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -13983,58 +14126,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom( + public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomDraft 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 net.iGap.proto.ProtoGlobal.RoomDraft parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.RoomDraft parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomDraft parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.RoomDraft 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 net.iGap.proto.ProtoGlobal.RoomDraft parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom( + + public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -14046,7 +14198,8 @@ public static net.iGap.proto.ProtoGlobal.RoomDraft parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomDraft prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.RoomDraft prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -14054,9 +14207,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -14066,17 +14219,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.RoomDraft) - net.iGap.proto.ProtoGlobal.RoomDraftOrBuilder { + net.iGap.proto.ProtoGlobal.RoomDraftOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomDraft_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomDraft_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomDraft_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomDraft_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.RoomDraft.class, net.iGap.proto.ProtoGlobal.RoomDraft.Builder.class); + net.iGap.proto.ProtoGlobal.RoomDraft.class, net.iGap.proto.ProtoGlobal.RoomDraft.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.RoomDraft.newBuilder() @@ -14085,7 +14238,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -14105,23 +14258,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomDraft_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_RoomDraft_descriptor; } - public net.iGap.proto.ProtoGlobal.RoomDraft getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.RoomDraft.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.RoomDraft getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.RoomDraft.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.RoomDraft build() { - net.iGap.proto.ProtoGlobal.RoomDraft result = buildPartial(); + public net.iGap.proto.ProtoGlobal.RoomDraft build() { + net.iGap.proto.ProtoGlobal.RoomDraft result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.RoomDraft buildPartial() { - net.iGap.proto.ProtoGlobal.RoomDraft result = new net.iGap.proto.ProtoGlobal.RoomDraft(this); + public net.iGap.proto.ProtoGlobal.RoomDraft buildPartial() { + net.iGap.proto.ProtoGlobal.RoomDraft result = new net.iGap.proto.ProtoGlobal.RoomDraft(this); result.message_ = message_; result.replyTo_ = replyTo_; onBuilt(); @@ -14155,16 +14308,16 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.RoomDraft) { - return mergeFrom((net.iGap.proto.ProtoGlobal.RoomDraft)other); + if (other instanceof net.iGap.proto.ProtoGlobal.RoomDraft) { + return mergeFrom((net.iGap.proto.ProtoGlobal.RoomDraft) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomDraft other) { - if (other == net.iGap.proto.ProtoGlobal.RoomDraft.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.RoomDraft other) { + if (other == net.iGap.proto.ProtoGlobal.RoomDraft.getDefaultInstance()) return this; if (!other.getMessage().isEmpty()) { message_ = other.message_; onChanged(); @@ -14184,11 +14337,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.RoomDraft parsedMessage = null; + net.iGap.proto.ProtoGlobal.RoomDraft parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.RoomDraft) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.RoomDraft) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -14198,20 +14351,20 @@ public Builder mergeFrom( return this; } - private java.lang.Object message_ = ""; + private java.lang.Object message_ = ""; /** * optional string message = 1; */ public java.lang.String getMessage() { - java.lang.Object ref = message_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = message_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); message_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -14219,11 +14372,11 @@ public java.lang.String getMessage() { */ public com.google.protobuf.ByteString getMessageBytes() { - java.lang.Object ref = message_; + java.lang.Object ref = message_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); message_ = b; return b; } else { @@ -14234,11 +14387,11 @@ public java.lang.String getMessage() { * optional string message = 1; */ public Builder setMessage( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + message_ = value; onChanged(); return this; @@ -14247,7 +14400,7 @@ public Builder setMessage( * optional string message = 1; */ public Builder clearMessage() { - + message_ = getDefaultInstance().getMessage(); onChanged(); return this; @@ -14261,7 +14414,7 @@ public Builder setMessageBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + message_ = value; onChanged(); return this; @@ -14278,7 +14431,7 @@ public long getReplyTo() { * optional uint64 reply_to = 2; */ public Builder setReplyTo(long value) { - + replyTo_ = value; onChanged(); return this; @@ -14287,7 +14440,7 @@ public Builder setReplyTo(long value) { * optional uint64 reply_to = 2; */ public Builder clearReplyTo() { - + replyTo_ = 0L; onChanged(); return this; @@ -14309,10 +14462,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.RoomDraft) private static final net.iGap.proto.ProtoGlobal.RoomDraft DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomDraft(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.RoomDraft(); } - public static net.iGap.proto.ProtoGlobal.RoomDraft getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.RoomDraft getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -14330,12 +14483,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.RoomDraft getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.RoomDraft getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -14520,7 +14673,7 @@ private Room() { pinId_ = 0L; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -14557,19 +14710,19 @@ private Room( break; } case 26: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); title_ = s; break; } case 34: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); initials_ = s; break; } case 42: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); color_ = s; break; @@ -14580,11 +14733,11 @@ private Room( break; } case 58: { - net.iGap.proto.ProtoGlobal.RoomMessage.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.RoomMessage.Builder subBuilder = null; if (lastMessage_ != null) { subBuilder = lastMessage_.toBuilder(); } - lastMessage_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.parser(), extensionRegistry); + lastMessage_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(lastMessage_); lastMessage_ = subBuilder.buildPartial(); @@ -14603,11 +14756,11 @@ private Room( break; } case 82: { - net.iGap.proto.ProtoGlobal.RoomDraft.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.RoomDraft.Builder subBuilder = null; if (draft_ != null) { subBuilder = draft_.toBuilder(); } - draft_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomDraft.parser(), extensionRegistry); + draft_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomDraft.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(draft_); draft_ = subBuilder.buildPartial(); @@ -14616,11 +14769,11 @@ private Room( break; } case 90: { - net.iGap.proto.ProtoGlobal.ChatRoom.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.ChatRoom.Builder subBuilder = null; if (chatRoomExtra_ != null) { subBuilder = chatRoomExtra_.toBuilder(); } - chatRoomExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.ChatRoom.parser(), extensionRegistry); + chatRoomExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.ChatRoom.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(chatRoomExtra_); chatRoomExtra_ = subBuilder.buildPartial(); @@ -14629,11 +14782,11 @@ private Room( break; } case 98: { - net.iGap.proto.ProtoGlobal.GroupRoom.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.GroupRoom.Builder subBuilder = null; if (groupRoomExtra_ != null) { subBuilder = groupRoomExtra_.toBuilder(); } - groupRoomExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.GroupRoom.parser(), extensionRegistry); + groupRoomExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.GroupRoom.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(groupRoomExtra_); groupRoomExtra_ = subBuilder.buildPartial(); @@ -14642,11 +14795,11 @@ private Room( break; } case 106: { - net.iGap.proto.ProtoGlobal.ChannelRoom.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.ChannelRoom.Builder subBuilder = null; if (channelRoomExtra_ != null) { subBuilder = channelRoomExtra_.toBuilder(); } - channelRoomExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.ChannelRoom.parser(), extensionRegistry); + channelRoomExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.ChannelRoom.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(channelRoomExtra_); channelRoomExtra_ = subBuilder.buildPartial(); @@ -14655,11 +14808,11 @@ private Room( break; } case 114: { - net.iGap.proto.ProtoGlobal.RoomMessage.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.RoomMessage.Builder subBuilder = null; if (firstUnreadMessage_ != null) { subBuilder = firstUnreadMessage_.toBuilder(); } - firstUnreadMessage_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.parser(), extensionRegistry); + firstUnreadMessage_ = input.readMessage(net.iGap.proto.ProtoGlobal.RoomMessage.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(firstUnreadMessage_); firstUnreadMessage_ = subBuilder.buildPartial(); @@ -14691,14 +14844,14 @@ private Room( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Room_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_Room_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Room_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_Room_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.Room.class, net.iGap.proto.ProtoGlobal.Room.Builder.class); + net.iGap.proto.ProtoGlobal.Room.class, net.iGap.proto.ProtoGlobal.Room.Builder.class); } /** @@ -14737,7 +14890,7 @@ public enum Type public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -14782,7 +14935,7 @@ public Type findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.Room.getDescriptor().getEnumTypes().get(0); + return net.iGap.proto.ProtoGlobal.Room.getDescriptor().getEnumTypes().get(0); } private static final Type[] VALUES = values(); @@ -14790,7 +14943,7 @@ public Type findValueByNumber(int number) { public static Type valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -14829,23 +14982,23 @@ public int getTypeValue() { * optional .proto.Room.Type type = 2; */ public net.iGap.proto.ProtoGlobal.Room.Type getType() { - net.iGap.proto.ProtoGlobal.Room.Type result = net.iGap.proto.ProtoGlobal.Room.Type.valueOf(type_); - return result == null ? net.iGap.proto.ProtoGlobal.Room.Type.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.Room.Type result = net.iGap.proto.ProtoGlobal.Room.Type.valueOf(type_); + return result == null ? net.iGap.proto.ProtoGlobal.Room.Type.UNRECOGNIZED : result; } public static final int TITLE_FIELD_NUMBER = 3; - private volatile java.lang.Object title_; + private volatile java.lang.Object title_; /** * optional string title = 3; */ public java.lang.String getTitle() { - java.lang.Object ref = title_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = title_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); title_ = s; return s; } @@ -14855,11 +15008,11 @@ public java.lang.String getTitle() { */ public com.google.protobuf.ByteString getTitleBytes() { - java.lang.Object ref = title_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = title_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); title_ = b; return b; } else { @@ -14868,18 +15021,18 @@ public java.lang.String getTitle() { } public static final int INITIALS_FIELD_NUMBER = 4; - private volatile java.lang.Object initials_; + private volatile java.lang.Object initials_; /** * optional string initials = 4; */ public java.lang.String getInitials() { - java.lang.Object ref = initials_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = initials_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); initials_ = s; return s; } @@ -14889,11 +15042,11 @@ public java.lang.String getInitials() { */ public com.google.protobuf.ByteString getInitialsBytes() { - java.lang.Object ref = initials_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = initials_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); initials_ = b; return b; } else { @@ -14902,18 +15055,18 @@ public java.lang.String getInitials() { } public static final int COLOR_FIELD_NUMBER = 5; - private volatile java.lang.Object color_; + private volatile java.lang.Object color_; /** * optional string color = 5; */ public java.lang.String getColor() { - java.lang.Object ref = color_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = color_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); color_ = s; return s; } @@ -14923,11 +15076,11 @@ public java.lang.String getColor() { */ public com.google.protobuf.ByteString getColorBytes() { - java.lang.Object ref = color_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = color_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); color_ = b; return b; } else { @@ -14945,7 +15098,7 @@ public int getUnreadCount() { } public static final int LAST_MESSAGE_FIELD_NUMBER = 7; - private net.iGap.proto.ProtoGlobal.RoomMessage lastMessage_; + private net.iGap.proto.ProtoGlobal.RoomMessage lastMessage_; /** * optional .proto.RoomMessage last_message = 7; */ @@ -14956,7 +15109,7 @@ public boolean hasLastMessage() { * optional .proto.RoomMessage last_message = 7; */ public net.iGap.proto.ProtoGlobal.RoomMessage getLastMessage() { - return lastMessage_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : lastMessage_; + return lastMessage_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : lastMessage_; } /** * optional .proto.RoomMessage last_message = 7; @@ -14984,7 +15137,7 @@ public boolean getIsParticipant() { } public static final int DRAFT_FIELD_NUMBER = 10; - private net.iGap.proto.ProtoGlobal.RoomDraft draft_; + private net.iGap.proto.ProtoGlobal.RoomDraft draft_; /** * optional .proto.RoomDraft draft = 10; */ @@ -14995,7 +15148,7 @@ public boolean hasDraft() { * optional .proto.RoomDraft draft = 10; */ public net.iGap.proto.ProtoGlobal.RoomDraft getDraft() { - return draft_ == null ? net.iGap.proto.ProtoGlobal.RoomDraft.getDefaultInstance() : draft_; + return draft_ == null ? net.iGap.proto.ProtoGlobal.RoomDraft.getDefaultInstance() : draft_; } /** * optional .proto.RoomDraft draft = 10; @@ -15005,7 +15158,7 @@ public net.iGap.proto.ProtoGlobal.RoomDraftOrBuilder getDraftOrBuilder() { } public static final int FIRST_UNREAD_MESSAGE_FIELD_NUMBER = 14; - private net.iGap.proto.ProtoGlobal.RoomMessage firstUnreadMessage_; + private net.iGap.proto.ProtoGlobal.RoomMessage firstUnreadMessage_; /** * optional .proto.RoomMessage first_unread_message = 14; */ @@ -15016,7 +15169,7 @@ public boolean hasFirstUnreadMessage() { * optional .proto.RoomMessage first_unread_message = 14; */ public net.iGap.proto.ProtoGlobal.RoomMessage getFirstUnreadMessage() { - return firstUnreadMessage_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : firstUnreadMessage_; + return firstUnreadMessage_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : firstUnreadMessage_; } /** * optional .proto.RoomMessage first_unread_message = 14; @@ -15037,8 +15190,8 @@ public int getRoomMuteValue() { * optional .proto.RoomMute room_mute = 15; */ public net.iGap.proto.ProtoGlobal.RoomMute getRoomMute() { - net.iGap.proto.ProtoGlobal.RoomMute result = net.iGap.proto.ProtoGlobal.RoomMute.valueOf(roomMute_); - return result == null ? net.iGap.proto.ProtoGlobal.RoomMute.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.RoomMute result = net.iGap.proto.ProtoGlobal.RoomMute.valueOf(roomMute_); + return result == null ? net.iGap.proto.ProtoGlobal.RoomMute.UNRECOGNIZED : result; } public static final int PIN_ID_FIELD_NUMBER = 16; @@ -15051,7 +15204,7 @@ public long getPinId() { } public static final int CHAT_ROOM_EXTRA_FIELD_NUMBER = 11; - private net.iGap.proto.ProtoGlobal.ChatRoom chatRoomExtra_; + private net.iGap.proto.ProtoGlobal.ChatRoom chatRoomExtra_; /** * optional .proto.ChatRoom chat_room_extra = 11; */ @@ -15062,7 +15215,7 @@ public boolean hasChatRoomExtra() { * optional .proto.ChatRoom chat_room_extra = 11; */ public net.iGap.proto.ProtoGlobal.ChatRoom getChatRoomExtra() { - return chatRoomExtra_ == null ? net.iGap.proto.ProtoGlobal.ChatRoom.getDefaultInstance() : chatRoomExtra_; + return chatRoomExtra_ == null ? net.iGap.proto.ProtoGlobal.ChatRoom.getDefaultInstance() : chatRoomExtra_; } /** * optional .proto.ChatRoom chat_room_extra = 11; @@ -15072,7 +15225,7 @@ public net.iGap.proto.ProtoGlobal.ChatRoomOrBuilder getChatRoomExtraOrBuilder() } public static final int GROUP_ROOM_EXTRA_FIELD_NUMBER = 12; - private net.iGap.proto.ProtoGlobal.GroupRoom groupRoomExtra_; + private net.iGap.proto.ProtoGlobal.GroupRoom groupRoomExtra_; /** * optional .proto.GroupRoom group_room_extra = 12; */ @@ -15083,7 +15236,7 @@ public boolean hasGroupRoomExtra() { * optional .proto.GroupRoom group_room_extra = 12; */ public net.iGap.proto.ProtoGlobal.GroupRoom getGroupRoomExtra() { - return groupRoomExtra_ == null ? net.iGap.proto.ProtoGlobal.GroupRoom.getDefaultInstance() : groupRoomExtra_; + return groupRoomExtra_ == null ? net.iGap.proto.ProtoGlobal.GroupRoom.getDefaultInstance() : groupRoomExtra_; } /** * optional .proto.GroupRoom group_room_extra = 12; @@ -15093,7 +15246,7 @@ public net.iGap.proto.ProtoGlobal.GroupRoomOrBuilder getGroupRoomExtraOrBuilder( } public static final int CHANNEL_ROOM_EXTRA_FIELD_NUMBER = 13; - private net.iGap.proto.ProtoGlobal.ChannelRoom channelRoomExtra_; + private net.iGap.proto.ProtoGlobal.ChannelRoom channelRoomExtra_; /** * optional .proto.ChannelRoom channel_room_extra = 13; */ @@ -15104,7 +15257,7 @@ public boolean hasChannelRoomExtra() { * optional .proto.ChannelRoom channel_room_extra = 13; */ public net.iGap.proto.ProtoGlobal.ChannelRoom getChannelRoomExtra() { - return channelRoomExtra_ == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.getDefaultInstance() : channelRoomExtra_; + return channelRoomExtra_ == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.getDefaultInstance() : channelRoomExtra_; } /** * optional .proto.ChannelRoom channel_room_extra = 13; @@ -15128,7 +15281,7 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (id_ != 0L) { output.writeUInt64(1, id_); } - if (type_ != net.iGap.proto.ProtoGlobal.Room.Type.CHAT.getNumber()) { + if (type_ != net.iGap.proto.ProtoGlobal.Room.Type.CHAT.getNumber()) { output.writeEnum(2, type_); } if (!getTitleBytes().isEmpty()) { @@ -15167,7 +15320,7 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (firstUnreadMessage_ != null) { output.writeMessage(14, getFirstUnreadMessage()); } - if (roomMute_ != net.iGap.proto.ProtoGlobal.RoomMute.UNMUTE.getNumber()) { + if (roomMute_ != net.iGap.proto.ProtoGlobal.RoomMute.UNMUTE.getNumber()) { output.writeEnum(15, roomMute_); } if (pinId_ != 0L) { @@ -15184,7 +15337,7 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeUInt64Size(1, id_); } - if (type_ != net.iGap.proto.ProtoGlobal.Room.Type.CHAT.getNumber()) { + if (type_ != net.iGap.proto.ProtoGlobal.Room.Type.CHAT.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(2, type_); } @@ -15233,7 +15386,7 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(14, getFirstUnreadMessage()); } - if (roomMute_ != net.iGap.proto.ProtoGlobal.RoomMute.UNMUTE.getNumber()) { + if (roomMute_ != net.iGap.proto.ProtoGlobal.RoomMute.UNMUTE.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(15, roomMute_); } @@ -15246,15 +15399,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.Room)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.Room)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.Room other = (net.iGap.proto.ProtoGlobal.Room) obj; + net.iGap.proto.ProtoGlobal.Room other = (net.iGap.proto.ProtoGlobal.Room) obj; boolean result = true; result = result && (getId() @@ -15308,7 +15462,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -15368,58 +15522,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.Room parseFrom( + public static net.iGap.proto.ProtoGlobal.Room parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.Room parseFrom( + + public static net.iGap.proto.ProtoGlobal.Room parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.Room parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.Room parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.Room parseFrom( + + public static net.iGap.proto.ProtoGlobal.Room parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.Room parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.Room parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.Room parseFrom( + + public static net.iGap.proto.ProtoGlobal.Room 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 net.iGap.proto.ProtoGlobal.Room parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.Room parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.Room parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.Room 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 net.iGap.proto.ProtoGlobal.Room parseFrom( + + public static net.iGap.proto.ProtoGlobal.Room parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.Room parseFrom( + + public static net.iGap.proto.ProtoGlobal.Room parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -15431,7 +15594,8 @@ public static net.iGap.proto.ProtoGlobal.Room parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.Room prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.Room prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -15439,9 +15603,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -15451,17 +15615,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.Room) - net.iGap.proto.ProtoGlobal.RoomOrBuilder { + net.iGap.proto.ProtoGlobal.RoomOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Room_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_Room_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Room_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_Room_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.Room.class, net.iGap.proto.ProtoGlobal.Room.Builder.class); + net.iGap.proto.ProtoGlobal.Room.class, net.iGap.proto.ProtoGlobal.Room.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.Room.newBuilder() @@ -15470,7 +15634,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -15542,23 +15706,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Room_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_Room_descriptor; } - public net.iGap.proto.ProtoGlobal.Room getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.Room.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.Room getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.Room.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.Room build() { - net.iGap.proto.ProtoGlobal.Room result = buildPartial(); + public net.iGap.proto.ProtoGlobal.Room build() { + net.iGap.proto.ProtoGlobal.Room result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.Room buildPartial() { - net.iGap.proto.ProtoGlobal.Room result = new net.iGap.proto.ProtoGlobal.Room(this); + public net.iGap.proto.ProtoGlobal.Room buildPartial() { + net.iGap.proto.ProtoGlobal.Room result = new net.iGap.proto.ProtoGlobal.Room(this); result.id_ = id_; result.type_ = type_; result.title_ = title_; @@ -15630,16 +15794,16 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.Room) { - return mergeFrom((net.iGap.proto.ProtoGlobal.Room)other); + if (other instanceof net.iGap.proto.ProtoGlobal.Room) { + return mergeFrom((net.iGap.proto.ProtoGlobal.Room) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.Room other) { - if (other == net.iGap.proto.ProtoGlobal.Room.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.Room other) { + if (other == net.iGap.proto.ProtoGlobal.Room.getDefaultInstance()) return this; if (other.getId() != 0L) { setId(other.getId()); } @@ -15703,11 +15867,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.Room parsedMessage = null; + net.iGap.proto.ProtoGlobal.Room parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.Room) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.Room) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -15728,7 +15892,7 @@ public long getId() { * optional uint64 id = 1; */ public Builder setId(long value) { - + id_ = value; onChanged(); return this; @@ -15737,7 +15901,7 @@ public Builder setId(long value) { * optional uint64 id = 1; */ public Builder clearId() { - + id_ = 0L; onChanged(); return this; @@ -15762,8 +15926,8 @@ public Builder setTypeValue(int value) { * optional .proto.Room.Type type = 2; */ public net.iGap.proto.ProtoGlobal.Room.Type getType() { - net.iGap.proto.ProtoGlobal.Room.Type result = net.iGap.proto.ProtoGlobal.Room.Type.valueOf(type_); - return result == null ? net.iGap.proto.ProtoGlobal.Room.Type.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.Room.Type result = net.iGap.proto.ProtoGlobal.Room.Type.valueOf(type_); + return result == null ? net.iGap.proto.ProtoGlobal.Room.Type.UNRECOGNIZED : result; } /** * optional .proto.Room.Type type = 2; @@ -15772,7 +15936,7 @@ public Builder setType(net.iGap.proto.ProtoGlobal.Room.Type value) { if (value == null) { throw new NullPointerException(); } - + type_ = value.getNumber(); onChanged(); return this; @@ -15781,26 +15945,26 @@ public Builder setType(net.iGap.proto.ProtoGlobal.Room.Type value) { * optional .proto.Room.Type type = 2; */ public Builder clearType() { - + type_ = 0; onChanged(); return this; } - private java.lang.Object title_ = ""; + private java.lang.Object title_ = ""; /** * optional string title = 3; */ public java.lang.String getTitle() { - java.lang.Object ref = title_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = title_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); title_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -15808,11 +15972,11 @@ public java.lang.String getTitle() { */ public com.google.protobuf.ByteString getTitleBytes() { - java.lang.Object ref = title_; + java.lang.Object ref = title_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); title_ = b; return b; } else { @@ -15823,11 +15987,11 @@ public java.lang.String getTitle() { * optional string title = 3; */ public Builder setTitle( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + title_ = value; onChanged(); return this; @@ -15836,7 +16000,7 @@ public Builder setTitle( * optional string title = 3; */ public Builder clearTitle() { - + title_ = getDefaultInstance().getTitle(); onChanged(); return this; @@ -15850,26 +16014,26 @@ public Builder setTitleBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + title_ = value; onChanged(); return this; } - private java.lang.Object initials_ = ""; + private java.lang.Object initials_ = ""; /** * optional string initials = 4; */ public java.lang.String getInitials() { - java.lang.Object ref = initials_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = initials_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); initials_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -15877,11 +16041,11 @@ public java.lang.String getInitials() { */ public com.google.protobuf.ByteString getInitialsBytes() { - java.lang.Object ref = initials_; + java.lang.Object ref = initials_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); initials_ = b; return b; } else { @@ -15892,11 +16056,11 @@ public java.lang.String getInitials() { * optional string initials = 4; */ public Builder setInitials( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + initials_ = value; onChanged(); return this; @@ -15905,7 +16069,7 @@ public Builder setInitials( * optional string initials = 4; */ public Builder clearInitials() { - + initials_ = getDefaultInstance().getInitials(); onChanged(); return this; @@ -15919,26 +16083,26 @@ public Builder setInitialsBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + initials_ = value; onChanged(); return this; } - private java.lang.Object color_ = ""; + private java.lang.Object color_ = ""; /** * optional string color = 5; */ public java.lang.String getColor() { - java.lang.Object ref = color_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = color_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); color_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -15946,11 +16110,11 @@ public java.lang.String getColor() { */ public com.google.protobuf.ByteString getColorBytes() { - java.lang.Object ref = color_; + java.lang.Object ref = color_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); color_ = b; return b; } else { @@ -15961,11 +16125,11 @@ public java.lang.String getColor() { * optional string color = 5; */ public Builder setColor( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + color_ = value; onChanged(); return this; @@ -15974,7 +16138,7 @@ public Builder setColor( * optional string color = 5; */ public Builder clearColor() { - + color_ = getDefaultInstance().getColor(); onChanged(); return this; @@ -15988,7 +16152,7 @@ public Builder setColorBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + color_ = value; onChanged(); return this; @@ -16005,7 +16169,7 @@ public int getUnreadCount() { * optional uint32 unread_count = 6; */ public Builder setUnreadCount(int value) { - + unreadCount_ = value; onChanged(); return this; @@ -16014,15 +16178,15 @@ public Builder setUnreadCount(int value) { * optional uint32 unread_count = 6; */ public Builder clearUnreadCount() { - + unreadCount_ = 0; onChanged(); return this; } - private net.iGap.proto.ProtoGlobal.RoomMessage lastMessage_ = null; + private net.iGap.proto.ProtoGlobal.RoomMessage lastMessage_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> lastMessageBuilder_; + net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> lastMessageBuilder_; /** * optional .proto.RoomMessage last_message = 7; */ @@ -16034,7 +16198,7 @@ public boolean hasLastMessage() { */ public net.iGap.proto.ProtoGlobal.RoomMessage getLastMessage() { if (lastMessageBuilder_ == null) { - return lastMessage_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : lastMessage_; + return lastMessage_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : lastMessage_; } else { return lastMessageBuilder_.getMessage(); } @@ -16059,7 +16223,7 @@ public Builder setLastMessage(net.iGap.proto.ProtoGlobal.RoomMessage value) { * optional .proto.RoomMessage last_message = 7; */ public Builder setLastMessage( - net.iGap.proto.ProtoGlobal.RoomMessage.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.RoomMessage.Builder builderForValue) { if (lastMessageBuilder_ == null) { lastMessage_ = builderForValue.build(); onChanged(); @@ -16076,7 +16240,7 @@ public Builder mergeLastMessage(net.iGap.proto.ProtoGlobal.RoomMessage value) { if (lastMessageBuilder_ == null) { if (lastMessage_ != null) { lastMessage_ = - net.iGap.proto.ProtoGlobal.RoomMessage.newBuilder(lastMessage_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.RoomMessage.newBuilder(lastMessage_).mergeFrom(value).buildPartial(); } else { lastMessage_ = value; } @@ -16105,7 +16269,7 @@ public Builder clearLastMessage() { * optional .proto.RoomMessage last_message = 7; */ public net.iGap.proto.ProtoGlobal.RoomMessage.Builder getLastMessageBuilder() { - + onChanged(); return getLastMessageFieldBuilder().getBuilder(); } @@ -16117,18 +16281,18 @@ public net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder getLastMessageOrBuilder() return lastMessageBuilder_.getMessageOrBuilder(); } else { return lastMessage_ == null ? - net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : lastMessage_; + net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : lastMessage_; } } /** * optional .proto.RoomMessage last_message = 7; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> + net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> getLastMessageFieldBuilder() { if (lastMessageBuilder_ == null) { lastMessageBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder>( + net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder>( getLastMessage(), getParentForChildren(), isClean()); @@ -16148,7 +16312,7 @@ public boolean getReadOnly() { * optional bool read_only = 8; */ public Builder setReadOnly(boolean value) { - + readOnly_ = value; onChanged(); return this; @@ -16157,7 +16321,7 @@ public Builder setReadOnly(boolean value) { * optional bool read_only = 8; */ public Builder clearReadOnly() { - + readOnly_ = false; onChanged(); return this; @@ -16174,7 +16338,7 @@ public boolean getIsParticipant() { * optional bool is_participant = 9; */ public Builder setIsParticipant(boolean value) { - + isParticipant_ = value; onChanged(); return this; @@ -16183,15 +16347,15 @@ public Builder setIsParticipant(boolean value) { * optional bool is_participant = 9; */ public Builder clearIsParticipant() { - + isParticipant_ = false; onChanged(); return this; } - private net.iGap.proto.ProtoGlobal.RoomDraft draft_ = null; + private net.iGap.proto.ProtoGlobal.RoomDraft draft_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomDraft, net.iGap.proto.ProtoGlobal.RoomDraft.Builder, net.iGap.proto.ProtoGlobal.RoomDraftOrBuilder> draftBuilder_; + net.iGap.proto.ProtoGlobal.RoomDraft, net.iGap.proto.ProtoGlobal.RoomDraft.Builder, net.iGap.proto.ProtoGlobal.RoomDraftOrBuilder> draftBuilder_; /** * optional .proto.RoomDraft draft = 10; */ @@ -16203,7 +16367,7 @@ public boolean hasDraft() { */ public net.iGap.proto.ProtoGlobal.RoomDraft getDraft() { if (draftBuilder_ == null) { - return draft_ == null ? net.iGap.proto.ProtoGlobal.RoomDraft.getDefaultInstance() : draft_; + return draft_ == null ? net.iGap.proto.ProtoGlobal.RoomDraft.getDefaultInstance() : draft_; } else { return draftBuilder_.getMessage(); } @@ -16228,7 +16392,7 @@ public Builder setDraft(net.iGap.proto.ProtoGlobal.RoomDraft value) { * optional .proto.RoomDraft draft = 10; */ public Builder setDraft( - net.iGap.proto.ProtoGlobal.RoomDraft.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.RoomDraft.Builder builderForValue) { if (draftBuilder_ == null) { draft_ = builderForValue.build(); onChanged(); @@ -16245,7 +16409,7 @@ public Builder mergeDraft(net.iGap.proto.ProtoGlobal.RoomDraft value) { if (draftBuilder_ == null) { if (draft_ != null) { draft_ = - net.iGap.proto.ProtoGlobal.RoomDraft.newBuilder(draft_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.RoomDraft.newBuilder(draft_).mergeFrom(value).buildPartial(); } else { draft_ = value; } @@ -16274,7 +16438,7 @@ public Builder clearDraft() { * optional .proto.RoomDraft draft = 10; */ public net.iGap.proto.ProtoGlobal.RoomDraft.Builder getDraftBuilder() { - + onChanged(); return getDraftFieldBuilder().getBuilder(); } @@ -16286,18 +16450,18 @@ public net.iGap.proto.ProtoGlobal.RoomDraftOrBuilder getDraftOrBuilder() { return draftBuilder_.getMessageOrBuilder(); } else { return draft_ == null ? - net.iGap.proto.ProtoGlobal.RoomDraft.getDefaultInstance() : draft_; + net.iGap.proto.ProtoGlobal.RoomDraft.getDefaultInstance() : draft_; } } /** * optional .proto.RoomDraft draft = 10; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomDraft, net.iGap.proto.ProtoGlobal.RoomDraft.Builder, net.iGap.proto.ProtoGlobal.RoomDraftOrBuilder> + net.iGap.proto.ProtoGlobal.RoomDraft, net.iGap.proto.ProtoGlobal.RoomDraft.Builder, net.iGap.proto.ProtoGlobal.RoomDraftOrBuilder> getDraftFieldBuilder() { if (draftBuilder_ == null) { draftBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomDraft, net.iGap.proto.ProtoGlobal.RoomDraft.Builder, net.iGap.proto.ProtoGlobal.RoomDraftOrBuilder>( + net.iGap.proto.ProtoGlobal.RoomDraft, net.iGap.proto.ProtoGlobal.RoomDraft.Builder, net.iGap.proto.ProtoGlobal.RoomDraftOrBuilder>( getDraft(), getParentForChildren(), isClean()); @@ -16306,9 +16470,9 @@ public net.iGap.proto.ProtoGlobal.RoomDraftOrBuilder getDraftOrBuilder() { return draftBuilder_; } - private net.iGap.proto.ProtoGlobal.RoomMessage firstUnreadMessage_ = null; + private net.iGap.proto.ProtoGlobal.RoomMessage firstUnreadMessage_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> firstUnreadMessageBuilder_; + net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> firstUnreadMessageBuilder_; /** * optional .proto.RoomMessage first_unread_message = 14; */ @@ -16320,7 +16484,7 @@ public boolean hasFirstUnreadMessage() { */ public net.iGap.proto.ProtoGlobal.RoomMessage getFirstUnreadMessage() { if (firstUnreadMessageBuilder_ == null) { - return firstUnreadMessage_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : firstUnreadMessage_; + return firstUnreadMessage_ == null ? net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : firstUnreadMessage_; } else { return firstUnreadMessageBuilder_.getMessage(); } @@ -16345,7 +16509,7 @@ public Builder setFirstUnreadMessage(net.iGap.proto.ProtoGlobal.RoomMessage valu * optional .proto.RoomMessage first_unread_message = 14; */ public Builder setFirstUnreadMessage( - net.iGap.proto.ProtoGlobal.RoomMessage.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.RoomMessage.Builder builderForValue) { if (firstUnreadMessageBuilder_ == null) { firstUnreadMessage_ = builderForValue.build(); onChanged(); @@ -16362,7 +16526,7 @@ public Builder mergeFirstUnreadMessage(net.iGap.proto.ProtoGlobal.RoomMessage va if (firstUnreadMessageBuilder_ == null) { if (firstUnreadMessage_ != null) { firstUnreadMessage_ = - net.iGap.proto.ProtoGlobal.RoomMessage.newBuilder(firstUnreadMessage_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.RoomMessage.newBuilder(firstUnreadMessage_).mergeFrom(value).buildPartial(); } else { firstUnreadMessage_ = value; } @@ -16391,7 +16555,7 @@ public Builder clearFirstUnreadMessage() { * optional .proto.RoomMessage first_unread_message = 14; */ public net.iGap.proto.ProtoGlobal.RoomMessage.Builder getFirstUnreadMessageBuilder() { - + onChanged(); return getFirstUnreadMessageFieldBuilder().getBuilder(); } @@ -16403,18 +16567,18 @@ public net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder getFirstUnreadMessageOrBu return firstUnreadMessageBuilder_.getMessageOrBuilder(); } else { return firstUnreadMessage_ == null ? - net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : firstUnreadMessage_; + net.iGap.proto.ProtoGlobal.RoomMessage.getDefaultInstance() : firstUnreadMessage_; } } /** * optional .proto.RoomMessage first_unread_message = 14; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> + net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder> getFirstUnreadMessageFieldBuilder() { if (firstUnreadMessageBuilder_ == null) { firstUnreadMessageBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder>( + net.iGap.proto.ProtoGlobal.RoomMessage, net.iGap.proto.ProtoGlobal.RoomMessage.Builder, net.iGap.proto.ProtoGlobal.RoomMessageOrBuilder>( getFirstUnreadMessage(), getParentForChildren(), isClean()); @@ -16442,8 +16606,8 @@ public Builder setRoomMuteValue(int value) { * optional .proto.RoomMute room_mute = 15; */ public net.iGap.proto.ProtoGlobal.RoomMute getRoomMute() { - net.iGap.proto.ProtoGlobal.RoomMute result = net.iGap.proto.ProtoGlobal.RoomMute.valueOf(roomMute_); - return result == null ? net.iGap.proto.ProtoGlobal.RoomMute.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.RoomMute result = net.iGap.proto.ProtoGlobal.RoomMute.valueOf(roomMute_); + return result == null ? net.iGap.proto.ProtoGlobal.RoomMute.UNRECOGNIZED : result; } /** * optional .proto.RoomMute room_mute = 15; @@ -16452,7 +16616,7 @@ public Builder setRoomMute(net.iGap.proto.ProtoGlobal.RoomMute value) { if (value == null) { throw new NullPointerException(); } - + roomMute_ = value.getNumber(); onChanged(); return this; @@ -16461,7 +16625,7 @@ public Builder setRoomMute(net.iGap.proto.ProtoGlobal.RoomMute value) { * optional .proto.RoomMute room_mute = 15; */ public Builder clearRoomMute() { - + roomMute_ = 0; onChanged(); return this; @@ -16478,7 +16642,7 @@ public long getPinId() { * optional uint64 pin_id = 16; */ public Builder setPinId(long value) { - + pinId_ = value; onChanged(); return this; @@ -16487,15 +16651,15 @@ public Builder setPinId(long value) { * optional uint64 pin_id = 16; */ public Builder clearPinId() { - + pinId_ = 0L; onChanged(); return this; } - private net.iGap.proto.ProtoGlobal.ChatRoom chatRoomExtra_ = null; + private net.iGap.proto.ProtoGlobal.ChatRoom chatRoomExtra_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.ChatRoom, net.iGap.proto.ProtoGlobal.ChatRoom.Builder, net.iGap.proto.ProtoGlobal.ChatRoomOrBuilder> chatRoomExtraBuilder_; + net.iGap.proto.ProtoGlobal.ChatRoom, net.iGap.proto.ProtoGlobal.ChatRoom.Builder, net.iGap.proto.ProtoGlobal.ChatRoomOrBuilder> chatRoomExtraBuilder_; /** * optional .proto.ChatRoom chat_room_extra = 11; */ @@ -16507,7 +16671,7 @@ public boolean hasChatRoomExtra() { */ public net.iGap.proto.ProtoGlobal.ChatRoom getChatRoomExtra() { if (chatRoomExtraBuilder_ == null) { - return chatRoomExtra_ == null ? net.iGap.proto.ProtoGlobal.ChatRoom.getDefaultInstance() : chatRoomExtra_; + return chatRoomExtra_ == null ? net.iGap.proto.ProtoGlobal.ChatRoom.getDefaultInstance() : chatRoomExtra_; } else { return chatRoomExtraBuilder_.getMessage(); } @@ -16532,7 +16696,7 @@ public Builder setChatRoomExtra(net.iGap.proto.ProtoGlobal.ChatRoom value) { * optional .proto.ChatRoom chat_room_extra = 11; */ public Builder setChatRoomExtra( - net.iGap.proto.ProtoGlobal.ChatRoom.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.ChatRoom.Builder builderForValue) { if (chatRoomExtraBuilder_ == null) { chatRoomExtra_ = builderForValue.build(); onChanged(); @@ -16549,7 +16713,7 @@ public Builder mergeChatRoomExtra(net.iGap.proto.ProtoGlobal.ChatRoom value) { if (chatRoomExtraBuilder_ == null) { if (chatRoomExtra_ != null) { chatRoomExtra_ = - net.iGap.proto.ProtoGlobal.ChatRoom.newBuilder(chatRoomExtra_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.ChatRoom.newBuilder(chatRoomExtra_).mergeFrom(value).buildPartial(); } else { chatRoomExtra_ = value; } @@ -16578,7 +16742,7 @@ public Builder clearChatRoomExtra() { * optional .proto.ChatRoom chat_room_extra = 11; */ public net.iGap.proto.ProtoGlobal.ChatRoom.Builder getChatRoomExtraBuilder() { - + onChanged(); return getChatRoomExtraFieldBuilder().getBuilder(); } @@ -16590,18 +16754,18 @@ public net.iGap.proto.ProtoGlobal.ChatRoomOrBuilder getChatRoomExtraOrBuilder() return chatRoomExtraBuilder_.getMessageOrBuilder(); } else { return chatRoomExtra_ == null ? - net.iGap.proto.ProtoGlobal.ChatRoom.getDefaultInstance() : chatRoomExtra_; + net.iGap.proto.ProtoGlobal.ChatRoom.getDefaultInstance() : chatRoomExtra_; } } /** * optional .proto.ChatRoom chat_room_extra = 11; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.ChatRoom, net.iGap.proto.ProtoGlobal.ChatRoom.Builder, net.iGap.proto.ProtoGlobal.ChatRoomOrBuilder> + net.iGap.proto.ProtoGlobal.ChatRoom, net.iGap.proto.ProtoGlobal.ChatRoom.Builder, net.iGap.proto.ProtoGlobal.ChatRoomOrBuilder> getChatRoomExtraFieldBuilder() { if (chatRoomExtraBuilder_ == null) { chatRoomExtraBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.ChatRoom, net.iGap.proto.ProtoGlobal.ChatRoom.Builder, net.iGap.proto.ProtoGlobal.ChatRoomOrBuilder>( + net.iGap.proto.ProtoGlobal.ChatRoom, net.iGap.proto.ProtoGlobal.ChatRoom.Builder, net.iGap.proto.ProtoGlobal.ChatRoomOrBuilder>( getChatRoomExtra(), getParentForChildren(), isClean()); @@ -16610,9 +16774,9 @@ public net.iGap.proto.ProtoGlobal.ChatRoomOrBuilder getChatRoomExtraOrBuilder() return chatRoomExtraBuilder_; } - private net.iGap.proto.ProtoGlobal.GroupRoom groupRoomExtra_ = null; + private net.iGap.proto.ProtoGlobal.GroupRoom groupRoomExtra_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.GroupRoom, net.iGap.proto.ProtoGlobal.GroupRoom.Builder, net.iGap.proto.ProtoGlobal.GroupRoomOrBuilder> groupRoomExtraBuilder_; + net.iGap.proto.ProtoGlobal.GroupRoom, net.iGap.proto.ProtoGlobal.GroupRoom.Builder, net.iGap.proto.ProtoGlobal.GroupRoomOrBuilder> groupRoomExtraBuilder_; /** * optional .proto.GroupRoom group_room_extra = 12; */ @@ -16624,7 +16788,7 @@ public boolean hasGroupRoomExtra() { */ public net.iGap.proto.ProtoGlobal.GroupRoom getGroupRoomExtra() { if (groupRoomExtraBuilder_ == null) { - return groupRoomExtra_ == null ? net.iGap.proto.ProtoGlobal.GroupRoom.getDefaultInstance() : groupRoomExtra_; + return groupRoomExtra_ == null ? net.iGap.proto.ProtoGlobal.GroupRoom.getDefaultInstance() : groupRoomExtra_; } else { return groupRoomExtraBuilder_.getMessage(); } @@ -16649,7 +16813,7 @@ public Builder setGroupRoomExtra(net.iGap.proto.ProtoGlobal.GroupRoom value) { * optional .proto.GroupRoom group_room_extra = 12; */ public Builder setGroupRoomExtra( - net.iGap.proto.ProtoGlobal.GroupRoom.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.GroupRoom.Builder builderForValue) { if (groupRoomExtraBuilder_ == null) { groupRoomExtra_ = builderForValue.build(); onChanged(); @@ -16666,7 +16830,7 @@ public Builder mergeGroupRoomExtra(net.iGap.proto.ProtoGlobal.GroupRoom value) { if (groupRoomExtraBuilder_ == null) { if (groupRoomExtra_ != null) { groupRoomExtra_ = - net.iGap.proto.ProtoGlobal.GroupRoom.newBuilder(groupRoomExtra_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.GroupRoom.newBuilder(groupRoomExtra_).mergeFrom(value).buildPartial(); } else { groupRoomExtra_ = value; } @@ -16695,7 +16859,7 @@ public Builder clearGroupRoomExtra() { * optional .proto.GroupRoom group_room_extra = 12; */ public net.iGap.proto.ProtoGlobal.GroupRoom.Builder getGroupRoomExtraBuilder() { - + onChanged(); return getGroupRoomExtraFieldBuilder().getBuilder(); } @@ -16707,18 +16871,18 @@ public net.iGap.proto.ProtoGlobal.GroupRoomOrBuilder getGroupRoomExtraOrBuilder( return groupRoomExtraBuilder_.getMessageOrBuilder(); } else { return groupRoomExtra_ == null ? - net.iGap.proto.ProtoGlobal.GroupRoom.getDefaultInstance() : groupRoomExtra_; + net.iGap.proto.ProtoGlobal.GroupRoom.getDefaultInstance() : groupRoomExtra_; } } /** * optional .proto.GroupRoom group_room_extra = 12; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.GroupRoom, net.iGap.proto.ProtoGlobal.GroupRoom.Builder, net.iGap.proto.ProtoGlobal.GroupRoomOrBuilder> + net.iGap.proto.ProtoGlobal.GroupRoom, net.iGap.proto.ProtoGlobal.GroupRoom.Builder, net.iGap.proto.ProtoGlobal.GroupRoomOrBuilder> getGroupRoomExtraFieldBuilder() { if (groupRoomExtraBuilder_ == null) { groupRoomExtraBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.GroupRoom, net.iGap.proto.ProtoGlobal.GroupRoom.Builder, net.iGap.proto.ProtoGlobal.GroupRoomOrBuilder>( + net.iGap.proto.ProtoGlobal.GroupRoom, net.iGap.proto.ProtoGlobal.GroupRoom.Builder, net.iGap.proto.ProtoGlobal.GroupRoomOrBuilder>( getGroupRoomExtra(), getParentForChildren(), isClean()); @@ -16727,9 +16891,9 @@ public net.iGap.proto.ProtoGlobal.GroupRoomOrBuilder getGroupRoomExtraOrBuilder( return groupRoomExtraBuilder_; } - private net.iGap.proto.ProtoGlobal.ChannelRoom channelRoomExtra_ = null; + private net.iGap.proto.ProtoGlobal.ChannelRoom channelRoomExtra_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.ChannelRoom, net.iGap.proto.ProtoGlobal.ChannelRoom.Builder, net.iGap.proto.ProtoGlobal.ChannelRoomOrBuilder> channelRoomExtraBuilder_; + net.iGap.proto.ProtoGlobal.ChannelRoom, net.iGap.proto.ProtoGlobal.ChannelRoom.Builder, net.iGap.proto.ProtoGlobal.ChannelRoomOrBuilder> channelRoomExtraBuilder_; /** * optional .proto.ChannelRoom channel_room_extra = 13; */ @@ -16741,7 +16905,7 @@ public boolean hasChannelRoomExtra() { */ public net.iGap.proto.ProtoGlobal.ChannelRoom getChannelRoomExtra() { if (channelRoomExtraBuilder_ == null) { - return channelRoomExtra_ == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.getDefaultInstance() : channelRoomExtra_; + return channelRoomExtra_ == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.getDefaultInstance() : channelRoomExtra_; } else { return channelRoomExtraBuilder_.getMessage(); } @@ -16766,7 +16930,7 @@ public Builder setChannelRoomExtra(net.iGap.proto.ProtoGlobal.ChannelRoom value) * optional .proto.ChannelRoom channel_room_extra = 13; */ public Builder setChannelRoomExtra( - net.iGap.proto.ProtoGlobal.ChannelRoom.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.ChannelRoom.Builder builderForValue) { if (channelRoomExtraBuilder_ == null) { channelRoomExtra_ = builderForValue.build(); onChanged(); @@ -16783,7 +16947,7 @@ public Builder mergeChannelRoomExtra(net.iGap.proto.ProtoGlobal.ChannelRoom valu if (channelRoomExtraBuilder_ == null) { if (channelRoomExtra_ != null) { channelRoomExtra_ = - net.iGap.proto.ProtoGlobal.ChannelRoom.newBuilder(channelRoomExtra_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.ChannelRoom.newBuilder(channelRoomExtra_).mergeFrom(value).buildPartial(); } else { channelRoomExtra_ = value; } @@ -16812,7 +16976,7 @@ public Builder clearChannelRoomExtra() { * optional .proto.ChannelRoom channel_room_extra = 13; */ public net.iGap.proto.ProtoGlobal.ChannelRoom.Builder getChannelRoomExtraBuilder() { - + onChanged(); return getChannelRoomExtraFieldBuilder().getBuilder(); } @@ -16824,18 +16988,18 @@ public net.iGap.proto.ProtoGlobal.ChannelRoomOrBuilder getChannelRoomExtraOrBuil return channelRoomExtraBuilder_.getMessageOrBuilder(); } else { return channelRoomExtra_ == null ? - net.iGap.proto.ProtoGlobal.ChannelRoom.getDefaultInstance() : channelRoomExtra_; + net.iGap.proto.ProtoGlobal.ChannelRoom.getDefaultInstance() : channelRoomExtra_; } } /** * optional .proto.ChannelRoom channel_room_extra = 13; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.ChannelRoom, net.iGap.proto.ProtoGlobal.ChannelRoom.Builder, net.iGap.proto.ProtoGlobal.ChannelRoomOrBuilder> + net.iGap.proto.ProtoGlobal.ChannelRoom, net.iGap.proto.ProtoGlobal.ChannelRoom.Builder, net.iGap.proto.ProtoGlobal.ChannelRoomOrBuilder> getChannelRoomExtraFieldBuilder() { if (channelRoomExtraBuilder_ == null) { channelRoomExtraBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.ChannelRoom, net.iGap.proto.ProtoGlobal.ChannelRoom.Builder, net.iGap.proto.ProtoGlobal.ChannelRoomOrBuilder>( + net.iGap.proto.ProtoGlobal.ChannelRoom, net.iGap.proto.ProtoGlobal.ChannelRoom.Builder, net.iGap.proto.ProtoGlobal.ChannelRoomOrBuilder>( getChannelRoomExtra(), getParentForChildren(), isClean()); @@ -16860,10 +17024,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.Room) private static final net.iGap.proto.ProtoGlobal.Room DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.Room(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.Room(); } - public static net.iGap.proto.ProtoGlobal.Room getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.Room getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -16881,12 +17045,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.Room getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.Room getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -16923,7 +17087,7 @@ private ChatRoom(com.google.protobuf.GeneratedMessageV3.Builder builder) { private ChatRoom() { } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -16949,11 +17113,11 @@ private ChatRoom( break; } case 10: { - net.iGap.proto.ProtoGlobal.RegisteredUser.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.RegisteredUser.Builder subBuilder = null; if (peer_ != null) { subBuilder = peer_.toBuilder(); } - peer_ = input.readMessage(net.iGap.proto.ProtoGlobal.RegisteredUser.parser(), extensionRegistry); + peer_ = input.readMessage(net.iGap.proto.ProtoGlobal.RegisteredUser.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(peer_); peer_ = subBuilder.buildPartial(); @@ -16974,18 +17138,18 @@ private ChatRoom( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChatRoom_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChatRoom_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChatRoom_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChatRoom_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.ChatRoom.class, net.iGap.proto.ProtoGlobal.ChatRoom.Builder.class); + net.iGap.proto.ProtoGlobal.ChatRoom.class, net.iGap.proto.ProtoGlobal.ChatRoom.Builder.class); } public static final int PEER_FIELD_NUMBER = 1; - private net.iGap.proto.ProtoGlobal.RegisteredUser peer_; + private net.iGap.proto.ProtoGlobal.RegisteredUser peer_; /** * optional .proto.RegisteredUser peer = 1; */ @@ -16996,7 +17160,7 @@ public boolean hasPeer() { * optional .proto.RegisteredUser peer = 1; */ public net.iGap.proto.ProtoGlobal.RegisteredUser getPeer() { - return peer_ == null ? net.iGap.proto.ProtoGlobal.RegisteredUser.getDefaultInstance() : peer_; + return peer_ == null ? net.iGap.proto.ProtoGlobal.RegisteredUser.getDefaultInstance() : peer_; } /** * optional .proto.RegisteredUser peer = 1; @@ -17036,15 +17200,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.ChatRoom)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.ChatRoom)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.ChatRoom other = (net.iGap.proto.ProtoGlobal.ChatRoom) obj; + net.iGap.proto.ProtoGlobal.ChatRoom other = (net.iGap.proto.ProtoGlobal.ChatRoom) obj; boolean result = true; result = result && (hasPeer() == other.hasPeer()); @@ -17055,7 +17220,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -17071,58 +17236,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom( + public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom( + + public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom( + + public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom( + + public static net.iGap.proto.ProtoGlobal.ChatRoom 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 net.iGap.proto.ProtoGlobal.ChatRoom parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.ChatRoom parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.ChatRoom parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.ChatRoom 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 net.iGap.proto.ProtoGlobal.ChatRoom parseFrom( + + public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom( + + public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -17134,7 +17308,8 @@ public static net.iGap.proto.ProtoGlobal.ChatRoom parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.ChatRoom prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.ChatRoom prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -17142,9 +17317,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -17154,17 +17329,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.ChatRoom) - net.iGap.proto.ProtoGlobal.ChatRoomOrBuilder { + net.iGap.proto.ProtoGlobal.ChatRoomOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChatRoom_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChatRoom_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChatRoom_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChatRoom_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.ChatRoom.class, net.iGap.proto.ProtoGlobal.ChatRoom.Builder.class); + net.iGap.proto.ProtoGlobal.ChatRoom.class, net.iGap.proto.ProtoGlobal.ChatRoom.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.ChatRoom.newBuilder() @@ -17173,7 +17348,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -17195,23 +17370,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChatRoom_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChatRoom_descriptor; } - public net.iGap.proto.ProtoGlobal.ChatRoom getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.ChatRoom.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.ChatRoom getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.ChatRoom.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.ChatRoom build() { - net.iGap.proto.ProtoGlobal.ChatRoom result = buildPartial(); + public net.iGap.proto.ProtoGlobal.ChatRoom build() { + net.iGap.proto.ProtoGlobal.ChatRoom result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.ChatRoom buildPartial() { - net.iGap.proto.ProtoGlobal.ChatRoom result = new net.iGap.proto.ProtoGlobal.ChatRoom(this); + public net.iGap.proto.ProtoGlobal.ChatRoom buildPartial() { + net.iGap.proto.ProtoGlobal.ChatRoom result = new net.iGap.proto.ProtoGlobal.ChatRoom(this); if (peerBuilder_ == null) { result.peer_ = peer_; } else { @@ -17248,16 +17423,16 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.ChatRoom) { - return mergeFrom((net.iGap.proto.ProtoGlobal.ChatRoom)other); + if (other instanceof net.iGap.proto.ProtoGlobal.ChatRoom) { + return mergeFrom((net.iGap.proto.ProtoGlobal.ChatRoom) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.ChatRoom other) { - if (other == net.iGap.proto.ProtoGlobal.ChatRoom.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.ChatRoom other) { + if (other == net.iGap.proto.ProtoGlobal.ChatRoom.getDefaultInstance()) return this; if (other.hasPeer()) { mergePeer(other.getPeer()); } @@ -17273,11 +17448,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.ChatRoom parsedMessage = null; + net.iGap.proto.ProtoGlobal.ChatRoom parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.ChatRoom) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.ChatRoom) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -17287,9 +17462,9 @@ public Builder mergeFrom( return this; } - private net.iGap.proto.ProtoGlobal.RegisteredUser peer_ = null; + private net.iGap.proto.ProtoGlobal.RegisteredUser peer_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RegisteredUser, net.iGap.proto.ProtoGlobal.RegisteredUser.Builder, net.iGap.proto.ProtoGlobal.RegisteredUserOrBuilder> peerBuilder_; + net.iGap.proto.ProtoGlobal.RegisteredUser, net.iGap.proto.ProtoGlobal.RegisteredUser.Builder, net.iGap.proto.ProtoGlobal.RegisteredUserOrBuilder> peerBuilder_; /** * optional .proto.RegisteredUser peer = 1; */ @@ -17301,7 +17476,7 @@ public boolean hasPeer() { */ public net.iGap.proto.ProtoGlobal.RegisteredUser getPeer() { if (peerBuilder_ == null) { - return peer_ == null ? net.iGap.proto.ProtoGlobal.RegisteredUser.getDefaultInstance() : peer_; + return peer_ == null ? net.iGap.proto.ProtoGlobal.RegisteredUser.getDefaultInstance() : peer_; } else { return peerBuilder_.getMessage(); } @@ -17326,7 +17501,7 @@ public Builder setPeer(net.iGap.proto.ProtoGlobal.RegisteredUser value) { * optional .proto.RegisteredUser peer = 1; */ public Builder setPeer( - net.iGap.proto.ProtoGlobal.RegisteredUser.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.RegisteredUser.Builder builderForValue) { if (peerBuilder_ == null) { peer_ = builderForValue.build(); onChanged(); @@ -17343,7 +17518,7 @@ public Builder mergePeer(net.iGap.proto.ProtoGlobal.RegisteredUser value) { if (peerBuilder_ == null) { if (peer_ != null) { peer_ = - net.iGap.proto.ProtoGlobal.RegisteredUser.newBuilder(peer_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.RegisteredUser.newBuilder(peer_).mergeFrom(value).buildPartial(); } else { peer_ = value; } @@ -17372,7 +17547,7 @@ public Builder clearPeer() { * optional .proto.RegisteredUser peer = 1; */ public net.iGap.proto.ProtoGlobal.RegisteredUser.Builder getPeerBuilder() { - + onChanged(); return getPeerFieldBuilder().getBuilder(); } @@ -17384,18 +17559,18 @@ public net.iGap.proto.ProtoGlobal.RegisteredUserOrBuilder getPeerOrBuilder() { return peerBuilder_.getMessageOrBuilder(); } else { return peer_ == null ? - net.iGap.proto.ProtoGlobal.RegisteredUser.getDefaultInstance() : peer_; + net.iGap.proto.ProtoGlobal.RegisteredUser.getDefaultInstance() : peer_; } } /** * optional .proto.RegisteredUser peer = 1; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RegisteredUser, net.iGap.proto.ProtoGlobal.RegisteredUser.Builder, net.iGap.proto.ProtoGlobal.RegisteredUserOrBuilder> + net.iGap.proto.ProtoGlobal.RegisteredUser, net.iGap.proto.ProtoGlobal.RegisteredUser.Builder, net.iGap.proto.ProtoGlobal.RegisteredUserOrBuilder> getPeerFieldBuilder() { if (peerBuilder_ == null) { peerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.RegisteredUser, net.iGap.proto.ProtoGlobal.RegisteredUser.Builder, net.iGap.proto.ProtoGlobal.RegisteredUserOrBuilder>( + net.iGap.proto.ProtoGlobal.RegisteredUser, net.iGap.proto.ProtoGlobal.RegisteredUser.Builder, net.iGap.proto.ProtoGlobal.RegisteredUserOrBuilder>( getPeer(), getParentForChildren(), isClean()); @@ -17420,10 +17595,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.ChatRoom) private static final net.iGap.proto.ProtoGlobal.ChatRoom DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.ChatRoom(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.ChatRoom(); } - public static net.iGap.proto.ProtoGlobal.ChatRoom getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.ChatRoom getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -17441,12 +17616,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.ChatRoom getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.ChatRoom getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -17580,7 +17755,7 @@ private GroupRoom() { avatarCount_ = 0; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -17623,7 +17798,7 @@ private GroupRoom( break; } case 34: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); participantsCountLabel_ = s; break; @@ -17634,13 +17809,13 @@ private GroupRoom( break; } case 50: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); participantsCountLimitLabel_ = s; break; } case 58: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); description_ = s; break; @@ -17651,11 +17826,11 @@ private GroupRoom( break; } case 74: { - net.iGap.proto.ProtoGlobal.Avatar.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.Avatar.Builder subBuilder = null; if (avatar_ != null) { subBuilder = avatar_.toBuilder(); } - avatar_ = input.readMessage(net.iGap.proto.ProtoGlobal.Avatar.parser(), extensionRegistry); + avatar_ = input.readMessage(net.iGap.proto.ProtoGlobal.Avatar.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(avatar_); avatar_ = subBuilder.buildPartial(); @@ -17664,11 +17839,11 @@ private GroupRoom( break; } case 82: { - net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder subBuilder = null; if (privateExtra_ != null) { subBuilder = privateExtra_.toBuilder(); } - privateExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.parser(), extensionRegistry); + privateExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(privateExtra_); privateExtra_ = subBuilder.buildPartial(); @@ -17677,11 +17852,11 @@ private GroupRoom( break; } case 90: { - net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder subBuilder = null; + net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder subBuilder = null; if (publicExtra_ != null) { subBuilder = publicExtra_.toBuilder(); } - publicExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.parser(), extensionRegistry); + publicExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(publicExtra_); publicExtra_ = subBuilder.buildPartial(); @@ -17702,14 +17877,14 @@ private GroupRoom( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.GroupRoom.class, net.iGap.proto.ProtoGlobal.GroupRoom.Builder.class); + net.iGap.proto.ProtoGlobal.GroupRoom.class, net.iGap.proto.ProtoGlobal.GroupRoom.Builder.class); } /** @@ -17740,7 +17915,7 @@ public enum Type public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -17784,7 +17959,7 @@ public Type findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.GroupRoom.getDescriptor().getEnumTypes().get(0); + return net.iGap.proto.ProtoGlobal.GroupRoom.getDescriptor().getEnumTypes().get(0); } private static final Type[] VALUES = values(); @@ -17792,7 +17967,7 @@ public Type findValueByNumber(int number) { public static Type valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -17854,7 +18029,7 @@ public enum Role public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -17900,7 +18075,7 @@ public Role findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.GroupRoom.getDescriptor().getEnumTypes().get(1); + return net.iGap.proto.ProtoGlobal.GroupRoom.getDescriptor().getEnumTypes().get(1); } private static final Role[] VALUES = values(); @@ -17908,7 +18083,7 @@ public Role findValueByNumber(int number) { public static Role valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -17966,7 +18141,7 @@ private PrivateExtra() { inviteToken_ = ""; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -17992,13 +18167,13 @@ private PrivateExtra( break; } case 10: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); inviteLink_ = s; break; } case 18: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); inviteToken_ = s; break; @@ -18016,29 +18191,29 @@ private PrivateExtra( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PrivateExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PrivateExtra_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PrivateExtra_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PrivateExtra_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.class, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder.class); + net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.class, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder.class); } public static final int INVITE_LINK_FIELD_NUMBER = 1; - private volatile java.lang.Object inviteLink_; + private volatile java.lang.Object inviteLink_; /** * optional string invite_link = 1; */ public java.lang.String getInviteLink() { - java.lang.Object ref = inviteLink_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = inviteLink_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); inviteLink_ = s; return s; } @@ -18048,11 +18223,11 @@ public java.lang.String getInviteLink() { */ public com.google.protobuf.ByteString getInviteLinkBytes() { - java.lang.Object ref = inviteLink_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = inviteLink_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); inviteLink_ = b; return b; } else { @@ -18061,18 +18236,18 @@ public java.lang.String getInviteLink() { } public static final int INVITE_TOKEN_FIELD_NUMBER = 2; - private volatile java.lang.Object inviteToken_; + private volatile java.lang.Object inviteToken_; /** * optional string invite_token = 2; */ public java.lang.String getInviteToken() { - java.lang.Object ref = inviteToken_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = inviteToken_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); inviteToken_ = s; return s; } @@ -18082,11 +18257,11 @@ public java.lang.String getInviteToken() { */ public com.google.protobuf.ByteString getInviteTokenBytes() { - java.lang.Object ref = inviteToken_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = inviteToken_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); inviteToken_ = b; return b; } else { @@ -18130,15 +18305,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra other = (net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra) obj; + net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra other = (net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra) obj; boolean result = true; result = result && getInviteLink() @@ -18148,7 +18324,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -18164,58 +18340,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom( + public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra 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 net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra 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 net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -18227,7 +18412,8 @@ public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -18235,9 +18421,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -18247,17 +18433,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.GroupRoom.PrivateExtra) - net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtraOrBuilder { + net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtraOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PrivateExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PrivateExtra_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PrivateExtra_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PrivateExtra_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.class, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder.class); + net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.class, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.newBuilder() @@ -18266,7 +18452,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -18286,23 +18472,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PrivateExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PrivateExtra_descriptor; } - public net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra build() { - net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra result = buildPartial(); + public net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra build() { + net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra buildPartial() { - net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra result = new net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra(this); + public net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra buildPartial() { + net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra result = new net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra(this); result.inviteLink_ = inviteLink_; result.inviteToken_ = inviteToken_; onBuilt(); @@ -18336,16 +18522,17 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra) { - return mergeFrom((net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra)other); + if (other instanceof net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra) { + return mergeFrom((net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra other) { - if (other == net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra other) { + if (other == net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.getDefaultInstance()) + return this; if (!other.getInviteLink().isEmpty()) { inviteLink_ = other.inviteLink_; onChanged(); @@ -18366,11 +18553,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parsedMessage = null; + net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -18380,20 +18567,20 @@ public Builder mergeFrom( return this; } - private java.lang.Object inviteLink_ = ""; + private java.lang.Object inviteLink_ = ""; /** * optional string invite_link = 1; */ public java.lang.String getInviteLink() { - java.lang.Object ref = inviteLink_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = inviteLink_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); inviteLink_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -18401,11 +18588,11 @@ public java.lang.String getInviteLink() { */ public com.google.protobuf.ByteString getInviteLinkBytes() { - java.lang.Object ref = inviteLink_; + java.lang.Object ref = inviteLink_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); inviteLink_ = b; return b; } else { @@ -18416,11 +18603,11 @@ public java.lang.String getInviteLink() { * optional string invite_link = 1; */ public Builder setInviteLink( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + inviteLink_ = value; onChanged(); return this; @@ -18429,7 +18616,7 @@ public Builder setInviteLink( * optional string invite_link = 1; */ public Builder clearInviteLink() { - + inviteLink_ = getDefaultInstance().getInviteLink(); onChanged(); return this; @@ -18443,26 +18630,26 @@ public Builder setInviteLinkBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + inviteLink_ = value; onChanged(); return this; } - private java.lang.Object inviteToken_ = ""; + private java.lang.Object inviteToken_ = ""; /** * optional string invite_token = 2; */ public java.lang.String getInviteToken() { - java.lang.Object ref = inviteToken_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = inviteToken_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); inviteToken_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -18470,11 +18657,11 @@ public java.lang.String getInviteToken() { */ public com.google.protobuf.ByteString getInviteTokenBytes() { - java.lang.Object ref = inviteToken_; + java.lang.Object ref = inviteToken_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); inviteToken_ = b; return b; } else { @@ -18485,11 +18672,11 @@ public java.lang.String getInviteToken() { * optional string invite_token = 2; */ public Builder setInviteToken( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + inviteToken_ = value; onChanged(); return this; @@ -18498,7 +18685,7 @@ public Builder setInviteToken( * optional string invite_token = 2; */ public Builder clearInviteToken() { - + inviteToken_ = getDefaultInstance().getInviteToken(); onChanged(); return this; @@ -18512,7 +18699,7 @@ public Builder setInviteTokenBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + inviteToken_ = value; onChanged(); return this; @@ -18534,10 +18721,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.GroupRoom.PrivateExtra) private static final net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra(); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -18555,12 +18742,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -18595,7 +18782,7 @@ private PublicExtra() { username_ = ""; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -18621,7 +18808,7 @@ private PublicExtra( break; } case 10: { - java.lang.String s = input.readStringRequireUtf8(); + java.lang.String s = input.readStringRequireUtf8(); username_ = s; break; @@ -18639,29 +18826,29 @@ private PublicExtra( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PublicExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PublicExtra_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PublicExtra_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PublicExtra_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.class, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder.class); + net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.class, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder.class); } public static final int USERNAME_FIELD_NUMBER = 1; - private volatile java.lang.Object username_; + private volatile java.lang.Object username_; /** * optional string username = 1; */ public java.lang.String getUsername() { - java.lang.Object ref = username_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = username_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); username_ = s; return s; } @@ -18671,11 +18858,11 @@ public java.lang.String getUsername() { */ public com.google.protobuf.ByteString getUsernameBytes() { - java.lang.Object ref = username_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = username_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); username_ = b; return b; } else { @@ -18713,15 +18900,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra other = (net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra) obj; + net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra other = (net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra) obj; boolean result = true; result = result && getUsername() @@ -18729,7 +18917,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -18743,58 +18931,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom( + public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra 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 net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra 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 net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -18806,7 +19003,8 @@ public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -18814,9 +19012,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -18826,17 +19024,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.GroupRoom.PublicExtra) - net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtraOrBuilder { + net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtraOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PublicExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PublicExtra_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PublicExtra_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PublicExtra_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.class, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder.class); + net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.class, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.newBuilder() @@ -18845,7 +19043,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -18863,23 +19061,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PublicExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_PublicExtra_descriptor; } - public net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra build() { - net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra result = buildPartial(); + public net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra build() { + net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra buildPartial() { - net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra result = new net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra(this); + public net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra buildPartial() { + net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra result = new net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra(this); result.username_ = username_; onBuilt(); return result; @@ -18912,16 +19110,17 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra) { - return mergeFrom((net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra)other); + if (other instanceof net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra) { + return mergeFrom((net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra other) { - if (other == net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra other) { + if (other == net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.getDefaultInstance()) + return this; if (!other.getUsername().isEmpty()) { username_ = other.username_; onChanged(); @@ -18938,11 +19137,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parsedMessage = null; + net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -18952,20 +19151,20 @@ public Builder mergeFrom( return this; } - private java.lang.Object username_ = ""; + private java.lang.Object username_ = ""; /** * optional string username = 1; */ public java.lang.String getUsername() { - java.lang.Object ref = username_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = username_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); username_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -18973,11 +19172,11 @@ public java.lang.String getUsername() { */ public com.google.protobuf.ByteString getUsernameBytes() { - java.lang.Object ref = username_; + java.lang.Object ref = username_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); username_ = b; return b; } else { @@ -18988,11 +19187,11 @@ public java.lang.String getUsername() { * optional string username = 1; */ public Builder setUsername( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + username_ = value; onChanged(); return this; @@ -19001,7 +19200,7 @@ public Builder setUsername( * optional string username = 1; */ public Builder clearUsername() { - + username_ = getDefaultInstance().getUsername(); onChanged(); return this; @@ -19015,7 +19214,7 @@ public Builder setUsernameBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + username_ = value; onChanged(); return this; @@ -19037,10 +19236,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.GroupRoom.PublicExtra) private static final net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra(); } - public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -19058,12 +19257,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -19081,8 +19280,8 @@ public int getTypeValue() { * optional .proto.GroupRoom.Type type = 1; */ public net.iGap.proto.ProtoGlobal.GroupRoom.Type getType() { - net.iGap.proto.ProtoGlobal.GroupRoom.Type result = net.iGap.proto.ProtoGlobal.GroupRoom.Type.valueOf(type_); - return result == null ? net.iGap.proto.ProtoGlobal.GroupRoom.Type.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.GroupRoom.Type result = net.iGap.proto.ProtoGlobal.GroupRoom.Type.valueOf(type_); + return result == null ? net.iGap.proto.ProtoGlobal.GroupRoom.Type.UNRECOGNIZED : result; } public static final int ROLE_FIELD_NUMBER = 2; @@ -19097,8 +19296,8 @@ public int getRoleValue() { * optional .proto.GroupRoom.Role role = 2; */ public net.iGap.proto.ProtoGlobal.GroupRoom.Role getRole() { - net.iGap.proto.ProtoGlobal.GroupRoom.Role result = net.iGap.proto.ProtoGlobal.GroupRoom.Role.valueOf(role_); - return result == null ? net.iGap.proto.ProtoGlobal.GroupRoom.Role.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.GroupRoom.Role result = net.iGap.proto.ProtoGlobal.GroupRoom.Role.valueOf(role_); + return result == null ? net.iGap.proto.ProtoGlobal.GroupRoom.Role.UNRECOGNIZED : result; } public static final int PARTICIPANTS_COUNT_FIELD_NUMBER = 3; @@ -19111,18 +19310,18 @@ public int getParticipantsCount() { } public static final int PARTICIPANTS_COUNT_LABEL_FIELD_NUMBER = 4; - private volatile java.lang.Object participantsCountLabel_; + private volatile java.lang.Object participantsCountLabel_; /** * optional string participants_count_label = 4; */ public java.lang.String getParticipantsCountLabel() { - java.lang.Object ref = participantsCountLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = participantsCountLabel_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); participantsCountLabel_ = s; return s; } @@ -19132,11 +19331,11 @@ public java.lang.String getParticipantsCountLabel() { */ public com.google.protobuf.ByteString getParticipantsCountLabelBytes() { - java.lang.Object ref = participantsCountLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = participantsCountLabel_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); participantsCountLabel_ = b; return b; } else { @@ -19154,18 +19353,18 @@ public int getParticipantsCountLimit() { } public static final int PARTICIPANTS_COUNT_LIMIT_LABEL_FIELD_NUMBER = 6; - private volatile java.lang.Object participantsCountLimitLabel_; + private volatile java.lang.Object participantsCountLimitLabel_; /** * optional string participants_count_limit_label = 6; */ public java.lang.String getParticipantsCountLimitLabel() { - java.lang.Object ref = participantsCountLimitLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = participantsCountLimitLabel_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); participantsCountLimitLabel_ = s; return s; } @@ -19175,11 +19374,11 @@ public java.lang.String getParticipantsCountLimitLabel() { */ public com.google.protobuf.ByteString getParticipantsCountLimitLabelBytes() { - java.lang.Object ref = participantsCountLimitLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = participantsCountLimitLabel_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); participantsCountLimitLabel_ = b; return b; } else { @@ -19188,18 +19387,18 @@ public java.lang.String getParticipantsCountLimitLabel() { } public static final int DESCRIPTION_FIELD_NUMBER = 7; - private volatile java.lang.Object description_; + private volatile java.lang.Object description_; /** * optional string description = 7; */ public java.lang.String getDescription() { - java.lang.Object ref = description_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = description_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); description_ = s; return s; } @@ -19209,11 +19408,11 @@ public java.lang.String getDescription() { */ public com.google.protobuf.ByteString getDescriptionBytes() { - java.lang.Object ref = description_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = description_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); description_ = b; return b; } else { @@ -19231,7 +19430,7 @@ public int getAvatarCount() { } public static final int AVATAR_FIELD_NUMBER = 9; - private net.iGap.proto.ProtoGlobal.Avatar avatar_; + private net.iGap.proto.ProtoGlobal.Avatar avatar_; /** * optional .proto.Avatar avatar = 9; */ @@ -19242,7 +19441,7 @@ public boolean hasAvatar() { * optional .proto.Avatar avatar = 9; */ public net.iGap.proto.ProtoGlobal.Avatar getAvatar() { - return avatar_ == null ? net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; + return avatar_ == null ? net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; } /** * optional .proto.Avatar avatar = 9; @@ -19252,7 +19451,7 @@ public net.iGap.proto.ProtoGlobal.AvatarOrBuilder getAvatarOrBuilder() { } public static final int PRIVATE_EXTRA_FIELD_NUMBER = 10; - private net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra privateExtra_; + private net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra privateExtra_; /** * optional .proto.GroupRoom.PrivateExtra private_extra = 10; */ @@ -19263,7 +19462,7 @@ public boolean hasPrivateExtra() { * optional .proto.GroupRoom.PrivateExtra private_extra = 10; */ public net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra getPrivateExtra() { - return privateExtra_ == null ? net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.getDefaultInstance() : privateExtra_; + return privateExtra_ == null ? net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.getDefaultInstance() : privateExtra_; } /** * optional .proto.GroupRoom.PrivateExtra private_extra = 10; @@ -19273,7 +19472,7 @@ public net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtraOrBuilder getPrivateExtr } public static final int PUBLIC_EXTRA_FIELD_NUMBER = 11; - private net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra publicExtra_; + private net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra publicExtra_; /** * optional .proto.GroupRoom.PublicExtra public_extra = 11; */ @@ -19284,7 +19483,7 @@ public boolean hasPublicExtra() { * optional .proto.GroupRoom.PublicExtra public_extra = 11; */ public net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra getPublicExtra() { - return publicExtra_ == null ? net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.getDefaultInstance() : publicExtra_; + return publicExtra_ == null ? net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.getDefaultInstance() : publicExtra_; } /** * optional .proto.GroupRoom.PublicExtra public_extra = 11; @@ -19305,10 +19504,10 @@ public final boolean isInitialized() { public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { - if (type_ != net.iGap.proto.ProtoGlobal.GroupRoom.Type.PRIVATE_ROOM.getNumber()) { + if (type_ != net.iGap.proto.ProtoGlobal.GroupRoom.Type.PRIVATE_ROOM.getNumber()) { output.writeEnum(1, type_); } - if (role_ != net.iGap.proto.ProtoGlobal.GroupRoom.Role.MEMBER.getNumber()) { + if (role_ != net.iGap.proto.ProtoGlobal.GroupRoom.Role.MEMBER.getNumber()) { output.writeEnum(2, role_); } if (participantsCount_ != 0) { @@ -19345,11 +19544,11 @@ public int getSerializedSize() { if (size != -1) return size; size = 0; - if (type_ != net.iGap.proto.ProtoGlobal.GroupRoom.Type.PRIVATE_ROOM.getNumber()) { + if (type_ != net.iGap.proto.ProtoGlobal.GroupRoom.Type.PRIVATE_ROOM.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(1, type_); } - if (role_ != net.iGap.proto.ProtoGlobal.GroupRoom.Role.MEMBER.getNumber()) { + if (role_ != net.iGap.proto.ProtoGlobal.GroupRoom.Role.MEMBER.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(2, role_); } @@ -19391,15 +19590,16 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.GroupRoom)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.GroupRoom)) { return super.equals(obj); } - net.iGap.proto.ProtoGlobal.GroupRoom other = (net.iGap.proto.ProtoGlobal.GroupRoom) obj; + net.iGap.proto.ProtoGlobal.GroupRoom other = (net.iGap.proto.ProtoGlobal.GroupRoom) obj; boolean result = true; result = result && type_ == other.type_; @@ -19434,7 +19634,7 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -19474,58 +19674,67 @@ public int hashCode() { return hash; } - public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom( + public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom(byte[] data) + + public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom 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 net.iGap.proto.ProtoGlobal.GroupRoom parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.GroupRoom parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.GroupRoom parseDelimitedFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom 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 net.iGap.proto.ProtoGlobal.GroupRoom parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom( + + public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -19537,7 +19746,8 @@ public static net.iGap.proto.ProtoGlobal.GroupRoom parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.GroupRoom prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.GroupRoom prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -19545,9 +19755,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -19557,17 +19767,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.GroupRoom) - net.iGap.proto.ProtoGlobal.GroupRoomOrBuilder { + net.iGap.proto.ProtoGlobal.GroupRoomOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.GroupRoom.class, net.iGap.proto.ProtoGlobal.GroupRoom.Builder.class); + net.iGap.proto.ProtoGlobal.GroupRoom.class, net.iGap.proto.ProtoGlobal.GroupRoom.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.GroupRoom.newBuilder() @@ -19576,7 +19786,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -19626,23 +19836,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_GroupRoom_descriptor; } - public net.iGap.proto.ProtoGlobal.GroupRoom getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.GroupRoom.getDefaultInstance(); + public net.iGap.proto.ProtoGlobal.GroupRoom getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.GroupRoom.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.GroupRoom build() { - net.iGap.proto.ProtoGlobal.GroupRoom result = buildPartial(); + public net.iGap.proto.ProtoGlobal.GroupRoom build() { + net.iGap.proto.ProtoGlobal.GroupRoom result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public net.iGap.proto.ProtoGlobal.GroupRoom buildPartial() { - net.iGap.proto.ProtoGlobal.GroupRoom result = new net.iGap.proto.ProtoGlobal.GroupRoom(this); + public net.iGap.proto.ProtoGlobal.GroupRoom buildPartial() { + net.iGap.proto.ProtoGlobal.GroupRoom result = new net.iGap.proto.ProtoGlobal.GroupRoom(this); result.type_ = type_; result.role_ = role_; result.participantsCount_ = participantsCount_; @@ -19697,16 +19907,16 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.GroupRoom) { - return mergeFrom((net.iGap.proto.ProtoGlobal.GroupRoom)other); + if (other instanceof net.iGap.proto.ProtoGlobal.GroupRoom) { + return mergeFrom((net.iGap.proto.ProtoGlobal.GroupRoom) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.GroupRoom other) { - if (other == net.iGap.proto.ProtoGlobal.GroupRoom.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.GroupRoom other) { + if (other == net.iGap.proto.ProtoGlobal.GroupRoom.getDefaultInstance()) return this; if (other.type_ != 0) { setTypeValue(other.getTypeValue()); } @@ -19755,11 +19965,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.GroupRoom parsedMessage = null; + net.iGap.proto.ProtoGlobal.GroupRoom parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.GroupRoom) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.GroupRoom) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -19788,8 +19998,8 @@ public Builder setTypeValue(int value) { * optional .proto.GroupRoom.Type type = 1; */ public net.iGap.proto.ProtoGlobal.GroupRoom.Type getType() { - net.iGap.proto.ProtoGlobal.GroupRoom.Type result = net.iGap.proto.ProtoGlobal.GroupRoom.Type.valueOf(type_); - return result == null ? net.iGap.proto.ProtoGlobal.GroupRoom.Type.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.GroupRoom.Type result = net.iGap.proto.ProtoGlobal.GroupRoom.Type.valueOf(type_); + return result == null ? net.iGap.proto.ProtoGlobal.GroupRoom.Type.UNRECOGNIZED : result; } /** * optional .proto.GroupRoom.Type type = 1; @@ -19798,7 +20008,7 @@ public Builder setType(net.iGap.proto.ProtoGlobal.GroupRoom.Type value) { if (value == null) { throw new NullPointerException(); } - + type_ = value.getNumber(); onChanged(); return this; @@ -19807,7 +20017,7 @@ public Builder setType(net.iGap.proto.ProtoGlobal.GroupRoom.Type value) { * optional .proto.GroupRoom.Type type = 1; */ public Builder clearType() { - + type_ = 0; onChanged(); return this; @@ -19832,8 +20042,8 @@ public Builder setRoleValue(int value) { * optional .proto.GroupRoom.Role role = 2; */ public net.iGap.proto.ProtoGlobal.GroupRoom.Role getRole() { - net.iGap.proto.ProtoGlobal.GroupRoom.Role result = net.iGap.proto.ProtoGlobal.GroupRoom.Role.valueOf(role_); - return result == null ? net.iGap.proto.ProtoGlobal.GroupRoom.Role.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.GroupRoom.Role result = net.iGap.proto.ProtoGlobal.GroupRoom.Role.valueOf(role_); + return result == null ? net.iGap.proto.ProtoGlobal.GroupRoom.Role.UNRECOGNIZED : result; } /** * optional .proto.GroupRoom.Role role = 2; @@ -19842,7 +20052,7 @@ public Builder setRole(net.iGap.proto.ProtoGlobal.GroupRoom.Role value) { if (value == null) { throw new NullPointerException(); } - + role_ = value.getNumber(); onChanged(); return this; @@ -19851,7 +20061,7 @@ public Builder setRole(net.iGap.proto.ProtoGlobal.GroupRoom.Role value) { * optional .proto.GroupRoom.Role role = 2; */ public Builder clearRole() { - + role_ = 0; onChanged(); return this; @@ -19868,7 +20078,7 @@ public int getParticipantsCount() { * optional uint32 participants_count = 3; */ public Builder setParticipantsCount(int value) { - + participantsCount_ = value; onChanged(); return this; @@ -19877,26 +20087,26 @@ public Builder setParticipantsCount(int value) { * optional uint32 participants_count = 3; */ public Builder clearParticipantsCount() { - + participantsCount_ = 0; onChanged(); return this; } - private java.lang.Object participantsCountLabel_ = ""; + private java.lang.Object participantsCountLabel_ = ""; /** * optional string participants_count_label = 4; */ public java.lang.String getParticipantsCountLabel() { - java.lang.Object ref = participantsCountLabel_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = participantsCountLabel_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); participantsCountLabel_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -19904,11 +20114,11 @@ public java.lang.String getParticipantsCountLabel() { */ public com.google.protobuf.ByteString getParticipantsCountLabelBytes() { - java.lang.Object ref = participantsCountLabel_; + java.lang.Object ref = participantsCountLabel_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); participantsCountLabel_ = b; return b; } else { @@ -19919,11 +20129,11 @@ public java.lang.String getParticipantsCountLabel() { * optional string participants_count_label = 4; */ public Builder setParticipantsCountLabel( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + participantsCountLabel_ = value; onChanged(); return this; @@ -19932,7 +20142,7 @@ public Builder setParticipantsCountLabel( * optional string participants_count_label = 4; */ public Builder clearParticipantsCountLabel() { - + participantsCountLabel_ = getDefaultInstance().getParticipantsCountLabel(); onChanged(); return this; @@ -19946,7 +20156,7 @@ public Builder setParticipantsCountLabelBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + participantsCountLabel_ = value; onChanged(); return this; @@ -19963,7 +20173,7 @@ public int getParticipantsCountLimit() { * optional uint32 participants_count_limit = 5; */ public Builder setParticipantsCountLimit(int value) { - + participantsCountLimit_ = value; onChanged(); return this; @@ -19972,26 +20182,26 @@ public Builder setParticipantsCountLimit(int value) { * optional uint32 participants_count_limit = 5; */ public Builder clearParticipantsCountLimit() { - + participantsCountLimit_ = 0; onChanged(); return this; } - private java.lang.Object participantsCountLimitLabel_ = ""; + private java.lang.Object participantsCountLimitLabel_ = ""; /** * optional string participants_count_limit_label = 6; */ public java.lang.String getParticipantsCountLimitLabel() { - java.lang.Object ref = participantsCountLimitLabel_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = participantsCountLimitLabel_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); participantsCountLimitLabel_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -19999,11 +20209,11 @@ public java.lang.String getParticipantsCountLimitLabel() { */ public com.google.protobuf.ByteString getParticipantsCountLimitLabelBytes() { - java.lang.Object ref = participantsCountLimitLabel_; + java.lang.Object ref = participantsCountLimitLabel_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); participantsCountLimitLabel_ = b; return b; } else { @@ -20014,11 +20224,11 @@ public java.lang.String getParticipantsCountLimitLabel() { * optional string participants_count_limit_label = 6; */ public Builder setParticipantsCountLimitLabel( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + participantsCountLimitLabel_ = value; onChanged(); return this; @@ -20027,7 +20237,7 @@ public Builder setParticipantsCountLimitLabel( * optional string participants_count_limit_label = 6; */ public Builder clearParticipantsCountLimitLabel() { - + participantsCountLimitLabel_ = getDefaultInstance().getParticipantsCountLimitLabel(); onChanged(); return this; @@ -20041,26 +20251,26 @@ public Builder setParticipantsCountLimitLabelBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + participantsCountLimitLabel_ = value; onChanged(); return this; } - private java.lang.Object description_ = ""; + private java.lang.Object description_ = ""; /** * optional string description = 7; */ public java.lang.String getDescription() { - java.lang.Object ref = description_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = description_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); description_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** @@ -20068,11 +20278,11 @@ public java.lang.String getDescription() { */ public com.google.protobuf.ByteString getDescriptionBytes() { - java.lang.Object ref = description_; + java.lang.Object ref = description_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); description_ = b; return b; } else { @@ -20083,11 +20293,11 @@ public java.lang.String getDescription() { * optional string description = 7; */ public Builder setDescription( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + description_ = value; onChanged(); return this; @@ -20096,7 +20306,7 @@ public Builder setDescription( * optional string description = 7; */ public Builder clearDescription() { - + description_ = getDefaultInstance().getDescription(); onChanged(); return this; @@ -20110,7 +20320,7 @@ public Builder setDescriptionBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + description_ = value; onChanged(); return this; @@ -20127,7 +20337,7 @@ public int getAvatarCount() { * optional uint32 avatar_count = 8; */ public Builder setAvatarCount(int value) { - + avatarCount_ = value; onChanged(); return this; @@ -20136,15 +20346,15 @@ public Builder setAvatarCount(int value) { * optional uint32 avatar_count = 8; */ public Builder clearAvatarCount() { - + avatarCount_ = 0; onChanged(); return this; } - private net.iGap.proto.ProtoGlobal.Avatar avatar_ = null; + private net.iGap.proto.ProtoGlobal.Avatar avatar_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder> avatarBuilder_; + net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder> avatarBuilder_; /** * optional .proto.Avatar avatar = 9; */ @@ -20156,7 +20366,7 @@ public boolean hasAvatar() { */ public net.iGap.proto.ProtoGlobal.Avatar getAvatar() { if (avatarBuilder_ == null) { - return avatar_ == null ? net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; + return avatar_ == null ? net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; } else { return avatarBuilder_.getMessage(); } @@ -20181,7 +20391,7 @@ public Builder setAvatar(net.iGap.proto.ProtoGlobal.Avatar value) { * optional .proto.Avatar avatar = 9; */ public Builder setAvatar( - net.iGap.proto.ProtoGlobal.Avatar.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.Avatar.Builder builderForValue) { if (avatarBuilder_ == null) { avatar_ = builderForValue.build(); onChanged(); @@ -20198,7 +20408,7 @@ public Builder mergeAvatar(net.iGap.proto.ProtoGlobal.Avatar value) { if (avatarBuilder_ == null) { if (avatar_ != null) { avatar_ = - net.iGap.proto.ProtoGlobal.Avatar.newBuilder(avatar_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.Avatar.newBuilder(avatar_).mergeFrom(value).buildPartial(); } else { avatar_ = value; } @@ -20227,7 +20437,7 @@ public Builder clearAvatar() { * optional .proto.Avatar avatar = 9; */ public net.iGap.proto.ProtoGlobal.Avatar.Builder getAvatarBuilder() { - + onChanged(); return getAvatarFieldBuilder().getBuilder(); } @@ -20239,18 +20449,18 @@ public net.iGap.proto.ProtoGlobal.AvatarOrBuilder getAvatarOrBuilder() { return avatarBuilder_.getMessageOrBuilder(); } else { return avatar_ == null ? - net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; + net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; } } /** * optional .proto.Avatar avatar = 9; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder> + net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder> getAvatarFieldBuilder() { if (avatarBuilder_ == null) { avatarBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder>( + net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder>( getAvatar(), getParentForChildren(), isClean()); @@ -20259,9 +20469,9 @@ public net.iGap.proto.ProtoGlobal.AvatarOrBuilder getAvatarOrBuilder() { return avatarBuilder_; } - private net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra privateExtra_ = null; + private net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra privateExtra_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtraOrBuilder> privateExtraBuilder_; + net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtraOrBuilder> privateExtraBuilder_; /** * optional .proto.GroupRoom.PrivateExtra private_extra = 10; */ @@ -20273,7 +20483,7 @@ public boolean hasPrivateExtra() { */ public net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra getPrivateExtra() { if (privateExtraBuilder_ == null) { - return privateExtra_ == null ? net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.getDefaultInstance() : privateExtra_; + return privateExtra_ == null ? net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.getDefaultInstance() : privateExtra_; } else { return privateExtraBuilder_.getMessage(); } @@ -20298,7 +20508,7 @@ public Builder setPrivateExtra(net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra * optional .proto.GroupRoom.PrivateExtra private_extra = 10; */ public Builder setPrivateExtra( - net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder builderForValue) { if (privateExtraBuilder_ == null) { privateExtra_ = builderForValue.build(); onChanged(); @@ -20315,7 +20525,7 @@ public Builder mergePrivateExtra(net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExt if (privateExtraBuilder_ == null) { if (privateExtra_ != null) { privateExtra_ = - net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.newBuilder(privateExtra_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.newBuilder(privateExtra_).mergeFrom(value).buildPartial(); } else { privateExtra_ = value; } @@ -20344,7 +20554,7 @@ public Builder clearPrivateExtra() { * optional .proto.GroupRoom.PrivateExtra private_extra = 10; */ public net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder getPrivateExtraBuilder() { - + onChanged(); return getPrivateExtraFieldBuilder().getBuilder(); } @@ -20356,18 +20566,18 @@ public net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtraOrBuilder getPrivateExtr return privateExtraBuilder_.getMessageOrBuilder(); } else { return privateExtra_ == null ? - net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.getDefaultInstance() : privateExtra_; + net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.getDefaultInstance() : privateExtra_; } } /** * optional .proto.GroupRoom.PrivateExtra private_extra = 10; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtraOrBuilder> + net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtraOrBuilder> getPrivateExtraFieldBuilder() { if (privateExtraBuilder_ == null) { privateExtraBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtraOrBuilder>( + net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtra.Builder, net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtraOrBuilder>( getPrivateExtra(), getParentForChildren(), isClean()); @@ -20376,9 +20586,9 @@ public net.iGap.proto.ProtoGlobal.GroupRoom.PrivateExtraOrBuilder getPrivateExtr return privateExtraBuilder_; } - private net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra publicExtra_ = null; + private net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra publicExtra_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtraOrBuilder> publicExtraBuilder_; + net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtraOrBuilder> publicExtraBuilder_; /** * optional .proto.GroupRoom.PublicExtra public_extra = 11; */ @@ -20390,7 +20600,7 @@ public boolean hasPublicExtra() { */ public net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra getPublicExtra() { if (publicExtraBuilder_ == null) { - return publicExtra_ == null ? net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.getDefaultInstance() : publicExtra_; + return publicExtra_ == null ? net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.getDefaultInstance() : publicExtra_; } else { return publicExtraBuilder_.getMessage(); } @@ -20415,7 +20625,7 @@ public Builder setPublicExtra(net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra v * optional .proto.GroupRoom.PublicExtra public_extra = 11; */ public Builder setPublicExtra( - net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder builderForValue) { if (publicExtraBuilder_ == null) { publicExtra_ = builderForValue.build(); onChanged(); @@ -20432,7 +20642,7 @@ public Builder mergePublicExtra(net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra if (publicExtraBuilder_ == null) { if (publicExtra_ != null) { publicExtra_ = - net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.newBuilder(publicExtra_).mergeFrom(value).buildPartial(); + net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.newBuilder(publicExtra_).mergeFrom(value).buildPartial(); } else { publicExtra_ = value; } @@ -20461,7 +20671,7 @@ public Builder clearPublicExtra() { * optional .proto.GroupRoom.PublicExtra public_extra = 11; */ public net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder getPublicExtraBuilder() { - + onChanged(); return getPublicExtraFieldBuilder().getBuilder(); } @@ -20473,18 +20683,18 @@ public net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtraOrBuilder getPublicExtraO return publicExtraBuilder_.getMessageOrBuilder(); } else { return publicExtra_ == null ? - net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.getDefaultInstance() : publicExtra_; + net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.getDefaultInstance() : publicExtra_; } } /** * optional .proto.GroupRoom.PublicExtra public_extra = 11; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtraOrBuilder> + net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtraOrBuilder> getPublicExtraFieldBuilder() { if (publicExtraBuilder_ == null) { publicExtraBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtraOrBuilder>( + net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtra.Builder, net.iGap.proto.ProtoGlobal.GroupRoom.PublicExtraOrBuilder>( getPublicExtra(), getParentForChildren(), isClean()); @@ -20509,10 +20719,10 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.GroupRoom) private static final net.iGap.proto.ProtoGlobal.GroupRoom DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.GroupRoom(); + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.GroupRoom(); } - public static net.iGap.proto.ProtoGlobal.GroupRoom getDefaultInstance() { + public static net.iGap.proto.ProtoGlobal.GroupRoom getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -20530,12 +20740,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } - public net.iGap.proto.ProtoGlobal.GroupRoom getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.GroupRoom getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -20676,7 +20886,7 @@ private ChannelRoom() { reactionStatus_ = false; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -20718,14 +20928,14 @@ private ChannelRoom( participantsCount_ = input.readUInt32(); break; } - case 34: { - java.lang.String s = input.readStringRequireUtf8(); + case 34: { + java.lang.String s = input.readStringRequireUtf8(); participantsCountLabel_ = s; break; - } - case 42: { - java.lang.String s = input.readStringRequireUtf8(); + } + case 42: { + java.lang.String s = input.readStringRequireUtf8(); description_ = s; break; @@ -20735,38 +20945,38 @@ private ChannelRoom( avatarCount_ = input.readUInt32(); break; } - case 58: { - net.iGap.proto.ProtoGlobal.Avatar.Builder subBuilder = null; + case 58: { + net.iGap.proto.ProtoGlobal.Avatar.Builder subBuilder = null; if (avatar_ != null) { subBuilder = avatar_.toBuilder(); } - avatar_ = input.readMessage(net.iGap.proto.ProtoGlobal.Avatar.parser(), extensionRegistry); + avatar_ = input.readMessage(net.iGap.proto.ProtoGlobal.Avatar.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(avatar_); avatar_ = subBuilder.buildPartial(); } break; - } - case 66: { - net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder subBuilder = null; + } + case 66: { + net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder subBuilder = null; if (privateExtra_ != null) { subBuilder = privateExtra_.toBuilder(); } - privateExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.parser(), extensionRegistry); + privateExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(privateExtra_); privateExtra_ = subBuilder.buildPartial(); } break; - } - case 74: { - net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder subBuilder = null; + } + case 74: { + net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder subBuilder = null; if (publicExtra_ != null) { subBuilder = publicExtra_.toBuilder(); } - publicExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.parser(), extensionRegistry); + publicExtra_ = input.readMessage(net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(publicExtra_); publicExtra_ = subBuilder.buildPartial(); @@ -20793,7 +21003,7 @@ private ChannelRoom( reactionStatus_ = input.readBool(); break; - } + } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -20807,14 +21017,14 @@ private ChannelRoom( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.ChannelRoom.class, net.iGap.proto.ProtoGlobal.ChannelRoom.Builder.class); + net.iGap.proto.ProtoGlobal.ChannelRoom.class, net.iGap.proto.ProtoGlobal.ChannelRoom.Builder.class); } /** @@ -20845,7 +21055,7 @@ public enum Type public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -20889,7 +21099,7 @@ public Type findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.ChannelRoom.getDescriptor().getEnumTypes().get(0); + return net.iGap.proto.ProtoGlobal.ChannelRoom.getDescriptor().getEnumTypes().get(0); } private static final Type[] VALUES = values(); @@ -20897,7 +21107,7 @@ public Type findValueByNumber(int number) { public static Type valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -20959,7 +21169,7 @@ public enum Role public final int getNumber() { if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; @@ -21005,7 +21215,7 @@ public Role findValueByNumber(int number) { } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.ChannelRoom.getDescriptor().getEnumTypes().get(1); + return net.iGap.proto.ProtoGlobal.ChannelRoom.getDescriptor().getEnumTypes().get(1); } private static final Role[] VALUES = values(); @@ -21013,7 +21223,7 @@ public Role findValueByNumber(int number) { public static Role valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( + throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { @@ -21071,7 +21281,7 @@ private PrivateExtra() { inviteToken_ = ""; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -21096,14 +21306,14 @@ private PrivateExtra( } break; } - case 10: { - java.lang.String s = input.readStringRequireUtf8(); + case 10: { + java.lang.String s = input.readStringRequireUtf8(); inviteLink_ = s; break; - } - case 18: { - java.lang.String s = input.readStringRequireUtf8(); + } + case 18: { + java.lang.String s = input.readStringRequireUtf8(); inviteToken_ = s; break; @@ -21121,29 +21331,29 @@ private PrivateExtra( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PrivateExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PrivateExtra_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PrivateExtra_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PrivateExtra_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.class, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder.class); + net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.class, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder.class); } public static final int INVITE_LINK_FIELD_NUMBER = 1; - private volatile java.lang.Object inviteLink_; + private volatile java.lang.Object inviteLink_; /** * optional string invite_link = 1; */ public java.lang.String getInviteLink() { - java.lang.Object ref = inviteLink_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = inviteLink_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); inviteLink_ = s; return s; } @@ -21153,11 +21363,11 @@ public java.lang.String getInviteLink() { */ public com.google.protobuf.ByteString getInviteLinkBytes() { - java.lang.Object ref = inviteLink_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = inviteLink_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); inviteLink_ = b; return b; } else { @@ -21166,18 +21376,18 @@ public java.lang.String getInviteLink() { } public static final int INVITE_TOKEN_FIELD_NUMBER = 2; - private volatile java.lang.Object inviteToken_; + private volatile java.lang.Object inviteToken_; /** * optional string invite_token = 2; */ public java.lang.String getInviteToken() { - java.lang.Object ref = inviteToken_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = inviteToken_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); inviteToken_ = s; return s; } @@ -21187,11 +21397,11 @@ public java.lang.String getInviteToken() { */ public com.google.protobuf.ByteString getInviteTokenBytes() { - java.lang.Object ref = inviteToken_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = inviteToken_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); inviteToken_ = b; return b; } else { @@ -21235,25 +21445,26 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra)) { return super.equals(obj); - } - net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra other = (net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra) obj; + } + net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra other = (net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra) obj; boolean result = true; result = result && getInviteLink() .equals(other.getInviteLink()); result = result && getInviteToken() .equals(other.getInviteToken()); - return result; - } + return result; + } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -21266,61 +21477,70 @@ public int hashCode() { hash = (53 * hash) + getInviteToken().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; - return hash; - } + return hash; + } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom( + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom(byte[] data) + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom(java.io.InputStream input) + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra 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 net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseDelimitedFrom(java.io.InputStream input) + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseDelimitedFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra 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 net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -21332,7 +21552,8 @@ public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -21340,9 +21561,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -21352,17 +21573,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.ChannelRoom.PrivateExtra) - net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtraOrBuilder { + net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtraOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PrivateExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PrivateExtra_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PrivateExtra_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PrivateExtra_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.class, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder.class); + net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.class, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.newBuilder() @@ -21371,7 +21592,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -21391,23 +21612,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PrivateExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PrivateExtra_descriptor; } - public net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.getDefaultInstance(); - } + public net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.getDefaultInstance(); + } - public net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra build() { - net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra result = buildPartial(); + public net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra build() { + net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } - return result; - } + return result; + } - public net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra buildPartial() { - net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra result = new net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra(this); + public net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra buildPartial() { + net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra result = new net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra(this); result.inviteLink_ = inviteLink_; result.inviteToken_ = inviteToken_; onBuilt(); @@ -21441,16 +21662,16 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra) { - return mergeFrom((net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra)other); + if (other instanceof net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra) { + return mergeFrom((net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra)other); } else { super.mergeFrom(other); - return this; - } + return this; + } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra other) { - if (other == net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra other) { + if (other == net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.getDefaultInstance()) return this; if (!other.getInviteLink().isEmpty()) { inviteLink_ = other.inviteLink_; onChanged(); @@ -21471,11 +21692,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parsedMessage = null; + net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -21485,20 +21706,20 @@ public Builder mergeFrom( return this; } - private java.lang.Object inviteLink_ = ""; + private java.lang.Object inviteLink_ = ""; /** * optional string invite_link = 1; */ public java.lang.String getInviteLink() { - java.lang.Object ref = inviteLink_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = inviteLink_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); inviteLink_ = s; - return s; - } else { - return (java.lang.String) ref; + return s; + } else { + return (java.lang.String) ref; } } /** @@ -21506,11 +21727,11 @@ public java.lang.String getInviteLink() { */ public com.google.protobuf.ByteString getInviteLinkBytes() { - java.lang.Object ref = inviteLink_; + java.lang.Object ref = inviteLink_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); inviteLink_ = b; return b; } else { @@ -21521,11 +21742,11 @@ public java.lang.String getInviteLink() { * optional string invite_link = 1; */ public Builder setInviteLink( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + inviteLink_ = value; onChanged(); return this; @@ -21534,7 +21755,7 @@ public Builder setInviteLink( * optional string invite_link = 1; */ public Builder clearInviteLink() { - + inviteLink_ = getDefaultInstance().getInviteLink(); onChanged(); return this; @@ -21548,26 +21769,26 @@ public Builder setInviteLinkBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + inviteLink_ = value; onChanged(); return this; } - private java.lang.Object inviteToken_ = ""; + private java.lang.Object inviteToken_ = ""; /** * optional string invite_token = 2; */ public java.lang.String getInviteToken() { - java.lang.Object ref = inviteToken_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = inviteToken_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); inviteToken_ = s; - return s; - } else { - return (java.lang.String) ref; + return s; + } else { + return (java.lang.String) ref; } } /** @@ -21575,11 +21796,11 @@ public java.lang.String getInviteToken() { */ public com.google.protobuf.ByteString getInviteTokenBytes() { - java.lang.Object ref = inviteToken_; + java.lang.Object ref = inviteToken_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); inviteToken_ = b; return b; } else { @@ -21590,11 +21811,11 @@ public java.lang.String getInviteToken() { * optional string invite_token = 2; */ public Builder setInviteToken( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + inviteToken_ = value; onChanged(); return this; @@ -21603,7 +21824,7 @@ public Builder setInviteToken( * optional string invite_token = 2; */ public Builder clearInviteToken() { - + inviteToken_ = getDefaultInstance().getInviteToken(); onChanged(); return this; @@ -21617,7 +21838,7 @@ public Builder setInviteTokenBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + inviteToken_ = value; onChanged(); return this; @@ -21638,11 +21859,12 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.ChannelRoom.PrivateExtra) private static final net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra(); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra getDefaultInstance() { + static { + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra(); + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -21660,12 +21882,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { - return PARSER; - } + return PARSER; + } - public net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -21700,7 +21922,7 @@ private PublicExtra() { username_ = ""; } - @java.lang.Override + @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); @@ -21725,8 +21947,8 @@ private PublicExtra( } break; } - case 10: { - java.lang.String s = input.readStringRequireUtf8(); + case 10: { + java.lang.String s = input.readStringRequireUtf8(); username_ = s; break; @@ -21744,29 +21966,29 @@ private PublicExtra( } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PublicExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PublicExtra_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PublicExtra_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PublicExtra_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.class, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder.class); + net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.class, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder.class); } public static final int USERNAME_FIELD_NUMBER = 1; - private volatile java.lang.Object username_; + private volatile java.lang.Object username_; /** * optional string username = 1; */ public java.lang.String getUsername() { - java.lang.Object ref = username_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = username_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); username_ = s; return s; } @@ -21776,11 +21998,11 @@ public java.lang.String getUsername() { */ public com.google.protobuf.ByteString getUsernameBytes() { - java.lang.Object ref = username_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = username_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); username_ = b; return b; } else { @@ -21818,23 +22040,24 @@ public int getSerializedSize() { } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra)) { + if (!(obj instanceof net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra)) { return super.equals(obj); - } - net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra other = (net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra) obj; + } + net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra other = (net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra) obj; boolean result = true; result = result && getUsername() .equals(other.getUsername()); - return result; - } + return result; + } - @java.lang.Override + @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; @@ -21845,61 +22068,70 @@ public int hashCode() { hash = (53 * hash) + getUsername().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; - return hash; - } + return hash; + } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom( + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom(byte[] data) + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom(java.io.InputStream input) + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra 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 net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseDelimitedFrom(java.io.InputStream input) + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseDelimitedFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra 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 net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -21911,7 +22143,8 @@ public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -21919,9 +22152,9 @@ public Builder toBuilder() { ? new Builder() : new Builder().mergeFrom(this); } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -21931,17 +22164,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.ChannelRoom.PublicExtra) - net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtraOrBuilder { + net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtraOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PublicExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PublicExtra_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PublicExtra_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PublicExtra_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.class, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder.class); + net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.class, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.newBuilder() @@ -21950,7 +22183,7 @@ private Builder() { } private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -21968,23 +22201,23 @@ public Builder clear() { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PublicExtra_descriptor; + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_PublicExtra_descriptor; } - public net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.getDefaultInstance(); - } + public net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.getDefaultInstance(); + } - public net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra build() { - net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra result = buildPartial(); + public net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra build() { + net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } - return result; - } + return result; + } - public net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra buildPartial() { - net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra result = new net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra(this); + public net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra buildPartial() { + net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra result = new net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra(this); result.username_ = username_; onBuilt(); return result; @@ -22017,16 +22250,16 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra) { - return mergeFrom((net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra)other); + if (other instanceof net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra) { + return mergeFrom((net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra)other); } else { super.mergeFrom(other); - return this; - } + return this; + } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra other) { - if (other == net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra other) { + if (other == net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.getDefaultInstance()) return this; if (!other.getUsername().isEmpty()) { username_ = other.username_; onChanged(); @@ -22043,11 +22276,11 @@ public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parsedMessage = null; + net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -22057,20 +22290,20 @@ public Builder mergeFrom( return this; } - private java.lang.Object username_ = ""; + private java.lang.Object username_ = ""; /** * optional string username = 1; */ public java.lang.String getUsername() { - java.lang.Object ref = username_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = username_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); username_ = s; - return s; - } else { - return (java.lang.String) ref; + return s; + } else { + return (java.lang.String) ref; } } /** @@ -22078,11 +22311,11 @@ public java.lang.String getUsername() { */ public com.google.protobuf.ByteString getUsernameBytes() { - java.lang.Object ref = username_; + java.lang.Object ref = username_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); username_ = b; return b; } else { @@ -22093,11 +22326,11 @@ public java.lang.String getUsername() { * optional string username = 1; */ public Builder setUsername( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + username_ = value; onChanged(); return this; @@ -22106,7 +22339,7 @@ public Builder setUsername( * optional string username = 1; */ public Builder clearUsername() { - + username_ = getDefaultInstance().getUsername(); onChanged(); return this; @@ -22120,7 +22353,7 @@ public Builder setUsernameBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + username_ = value; onChanged(); return this; @@ -22141,11 +22374,12 @@ public final Builder mergeUnknownFields( // @@protoc_insertion_point(class_scope:proto.ChannelRoom.PublicExtra) private static final net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra(); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra getDefaultInstance() { + static { + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra(); + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra getDefaultInstance() { return DEFAULT_INSTANCE; } @@ -22163,12 +22397,12 @@ public static com.google.protobuf.Parser parser() { return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { - return PARSER; - } + return PARSER; + } - public net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra getDefaultInstanceForType() { + public net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra getDefaultInstanceForType() { return DEFAULT_INSTANCE; } @@ -22186,8 +22420,8 @@ public int getTypeValue() { * optional .proto.ChannelRoom.Type type = 1; */ public net.iGap.proto.ProtoGlobal.ChannelRoom.Type getType() { - net.iGap.proto.ProtoGlobal.ChannelRoom.Type result = net.iGap.proto.ProtoGlobal.ChannelRoom.Type.valueOf(type_); - return result == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.Type.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.ChannelRoom.Type result = net.iGap.proto.ProtoGlobal.ChannelRoom.Type.valueOf(type_); + return result == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.Type.UNRECOGNIZED : result; } public static final int ROLE_FIELD_NUMBER = 2; @@ -22202,8 +22436,8 @@ public int getRoleValue() { * optional .proto.ChannelRoom.Role role = 2; */ public net.iGap.proto.ProtoGlobal.ChannelRoom.Role getRole() { - net.iGap.proto.ProtoGlobal.ChannelRoom.Role result = net.iGap.proto.ProtoGlobal.ChannelRoom.Role.valueOf(role_); - return result == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.Role.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.ChannelRoom.Role result = net.iGap.proto.ProtoGlobal.ChannelRoom.Role.valueOf(role_); + return result == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.Role.UNRECOGNIZED : result; } public static final int PARTICIPANTS_COUNT_FIELD_NUMBER = 3; @@ -22216,18 +22450,18 @@ public int getParticipantsCount() { } public static final int PARTICIPANTS_COUNT_LABEL_FIELD_NUMBER = 4; - private volatile java.lang.Object participantsCountLabel_; + private volatile java.lang.Object participantsCountLabel_; /** * optional string participants_count_label = 4; */ public java.lang.String getParticipantsCountLabel() { - java.lang.Object ref = participantsCountLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = participantsCountLabel_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); participantsCountLabel_ = s; return s; } @@ -22237,11 +22471,11 @@ public java.lang.String getParticipantsCountLabel() { */ public com.google.protobuf.ByteString getParticipantsCountLabelBytes() { - java.lang.Object ref = participantsCountLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = participantsCountLabel_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); participantsCountLabel_ = b; return b; } else { @@ -22250,18 +22484,18 @@ public java.lang.String getParticipantsCountLabel() { } public static final int DESCRIPTION_FIELD_NUMBER = 5; - private volatile java.lang.Object description_; + private volatile java.lang.Object description_; /** * optional string description = 5; */ public java.lang.String getDescription() { - java.lang.Object ref = description_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; + java.lang.Object ref = description_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); description_ = s; return s; } @@ -22271,11 +22505,11 @@ public java.lang.String getDescription() { */ public com.google.protobuf.ByteString getDescriptionBytes() { - java.lang.Object ref = description_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = description_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); description_ = b; return b; } else { @@ -22293,7 +22527,7 @@ public int getAvatarCount() { } public static final int AVATAR_FIELD_NUMBER = 7; - private net.iGap.proto.ProtoGlobal.Avatar avatar_; + private net.iGap.proto.ProtoGlobal.Avatar avatar_; /** * optional .proto.Avatar avatar = 7; */ @@ -22304,7 +22538,7 @@ public boolean hasAvatar() { * optional .proto.Avatar avatar = 7; */ public net.iGap.proto.ProtoGlobal.Avatar getAvatar() { - return avatar_ == null ? net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; + return avatar_ == null ? net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; } /** * optional .proto.Avatar avatar = 7; @@ -22314,7 +22548,7 @@ public net.iGap.proto.ProtoGlobal.AvatarOrBuilder getAvatarOrBuilder() { } public static final int PRIVATE_EXTRA_FIELD_NUMBER = 8; - private net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra privateExtra_; + private net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra privateExtra_; /** * optional .proto.ChannelRoom.PrivateExtra private_extra = 8; */ @@ -22325,7 +22559,7 @@ public boolean hasPrivateExtra() { * optional .proto.ChannelRoom.PrivateExtra private_extra = 8; */ public net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra getPrivateExtra() { - return privateExtra_ == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.getDefaultInstance() : privateExtra_; + return privateExtra_ == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.getDefaultInstance() : privateExtra_; } /** * optional .proto.ChannelRoom.PrivateExtra private_extra = 8; @@ -22335,7 +22569,7 @@ public net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtraOrBuilder getPrivateEx } public static final int PUBLIC_EXTRA_FIELD_NUMBER = 9; - private net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra publicExtra_; + private net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra publicExtra_; /** * optional .proto.ChannelRoom.PublicExtra public_extra = 9; */ @@ -22346,7 +22580,7 @@ public boolean hasPublicExtra() { * optional .proto.ChannelRoom.PublicExtra public_extra = 9; */ public net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra getPublicExtra() { - return publicExtra_ == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.getDefaultInstance() : publicExtra_; + return publicExtra_ == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.getDefaultInstance() : publicExtra_; } /** * optional .proto.ChannelRoom.PublicExtra public_extra = 9; @@ -22391,7 +22625,7 @@ public boolean getVerified() { */ public boolean getReactionStatus() { return reactionStatus_; - } + } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -22404,11 +22638,11 @@ public final boolean isInitialized() { } public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (type_ != net.iGap.proto.ProtoGlobal.ChannelRoom.Type.PRIVATE_ROOM.getNumber()) { - output.writeEnum(1, type_); - } - if (role_ != net.iGap.proto.ProtoGlobal.ChannelRoom.Role.MEMBER.getNumber()) { + throws java.io.IOException { + if (type_ != net.iGap.proto.ProtoGlobal.ChannelRoom.Type.PRIVATE_ROOM.getNumber()) { + output.writeEnum(1, type_); + } + if (role_ != net.iGap.proto.ProtoGlobal.ChannelRoom.Role.MEMBER.getNumber()) { output.writeEnum(2, role_); } if (participantsCount_ != 0) { @@ -22443,19 +22677,19 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) } if (reactionStatus_ != false) { output.writeBool(13, reactionStatus_); - } + } } public int getSerializedSize() { int size = memoizedSize; - if (size != -1) return size; + if (size != -1) return size; - size = 0; - if (type_ != net.iGap.proto.ProtoGlobal.ChannelRoom.Type.PRIVATE_ROOM.getNumber()) { + size = 0; + if (type_ != net.iGap.proto.ProtoGlobal.ChannelRoom.Type.PRIVATE_ROOM.getNumber()) { size += com.google.protobuf.CodedOutputStream - .computeEnumSize(1, type_); - } - if (role_ != net.iGap.proto.ProtoGlobal.ChannelRoom.Role.MEMBER.getNumber()) { + .computeEnumSize(1, type_); + } + if (role_ != net.iGap.proto.ProtoGlobal.ChannelRoom.Role.MEMBER.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(2, role_); } @@ -22500,21 +22734,22 @@ public int getSerializedSize() { if (reactionStatus_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(13, reactionStatus_); - } + } memoizedSize = size; return size; } private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.ChannelRoom)) { - return super.equals(obj); - } - net.iGap.proto.ProtoGlobal.ChannelRoom other = (net.iGap.proto.ProtoGlobal.ChannelRoom) obj; + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof net.iGap.proto.ProtoGlobal.ChannelRoom)) { + return super.equals(obj); + } + net.iGap.proto.ProtoGlobal.ChannelRoom other = (net.iGap.proto.ProtoGlobal.ChannelRoom) obj; boolean result = true; result = result && type_ == other.type_; @@ -22543,14 +22778,14 @@ public boolean equals(final java.lang.Object obj) { .equals(other.getPublicExtra()); } result = result && (getSignature() - == other.getSignature()); - result = result && (getSeenId() - == other.getSeenId()); - result = result && (getVerified() - == other.getVerified()); - result = result && (getReactionStatus() - == other.getReactionStatus()); - return result; + == other.getSignature()); + result = result && (getSeenId() + == other.getSeenId()); + result = result && (getVerified() + == other.getVerified()); + result = result && (getReactionStatus() + == other.getReactionStatus()); + return result; } @java.lang.Override @@ -22595,64 +22830,73 @@ public int hashCode() { getVerified()); hash = (37 * hash) + REACTION_STATUS_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getReactionStatus()); + getReactionStatus()); hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; + memoizedHashCode = hash; + return hash; } - public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom( + public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom( + return PARSER.parseFrom(data); + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom(byte[] data) + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom( + return PARSER.parseFrom(data); + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom(java.io.InputStream input) + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom 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 net.iGap.proto.ProtoGlobal.ChannelRoom parseDelimitedFrom(java.io.InputStream input) + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom parseDelimitedFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom 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 net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); - } - public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom( + } + + public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -22664,7 +22908,8 @@ public static net.iGap.proto.ProtoGlobal.ChannelRoom parseFrom( public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.ChannelRoom prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.ChannelRoom prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -22674,7 +22919,7 @@ public Builder toBuilder() { @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } @@ -22684,17 +22929,17 @@ protected Builder newBuilderForType( public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.ChannelRoom) - net.iGap.proto.ProtoGlobal.ChannelRoomOrBuilder { + net.iGap.proto.ProtoGlobal.ChannelRoomOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_descriptor; + getDescriptor() { + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_descriptor; } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_fieldAccessorTable .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.ChannelRoom.class, net.iGap.proto.ProtoGlobal.ChannelRoom.Builder.class); + net.iGap.proto.ProtoGlobal.ChannelRoom.class, net.iGap.proto.ProtoGlobal.ChannelRoom.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.ChannelRoom.newBuilder() @@ -22702,8 +22947,8 @@ private Builder() { maybeForceBuilderInitialization(); } - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } @@ -22744,7 +22989,7 @@ public Builder clear() { publicExtra_ = null; publicExtraBuilder_ = null; } - signature_ = false; + signature_ = false; seenId_ = 0L; @@ -22756,24 +23001,24 @@ public Builder clear() { } public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_descriptor; + getDescriptorForType() { + return net.iGap.proto.ProtoGlobal.internal_static_proto_ChannelRoom_descriptor; } - public net.iGap.proto.ProtoGlobal.ChannelRoom getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.ChannelRoom.getDefaultInstance(); - } + public net.iGap.proto.ProtoGlobal.ChannelRoom getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.ChannelRoom.getDefaultInstance(); + } - public net.iGap.proto.ProtoGlobal.ChannelRoom build() { - net.iGap.proto.ProtoGlobal.ChannelRoom result = buildPartial(); + public net.iGap.proto.ProtoGlobal.ChannelRoom build() { + net.iGap.proto.ProtoGlobal.ChannelRoom result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } - return result; - } + return result; + } - public net.iGap.proto.ProtoGlobal.ChannelRoom buildPartial() { - net.iGap.proto.ProtoGlobal.ChannelRoom result = new net.iGap.proto.ProtoGlobal.ChannelRoom(this); + public net.iGap.proto.ProtoGlobal.ChannelRoom buildPartial() { + net.iGap.proto.ProtoGlobal.ChannelRoom result = new net.iGap.proto.ProtoGlobal.ChannelRoom(this); result.type_ = type_; result.role_ = role_; result.participantsCount_ = participantsCount_; @@ -22795,10 +23040,10 @@ public net.iGap.proto.ProtoGlobal.ChannelRoom buildPartial() { } else { result.publicExtra_ = publicExtraBuilder_.build(); } - result.signature_ = signature_; - result.seenId_ = seenId_; - result.verified_ = verified_; - result.reactionStatus_ = reactionStatus_; + result.signature_ = signature_; + result.seenId_ = seenId_; + result.verified_ = verified_; + result.reactionStatus_ = reactionStatus_; onBuilt(); return result; } @@ -22830,16 +23075,16 @@ public Builder addRepeatedField( return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.ChannelRoom) { - return mergeFrom((net.iGap.proto.ProtoGlobal.ChannelRoom)other); + if (other instanceof net.iGap.proto.ProtoGlobal.ChannelRoom) { + return mergeFrom((net.iGap.proto.ProtoGlobal.ChannelRoom)other); } else { - super.mergeFrom(other); - return this; - } + super.mergeFrom(other); + return this; + } } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.ChannelRoom other) { - if (other == net.iGap.proto.ProtoGlobal.ChannelRoom.getDefaultInstance()) return this; + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.ChannelRoom other) { + if (other == net.iGap.proto.ProtoGlobal.ChannelRoom.getDefaultInstance()) return this; if (other.type_ != 0) { setTypeValue(other.getTypeValue()); } @@ -22875,12 +23120,12 @@ public Builder mergeFrom(net.iGap.proto.ProtoGlobal.ChannelRoom other) { if (other.getSeenId() != 0L) { setSeenId(other.getSeenId()); } - if (other.getVerified() != false) { - setVerified(other.getVerified()); - } - if (other.getReactionStatus() != false) { - setReactionStatus(other.getReactionStatus()); - } + if (other.getVerified() != false) { + setVerified(other.getVerified()); + } + if (other.getReactionStatus() != false) { + setReactionStatus(other.getReactionStatus()); + } onChanged(); return this; } @@ -22892,12 +23137,12 @@ public final boolean isInitialized() { public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - net.iGap.proto.ProtoGlobal.ChannelRoom parsedMessage = null; + throws java.io.IOException { + net.iGap.proto.ProtoGlobal.ChannelRoom parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.ChannelRoom) e.getUnfinishedMessage(); + parsedMessage = (net.iGap.proto.ProtoGlobal.ChannelRoom) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { @@ -22926,8 +23171,8 @@ public Builder setTypeValue(int value) { * optional .proto.ChannelRoom.Type type = 1; */ public net.iGap.proto.ProtoGlobal.ChannelRoom.Type getType() { - net.iGap.proto.ProtoGlobal.ChannelRoom.Type result = net.iGap.proto.ProtoGlobal.ChannelRoom.Type.valueOf(type_); - return result == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.Type.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.ChannelRoom.Type result = net.iGap.proto.ProtoGlobal.ChannelRoom.Type.valueOf(type_); + return result == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.Type.UNRECOGNIZED : result; } /** * optional .proto.ChannelRoom.Type type = 1; @@ -22936,7 +23181,7 @@ public Builder setType(net.iGap.proto.ProtoGlobal.ChannelRoom.Type value) { if (value == null) { throw new NullPointerException(); } - + type_ = value.getNumber(); onChanged(); return this; @@ -22945,7 +23190,7 @@ public Builder setType(net.iGap.proto.ProtoGlobal.ChannelRoom.Type value) { * optional .proto.ChannelRoom.Type type = 1; */ public Builder clearType() { - + type_ = 0; onChanged(); return this; @@ -22970,8 +23215,8 @@ public Builder setRoleValue(int value) { * optional .proto.ChannelRoom.Role role = 2; */ public net.iGap.proto.ProtoGlobal.ChannelRoom.Role getRole() { - net.iGap.proto.ProtoGlobal.ChannelRoom.Role result = net.iGap.proto.ProtoGlobal.ChannelRoom.Role.valueOf(role_); - return result == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.Role.UNRECOGNIZED : result; + net.iGap.proto.ProtoGlobal.ChannelRoom.Role result = net.iGap.proto.ProtoGlobal.ChannelRoom.Role.valueOf(role_); + return result == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.Role.UNRECOGNIZED : result; } /** * optional .proto.ChannelRoom.Role role = 2; @@ -22980,7 +23225,7 @@ public Builder setRole(net.iGap.proto.ProtoGlobal.ChannelRoom.Role value) { if (value == null) { throw new NullPointerException(); } - + role_ = value.getNumber(); onChanged(); return this; @@ -22989,7 +23234,7 @@ public Builder setRole(net.iGap.proto.ProtoGlobal.ChannelRoom.Role value) { * optional .proto.ChannelRoom.Role role = 2; */ public Builder clearRole() { - + role_ = 0; onChanged(); return this; @@ -23006,7 +23251,7 @@ public int getParticipantsCount() { * optional uint32 participants_count = 3; */ public Builder setParticipantsCount(int value) { - + participantsCount_ = value; onChanged(); return this; @@ -23015,26 +23260,26 @@ public Builder setParticipantsCount(int value) { * optional uint32 participants_count = 3; */ public Builder clearParticipantsCount() { - + participantsCount_ = 0; - onChanged(); - return this; + onChanged(); + return this; } - private java.lang.Object participantsCountLabel_ = ""; + private java.lang.Object participantsCountLabel_ = ""; /** * optional string participants_count_label = 4; */ public java.lang.String getParticipantsCountLabel() { - java.lang.Object ref = participantsCountLabel_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = participantsCountLabel_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - participantsCountLabel_ = s; - return s; - } else { - return (java.lang.String) ref; + java.lang.String s = bs.toStringUtf8(); + participantsCountLabel_ = s; + return s; + } else { + return (java.lang.String) ref; } } /** @@ -23042,11 +23287,11 @@ public java.lang.String getParticipantsCountLabel() { */ public com.google.protobuf.ByteString getParticipantsCountLabelBytes() { - java.lang.Object ref = participantsCountLabel_; + java.lang.Object ref = participantsCountLabel_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); participantsCountLabel_ = b; return b; } else { @@ -23057,11 +23302,11 @@ public java.lang.String getParticipantsCountLabel() { * optional string participants_count_label = 4; */ public Builder setParticipantsCountLabel( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + participantsCountLabel_ = value; onChanged(); return this; @@ -23070,7 +23315,7 @@ public Builder setParticipantsCountLabel( * optional string participants_count_label = 4; */ public Builder clearParticipantsCountLabel() { - + participantsCountLabel_ = getDefaultInstance().getParticipantsCountLabel(); onChanged(); return this; @@ -23084,38 +23329,38 @@ public Builder setParticipantsCountLabelBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + participantsCountLabel_ = value; - onChanged(); - return this; + onChanged(); + return this; } - private java.lang.Object description_ = ""; + private java.lang.Object description_ = ""; /** * optional string description = 5; */ public java.lang.String getDescription() { - java.lang.Object ref = description_; - if (!(ref instanceof java.lang.String)) { + java.lang.Object ref = description_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - description_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } + java.lang.String s = bs.toStringUtf8(); + description_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } /** * optional string description = 5; */ public com.google.protobuf.ByteString - getDescriptionBytes() { - java.lang.Object ref = description_; + getDescriptionBytes() { + java.lang.Object ref = description_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); description_ = b; return b; } else { @@ -23126,11 +23371,11 @@ public java.lang.String getDescription() { * optional string description = 5; */ public Builder setDescription( - java.lang.String value) { + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - + description_ = value; onChanged(); return this; @@ -23139,7 +23384,7 @@ public Builder setDescription( * optional string description = 5; */ public Builder clearDescription() { - + description_ = getDefaultInstance().getDescription(); onChanged(); return this; @@ -23153,7 +23398,7 @@ public Builder setDescriptionBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + description_ = value; onChanged(); return this; @@ -23170,7 +23415,7 @@ public int getAvatarCount() { * optional uint32 avatar_count = 6; */ public Builder setAvatarCount(int value) { - + avatarCount_ = value; onChanged(); return this; @@ -23179,15 +23424,15 @@ public Builder setAvatarCount(int value) { * optional uint32 avatar_count = 6; */ public Builder clearAvatarCount() { - + avatarCount_ = 0; - onChanged(); - return this; + onChanged(); + return this; } - private net.iGap.proto.ProtoGlobal.Avatar avatar_ = null; + private net.iGap.proto.ProtoGlobal.Avatar avatar_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder> avatarBuilder_; + net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder> avatarBuilder_; /** * optional .proto.Avatar avatar = 7; */ @@ -23198,8 +23443,8 @@ public boolean hasAvatar() { * optional .proto.Avatar avatar = 7; */ public net.iGap.proto.ProtoGlobal.Avatar getAvatar() { - if (avatarBuilder_ == null) { - return avatar_ == null ? net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; + if (avatarBuilder_ == null) { + return avatar_ == null ? net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; } else { return avatarBuilder_.getMessage(); } @@ -23224,7 +23469,7 @@ public Builder setAvatar(net.iGap.proto.ProtoGlobal.Avatar value) { * optional .proto.Avatar avatar = 7; */ public Builder setAvatar( - net.iGap.proto.ProtoGlobal.Avatar.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.Avatar.Builder builderForValue) { if (avatarBuilder_ == null) { avatar_ = builderForValue.build(); onChanged(); @@ -23239,9 +23484,9 @@ public Builder setAvatar( */ public Builder mergeAvatar(net.iGap.proto.ProtoGlobal.Avatar value) { if (avatarBuilder_ == null) { - if (avatar_ != null) { - avatar_ = - net.iGap.proto.ProtoGlobal.Avatar.newBuilder(avatar_).mergeFrom(value).buildPartial(); + if (avatar_ != null) { + avatar_ = + net.iGap.proto.ProtoGlobal.Avatar.newBuilder(avatar_).mergeFrom(value).buildPartial(); } else { avatar_ = value; } @@ -23270,7 +23515,7 @@ public Builder clearAvatar() { * optional .proto.Avatar avatar = 7; */ public net.iGap.proto.ProtoGlobal.Avatar.Builder getAvatarBuilder() { - + onChanged(); return getAvatarFieldBuilder().getBuilder(); } @@ -23281,30 +23526,30 @@ public net.iGap.proto.ProtoGlobal.AvatarOrBuilder getAvatarOrBuilder() { if (avatarBuilder_ != null) { return avatarBuilder_.getMessageOrBuilder(); } else { - return avatar_ == null ? - net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; + return avatar_ == null ? + net.iGap.proto.ProtoGlobal.Avatar.getDefaultInstance() : avatar_; } } /** * optional .proto.Avatar avatar = 7; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder> + net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder> getAvatarFieldBuilder() { if (avatarBuilder_ == null) { avatarBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder>( + net.iGap.proto.ProtoGlobal.Avatar, net.iGap.proto.ProtoGlobal.Avatar.Builder, net.iGap.proto.ProtoGlobal.AvatarOrBuilder>( getAvatar(), getParentForChildren(), isClean()); - avatar_ = null; + avatar_ = null; } - return avatarBuilder_; + return avatarBuilder_; } - private net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra privateExtra_ = null; + private net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra privateExtra_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtraOrBuilder> privateExtraBuilder_; + net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtraOrBuilder> privateExtraBuilder_; /** * optional .proto.ChannelRoom.PrivateExtra private_extra = 8; */ @@ -23316,7 +23561,7 @@ public boolean hasPrivateExtra() { */ public net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra getPrivateExtra() { if (privateExtraBuilder_ == null) { - return privateExtra_ == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.getDefaultInstance() : privateExtra_; + return privateExtra_ == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.getDefaultInstance() : privateExtra_; } else { return privateExtraBuilder_.getMessage(); } @@ -23341,7 +23586,7 @@ public Builder setPrivateExtra(net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExt * optional .proto.ChannelRoom.PrivateExtra private_extra = 8; */ public Builder setPrivateExtra( - net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder builderForValue) { if (privateExtraBuilder_ == null) { privateExtra_ = builderForValue.build(); onChanged(); @@ -23356,9 +23601,9 @@ public Builder setPrivateExtra( */ public Builder mergePrivateExtra(net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra value) { if (privateExtraBuilder_ == null) { - if (privateExtra_ != null) { - privateExtra_ = - net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.newBuilder(privateExtra_).mergeFrom(value).buildPartial(); + if (privateExtra_ != null) { + privateExtra_ = + net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.newBuilder(privateExtra_).mergeFrom(value).buildPartial(); } else { privateExtra_ = value; } @@ -23387,7 +23632,7 @@ public Builder clearPrivateExtra() { * optional .proto.ChannelRoom.PrivateExtra private_extra = 8; */ public net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder getPrivateExtraBuilder() { - + onChanged(); return getPrivateExtraFieldBuilder().getBuilder(); } @@ -23398,19 +23643,19 @@ public net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtraOrBuilder getPrivateEx if (privateExtraBuilder_ != null) { return privateExtraBuilder_.getMessageOrBuilder(); } else { - return privateExtra_ == null ? - net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.getDefaultInstance() : privateExtra_; + return privateExtra_ == null ? + net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.getDefaultInstance() : privateExtra_; } } /** * optional .proto.ChannelRoom.PrivateExtra private_extra = 8; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtraOrBuilder> + net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtraOrBuilder> getPrivateExtraFieldBuilder() { if (privateExtraBuilder_ == null) { privateExtraBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtraOrBuilder>( + net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtra.Builder, net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtraOrBuilder>( getPrivateExtra(), getParentForChildren(), isClean()); @@ -23419,9 +23664,9 @@ public net.iGap.proto.ProtoGlobal.ChannelRoom.PrivateExtraOrBuilder getPrivateEx return privateExtraBuilder_; } - private net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra publicExtra_ = null; + private net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra publicExtra_ = null; private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtraOrBuilder> publicExtraBuilder_; + net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtraOrBuilder> publicExtraBuilder_; /** * optional .proto.ChannelRoom.PublicExtra public_extra = 9; */ @@ -23433,7 +23678,7 @@ public boolean hasPublicExtra() { */ public net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra getPublicExtra() { if (publicExtraBuilder_ == null) { - return publicExtra_ == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.getDefaultInstance() : publicExtra_; + return publicExtra_ == null ? net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.getDefaultInstance() : publicExtra_; } else { return publicExtraBuilder_.getMessage(); } @@ -23458,7 +23703,7 @@ public Builder setPublicExtra(net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra * optional .proto.ChannelRoom.PublicExtra public_extra = 9; */ public Builder setPublicExtra( - net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder builderForValue) { + net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder builderForValue) { if (publicExtraBuilder_ == null) { publicExtra_ = builderForValue.build(); onChanged(); @@ -23473,9 +23718,9 @@ public Builder setPublicExtra( */ public Builder mergePublicExtra(net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra value) { if (publicExtraBuilder_ == null) { - if (publicExtra_ != null) { - publicExtra_ = - net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.newBuilder(publicExtra_).mergeFrom(value).buildPartial(); + if (publicExtra_ != null) { + publicExtra_ = + net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.newBuilder(publicExtra_).mergeFrom(value).buildPartial(); } else { publicExtra_ = value; } @@ -23504,7 +23749,7 @@ public Builder clearPublicExtra() { * optional .proto.ChannelRoom.PublicExtra public_extra = 9; */ public net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder getPublicExtraBuilder() { - + onChanged(); return getPublicExtraFieldBuilder().getBuilder(); } @@ -23515,19 +23760,19 @@ public net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtraOrBuilder getPublicExtr if (publicExtraBuilder_ != null) { return publicExtraBuilder_.getMessageOrBuilder(); } else { - return publicExtra_ == null ? - net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.getDefaultInstance() : publicExtra_; + return publicExtra_ == null ? + net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.getDefaultInstance() : publicExtra_; } } /** * optional .proto.ChannelRoom.PublicExtra public_extra = 9; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtraOrBuilder> + net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtraOrBuilder> getPublicExtraFieldBuilder() { if (publicExtraBuilder_ == null) { publicExtraBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtraOrBuilder>( + net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtra.Builder, net.iGap.proto.ProtoGlobal.ChannelRoom.PublicExtraOrBuilder>( getPublicExtra(), getParentForChildren(), isClean()); @@ -23547,7 +23792,7 @@ public boolean getSignature() { * optional bool signature = 10; */ public Builder setSignature(boolean value) { - + signature_ = value; onChanged(); return this; @@ -23556,7 +23801,7 @@ public Builder setSignature(boolean value) { * optional bool signature = 10; */ public Builder clearSignature() { - + signature_ = false; onChanged(); return this; @@ -23573,7 +23818,7 @@ public long getSeenId() { * optional uint64 seen_id = 11; */ public Builder setSeenId(long value) { - + seenId_ = value; onChanged(); return this; @@ -23582,9 +23827,9 @@ public Builder setSeenId(long value) { * optional uint64 seen_id = 11; */ public Builder clearSeenId() { - - seenId_ = 0L; - onChanged(); + + seenId_ = 0L; + onChanged(); return this; } @@ -23642,9 +23887,9 @@ public Builder setReactionStatus(boolean value) { public Builder clearReactionStatus() { reactionStatus_ = false; - onChanged(); - return this; - } + onChanged(); + return this; + } public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return this; @@ -23652,17 +23897,18 @@ public final Builder setUnknownFields( public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { - return this; + return this; } - // @@protoc_insertion_point(builder_scope:proto.ChannelRoom) + // @@protoc_insertion_point(builder_scope:proto.ChannelRoom) } - // @@protoc_insertion_point(class_scope:proto.ChannelRoom) - private static final net.iGap.proto.ProtoGlobal.ChannelRoom DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.ChannelRoom(); + // @@protoc_insertion_point(class_scope:proto.ChannelRoom) + private static final net.iGap.proto.ProtoGlobal.ChannelRoom DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.ChannelRoom(); } public static net.iGap.proto.ProtoGlobal.ChannelRoom getDefaultInstance() { @@ -23679,13 +23925,13 @@ public ChannelRoom parsePartialFrom( } }; - public static com.google.protobuf.Parser parser() { + public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { - return PARSER; + return PARSER; } public net.iGap.proto.ProtoGlobal.ChannelRoom getDefaultInstanceForType() { @@ -23717,21 +23963,23 @@ public interface ThumbnailOrBuilder extends * optional string cache_id = 4; */ java.lang.String getCacheId(); - /** - * optional string cache_id = 4; + + /** + * optional string cache_id = 4; */ com.google.protobuf.ByteString - getCacheIdBytes(); + getCacheIdBytes(); /** * optional string name = 5; */ java.lang.String getName(); - /** - * optional string name = 5; + + /** + * optional string name = 5; */ com.google.protobuf.ByteString - getNameBytes(); + getNameBytes(); /** * optional string mime = 6; @@ -23756,8 +24004,8 @@ private Thumbnail(com.google.protobuf.GeneratedMessageV3.Builder builder) { } private Thumbnail() { size_ = 0L; - width_ = 0; - height_ = 0; + width_ = 0; + height_ = 0; cacheId_ = ""; name_ = ""; mime_ = ""; @@ -23795,25 +24043,25 @@ private Thumbnail( } case 16: { - width_ = input.readInt32(); - break; + width_ = input.readInt32(); + break; } case 24: { - height_ = input.readInt32(); - break; + height_ = input.readInt32(); + break; } - case 34: { - java.lang.String s = input.readStringRequireUtf8(); + case 34: { + java.lang.String s = input.readStringRequireUtf8(); - cacheId_ = s; - break; - } - case 42: { - java.lang.String s = input.readStringRequireUtf8(); + cacheId_ = s; + break; + } + case 42: { + java.lang.String s = input.readStringRequireUtf8(); - name_ = s; - break; + name_ = s; + break; } case 50: { java.lang.String s = input.readStringRequireUtf8(); @@ -23827,21 +24075,22 @@ private Thumbnail( throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); + e).setUnfinishedMessage(this); } finally { - makeExtensionsImmutable(); + makeExtensionsImmutable(); } } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Thumbnail_descriptor; - } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return net.iGap.proto.ProtoGlobal.internal_static_proto_Thumbnail_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { return net.iGap.proto.ProtoGlobal.internal_static_proto_Thumbnail_fieldAccessorTable - .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.Thumbnail.class, net.iGap.proto.ProtoGlobal.Thumbnail.Builder.class); + .ensureFieldAccessorsInitialized( + net.iGap.proto.ProtoGlobal.Thumbnail.class, net.iGap.proto.ProtoGlobal.Thumbnail.Builder.class); } public static final int SIZE_FIELD_NUMBER = 1; @@ -23864,24 +24113,26 @@ public int getWidth() { public static final int HEIGHT_FIELD_NUMBER = 3; private int height_; - /** - * optional int32 height = 3; + + /** + * optional int32 height = 3; */ public int getHeight() { - return height_; + return height_; } - public static final int CACHE_ID_FIELD_NUMBER = 4; - private volatile java.lang.Object cacheId_; - /** - * optional string cache_id = 4; - */ - public java.lang.String getCacheId() { - java.lang.Object ref = cacheId_; - if (ref instanceof java.lang.String) { + public static final int CACHE_ID_FIELD_NUMBER = 4; + private volatile java.lang.Object cacheId_; + + /** + * optional string cache_id = 4; + */ + public java.lang.String getCacheId() { + java.lang.Object ref = cacheId_; + if (ref instanceof java.lang.String) { return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); cacheId_ = s; @@ -23892,30 +24143,31 @@ public java.lang.String getCacheId() { * optional string cache_id = 4; */ public com.google.protobuf.ByteString - getCacheIdBytes() { - java.lang.Object ref = cacheId_; + getCacheIdBytes() { + java.lang.Object ref = cacheId_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); cacheId_ = b; return b; } else { - return (com.google.protobuf.ByteString) ref; + return (com.google.protobuf.ByteString) ref; } } - public static final int NAME_FIELD_NUMBER = 5; - private volatile java.lang.Object name_; - /** - * optional string name = 5; - */ - public java.lang.String getName() { - java.lang.Object ref = name_; - if (ref instanceof java.lang.String) { + public static final int NAME_FIELD_NUMBER = 5; + private volatile java.lang.Object name_; + + /** + * optional string name = 5; + */ + public java.lang.String getName() { + java.lang.Object ref = name_; + if (ref instanceof java.lang.String) { return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; @@ -23926,44 +24178,46 @@ public java.lang.String getName() { * optional string name = 5; */ public com.google.protobuf.ByteString - getNameBytes() { - java.lang.Object ref = name_; + getNameBytes() { + java.lang.Object ref = name_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); name_ = b; return b; } else { - return (com.google.protobuf.ByteString) ref; + return (com.google.protobuf.ByteString) ref; } } - public static final int MIME_FIELD_NUMBER = 6; - private volatile java.lang.Object mime_; - /** - * optional string mime = 6; - */ - public java.lang.String getMime() { + public static final int MIME_FIELD_NUMBER = 6; + private volatile java.lang.Object mime_; + + /** + * optional string mime = 6; + */ + public java.lang.String getMime() { java.lang.Object ref = mime_; - if (ref instanceof java.lang.String) { + if (ref instanceof java.lang.String) { return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); mime_ = s; return s; } } - /** - * optional string mime = 6; - */ - public com.google.protobuf.ByteString + + /** + * optional string mime = 6; + */ + public com.google.protobuf.ByteString getMimeBytes() { java.lang.Object ref = mime_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); mime_ = b; @@ -24028,21 +24282,22 @@ public int getSerializedSize() { if (!getNameBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, name_); } - if (!getMimeBytes().isEmpty()) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, mime_); - } - memoizedSize = size; - return size; + if (!getMimeBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, mime_); + } + memoizedSize = size; + return size; } - private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { + private static final long serialVersionUID = 0L; + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } - if (!(obj instanceof net.iGap.proto.ProtoGlobal.Thumbnail)) { - return super.equals(obj); + if (!(obj instanceof net.iGap.proto.ProtoGlobal.Thumbnail)) { + return super.equals(obj); } net.iGap.proto.ProtoGlobal.Thumbnail other = (net.iGap.proto.ProtoGlobal.Thumbnail) obj; @@ -24052,11 +24307,11 @@ public boolean equals(final java.lang.Object obj) { result = result && (getWidth() == other.getWidth()); result = result && (getHeight() - == other.getHeight()); - result = result && getCacheId() + == other.getHeight()); + result = result && getCacheId() .equals(other.getCacheId()); result = result && getName() - .equals(other.getName()); + .equals(other.getName()); result = result && getMime() .equals(other.getMime()); return result; @@ -24080,85 +24335,93 @@ public int hashCode() { hash = (53 * hash) + getCacheId().hashCode(); hash = (37 * hash) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); - hash = (37 * hash) + MIME_FIELD_NUMBER; + hash = (37 * hash) + MIME_FIELD_NUMBER; hash = (53 * hash) + getMime().hashCode(); - hash = (29 * hash) + unknownFields.hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; - return hash; + return hash; } - public static net.iGap.proto.ProtoGlobal.Thumbnail parseFrom( + public static net.iGap.proto.ProtoGlobal.Thumbnail parseFrom( com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { + throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static net.iGap.proto.ProtoGlobal.Thumbnail parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.Thumbnail parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { + + public static net.iGap.proto.ProtoGlobal.Thumbnail parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static net.iGap.proto.ProtoGlobal.Thumbnail parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.Thumbnail parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 + + public static net.iGap.proto.ProtoGlobal.Thumbnail parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static net.iGap.proto.ProtoGlobal.Thumbnail parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.Thumbnail parseDelimitedFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.Thumbnail parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static net.iGap.proto.ProtoGlobal.Thumbnail parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.Thumbnail parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 + + public static net.iGap.proto.ProtoGlobal.Thumbnail parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static net.iGap.proto.ProtoGlobal.Thumbnail parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(net.iGap.proto.ProtoGlobal.Thumbnail prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - public Builder toBuilder() { + + public Builder toBuilder() { return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } + ? new Builder() : new Builder().mergeFrom(this); + } - @java.lang.Override + @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); @@ -24169,23 +24432,23 @@ protected Builder newBuilderForType( */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:proto.Thumbnail) - net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Thumbnail_descriptor; - } + // @@protoc_insertion_point(builder_implements:proto.Thumbnail) + net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return net.iGap.proto.ProtoGlobal.internal_static_proto_Thumbnail_descriptor; + } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Thumbnail_fieldAccessorTable - .ensureFieldAccessorsInitialized( + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return net.iGap.proto.ProtoGlobal.internal_static_proto_Thumbnail_fieldAccessorTable + .ensureFieldAccessorsInitialized( net.iGap.proto.ProtoGlobal.Thumbnail.class, net.iGap.proto.ProtoGlobal.Thumbnail.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.Thumbnail.newBuilder() private Builder() { - maybeForceBuilderInitialization(); + maybeForceBuilderInitialization(); } private Builder( @@ -24199,40 +24462,40 @@ private void maybeForceBuilderInitialization() { } } public Builder clear() { - super.clear(); - size_ = 0L; + super.clear(); + size_ = 0L; - width_ = 0; + width_ = 0; - height_ = 0; + height_ = 0; - cacheId_ = ""; + cacheId_ = ""; - name_ = ""; + name_ = ""; - mime_ = ""; + mime_ = ""; - return this; + return this; } - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Thumbnail_descriptor; - } + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return net.iGap.proto.ProtoGlobal.internal_static_proto_Thumbnail_descriptor; + } - public net.iGap.proto.ProtoGlobal.Thumbnail getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance(); - } + public net.iGap.proto.ProtoGlobal.Thumbnail getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance(); + } - public net.iGap.proto.ProtoGlobal.Thumbnail build() { - net.iGap.proto.ProtoGlobal.Thumbnail result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); + public net.iGap.proto.ProtoGlobal.Thumbnail build() { + net.iGap.proto.ProtoGlobal.Thumbnail result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; } - return result; - } - public net.iGap.proto.ProtoGlobal.Thumbnail buildPartial() { + public net.iGap.proto.ProtoGlobal.Thumbnail buildPartial() { net.iGap.proto.ProtoGlobal.Thumbnail result = new net.iGap.proto.ProtoGlobal.Thumbnail(this); result.size_ = size_; result.width_ = width_; @@ -24265,21 +24528,23 @@ public Builder setRepeatedField( int index, Object value) { return (Builder) super.setRepeatedField(field, index, value); } - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - Object value) { - return (Builder) super.addRepeatedField(field, value); - } - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.Thumbnail) { - return mergeFrom((net.iGap.proto.ProtoGlobal.Thumbnail)other); - } else { - super.mergeFrom(other); - return this; + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof net.iGap.proto.ProtoGlobal.Thumbnail) { + return mergeFrom((net.iGap.proto.ProtoGlobal.Thumbnail) other); + } else { + super.mergeFrom(other); + return this; + } } - } - public Builder mergeFrom(net.iGap.proto.ProtoGlobal.Thumbnail other) { + public Builder mergeFrom(net.iGap.proto.ProtoGlobal.Thumbnail other) { if (other == net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance()) return this; if (other.getSize() != 0L) { setSize(other.getSize()); @@ -24339,7 +24604,7 @@ public long getSize() { * optional int64 size = 1; */ public Builder setSize(long value) { - + size_ = value; onChanged(); return this; @@ -24348,7 +24613,7 @@ public Builder setSize(long value) { * optional int64 size = 1; */ public Builder clearSize() { - + size_ = 0L; onChanged(); return this; @@ -24365,7 +24630,7 @@ public int getWidth() { * optional int32 width = 2; */ public Builder setWidth(int value) { - + width_ = value; onChanged(); return this; @@ -24374,7 +24639,7 @@ public Builder setWidth(int value) { * optional int32 width = 2; */ public Builder clearWidth() { - + width_ = 0; onChanged(); return this; @@ -24391,7 +24656,7 @@ public int getHeight() { * optional int32 height = 3; */ public Builder setHeight(int value) { - + height_ = value; onChanged(); return this; @@ -24400,38 +24665,40 @@ public Builder setHeight(int value) { * optional int32 height = 3; */ public Builder clearHeight() { - - height_ = 0; - onChanged(); - return this; + + height_ = 0; + onChanged(); + return this; } - private java.lang.Object cacheId_ = ""; - /** - * optional string cache_id = 4; - */ - public java.lang.String getCacheId() { - java.lang.Object ref = cacheId_; - if (!(ref instanceof java.lang.String)) { + private java.lang.Object cacheId_ = ""; + + /** + * optional string cache_id = 4; + */ + public java.lang.String getCacheId() { + java.lang.Object ref = cacheId_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + java.lang.String s = bs.toStringUtf8(); cacheId_ = s; return s; } else { return (java.lang.String) ref; } - } - /** - * optional string cache_id = 4; - */ - public com.google.protobuf.ByteString - getCacheIdBytes() { + } + + /** + * optional string cache_id = 4; + */ + public com.google.protobuf.ByteString + getCacheIdBytes() { java.lang.Object ref = cacheId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = + if (ref instanceof String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); cacheId_ = b; return b; } else { @@ -24446,7 +24713,7 @@ public Builder setCacheId( if (value == null) { throw new NullPointerException(); } - + cacheId_ = value; onChanged(); return this; @@ -24455,7 +24722,7 @@ public Builder setCacheId( * optional string cache_id = 4; */ public Builder clearCacheId() { - + cacheId_ = getDefaultInstance().getCacheId(); onChanged(); return this; @@ -24465,46 +24732,48 @@ public Builder clearCacheId() { */ public Builder setCacheIdBytes( com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - cacheId_ = value; - onChanged(); - return this; + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + cacheId_ = value; + onChanged(); + return this; } - private java.lang.Object name_ = ""; - /** - * optional string name = 5; - */ - public java.lang.String getName() { - java.lang.Object ref = name_; - if (!(ref instanceof java.lang.String)) { + private java.lang.Object name_ = ""; + + /** + * optional string name = 5; + */ + public java.lang.String getName() { + java.lang.Object ref = name_; + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - name_ = s; + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + name_ = s; return s; } else { return (java.lang.String) ref; + } } - } - /** - * optional string name = 5; - */ - public com.google.protobuf.ByteString + + /** + * optional string name = 5; + */ + public com.google.protobuf.ByteString getNameBytes() { - java.lang.Object ref = name_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = name_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); name_ = b; return b; - } else { - return (com.google.protobuf.ByteString) ref; + } else { + return (com.google.protobuf.ByteString) ref; } } /** @@ -24515,7 +24784,7 @@ public Builder setName( if (value == null) { throw new NullPointerException(); } - + name_ = value; onChanged(); return this; @@ -24524,7 +24793,7 @@ public Builder setName( * optional string name = 5; */ public Builder clearName() { - + name_ = getDefaultInstance().getName(); onChanged(); return this; @@ -24534,46 +24803,48 @@ public Builder clearName() { */ public Builder setNameBytes( com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - name_ = value; - onChanged(); - return this; + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + name_ = value; + onChanged(); + return this; } - private java.lang.Object mime_ = ""; - /** - * optional string mime = 6; - */ - public java.lang.String getMime() { - java.lang.Object ref = mime_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); + private java.lang.Object mime_ = ""; + + /** + * optional string mime = 6; + */ + public java.lang.String getMime() { + java.lang.Object ref = mime_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); mime_ = s; return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; + } } - } - /** - * optional string mime = 6; - */ + + /** + * optional string mime = 6; + */ public com.google.protobuf.ByteString getMimeBytes() { - java.lang.Object ref = mime_; + java.lang.Object ref = mime_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); mime_ = b; return b; } else { - return (com.google.protobuf.ByteString) ref; + return (com.google.protobuf.ByteString) ref; } } /** @@ -24584,7 +24855,7 @@ public Builder setMime( if (value == null) { throw new NullPointerException(); } - + mime_ = value; onChanged(); return this; @@ -24593,7 +24864,7 @@ public Builder setMime( * optional string mime = 6; */ public Builder clearMime() { - + mime_ = getDefaultInstance().getMime(); onChanged(); return this; @@ -24607,27 +24878,27 @@ public Builder setMimeBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + mime_ = value; onChanged(); return this; } public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { - return this; + return this; } - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return this; - } + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return this; + } - // @@protoc_insertion_point(builder_scope:proto.Thumbnail) + // @@protoc_insertion_point(builder_scope:proto.Thumbnail) } - // @@protoc_insertion_point(class_scope:proto.Thumbnail) - private static final net.iGap.proto.ProtoGlobal.Thumbnail DEFAULT_INSTANCE; + // @@protoc_insertion_point(class_scope:proto.Thumbnail) + private static final net.iGap.proto.ProtoGlobal.Thumbnail DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new net.iGap.proto.ProtoGlobal.Thumbnail(); } @@ -24647,10 +24918,10 @@ public Thumbnail parsePartialFrom( }; public static com.google.protobuf.Parser parser() { - return PARSER; + return PARSER; } - @java.lang.Override + @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @@ -24662,15 +24933,16 @@ public net.iGap.proto.ProtoGlobal.Thumbnail getDefaultInstanceForType() { } public interface FileOrBuilder extends - // @@protoc_insertion_point(interface_extends:proto.File) + // @@protoc_insertion_point(interface_extends:proto.File) com.google.protobuf.MessageOrBuilder { /** * optional string token = 1; */ java.lang.String getToken(); - /** - * optional string token = 1; + + /** + * optional string token = 1; */ com.google.protobuf.ByteString getTokenBytes(); @@ -24690,8 +24962,8 @@ public interface FileOrBuilder extends */ long getSize(); - /** - * optional .proto.Thumbnail large_thumbnail = 4; + /** + * optional .proto.Thumbnail large_thumbnail = 4; */ boolean hasLargeThumbnail(); /** @@ -24703,8 +24975,8 @@ public interface FileOrBuilder extends */ net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder getLargeThumbnailOrBuilder(); - /** - * optional .proto.Thumbnail small_thumbnail = 5; + /** + * optional .proto.Thumbnail small_thumbnail = 5; */ boolean hasSmallThumbnail(); /** @@ -24748,21 +25020,33 @@ public interface FileOrBuilder extends * optional string cache_id = 10; */ java.lang.String getCacheId(); - /** - * optional string cache_id = 10; + + /** + * optional string cache_id = 10; + */ + com.google.protobuf.ByteString + getCacheIdBytes(); + + /** + * optional string mime = 11; + */ + java.lang.String getMime(); + + /** + * optional string mime = 11; */ com.google.protobuf.ByteString - getCacheIdBytes(); + getMimeBytes(); /** - * optional string mime = 11; + * optional string public_url = 12; */ - java.lang.String getMime(); + java.lang.String getPublicUrl(); /** - * optional string mime = 11; + * optional string public_url = 12; */ com.google.protobuf.ByteString - getMimeBytes(); + getPublicUrlBytes(); } /** * Protobuf type {@code proto.File} @@ -24770,12 +25054,13 @@ public interface FileOrBuilder extends public static final class File extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:proto.File) - FileOrBuilder { - // Use File.newBuilder() to construct. + FileOrBuilder { + // Use File.newBuilder() to construct. private File(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private File() { + + private File() { token_ = ""; name_ = ""; size_ = 0L; @@ -24784,6 +25069,7 @@ private File() { duration_ = 0D; cacheId_ = ""; mime_ = ""; + publicUrl_ = ""; } @java.lang.Override @@ -24798,65 +25084,65 @@ private File( this(); int mutable_bitField0_ = 0; try { - boolean done = false; - while (!done) { - int tag = input.readTag(); + boolean done = false; + while (!done) { + int tag = input.readTag(); switch (tag) { - case 0: - done = true; - break; - default: { + case 0: + done = true; + break; + default: { if (!input.skipField(tag)) { done = true; } - break; - } - case 10: { - java.lang.String s = input.readStringRequireUtf8(); + break; + } + case 10: { + java.lang.String s = input.readStringRequireUtf8(); - token_ = s; + token_ = s; break; } case 18: { java.lang.String s = input.readStringRequireUtf8(); - name_ = s; - break; + name_ = s; + break; } - case 24: { + case 24: { - size_ = input.readInt64(); - break; - } - case 34: { - net.iGap.proto.ProtoGlobal.Thumbnail.Builder subBuilder = null; - if (largeThumbnail_ != null) { + size_ = input.readInt64(); + break; + } + case 34: { + net.iGap.proto.ProtoGlobal.Thumbnail.Builder subBuilder = null; + if (largeThumbnail_ != null) { subBuilder = largeThumbnail_.toBuilder(); } - largeThumbnail_ = input.readMessage(net.iGap.proto.ProtoGlobal.Thumbnail.parser(), extensionRegistry); + largeThumbnail_ = input.readMessage(net.iGap.proto.ProtoGlobal.Thumbnail.parser(), extensionRegistry); if (subBuilder != null) { - subBuilder.mergeFrom(largeThumbnail_); - largeThumbnail_ = subBuilder.buildPartial(); + subBuilder.mergeFrom(largeThumbnail_); + largeThumbnail_ = subBuilder.buildPartial(); } - break; - } - case 42: { - net.iGap.proto.ProtoGlobal.Thumbnail.Builder subBuilder = null; - if (smallThumbnail_ != null) { + break; + } + case 42: { + net.iGap.proto.ProtoGlobal.Thumbnail.Builder subBuilder = null; + if (smallThumbnail_ != null) { subBuilder = smallThumbnail_.toBuilder(); } - smallThumbnail_ = input.readMessage(net.iGap.proto.ProtoGlobal.Thumbnail.parser(), extensionRegistry); + smallThumbnail_ = input.readMessage(net.iGap.proto.ProtoGlobal.Thumbnail.parser(), extensionRegistry); if (subBuilder != null) { - subBuilder.mergeFrom(smallThumbnail_); - smallThumbnail_ = subBuilder.buildPartial(); + subBuilder.mergeFrom(smallThumbnail_); + smallThumbnail_ = subBuilder.buildPartial(); } - break; - } + break; + } case 50: { - net.iGap.proto.ProtoGlobal.Thumbnail.Builder subBuilder = null; - if (waveformThumbnail_ != null) { + net.iGap.proto.ProtoGlobal.Thumbnail.Builder subBuilder = null; + if (waveformThumbnail_ != null) { subBuilder = waveformThumbnail_.toBuilder(); } waveformThumbnail_ = input.readMessage(net.iGap.proto.ProtoGlobal.Thumbnail.parser(), extensionRegistry); @@ -24865,117 +25151,127 @@ private File( waveformThumbnail_ = subBuilder.buildPartial(); } - break; + break; } - case 56: { + case 56: { - width_ = input.readInt32(); + width_ = input.readInt32(); break; } case 64: { - height_ = input.readInt32(); - break; + height_ = input.readInt32(); + break; } case 73: { duration_ = input.readDouble(); - break; + break; } - case 82: { - java.lang.String s = input.readStringRequireUtf8(); + case 82: { + java.lang.String s = input.readStringRequireUtf8(); - cacheId_ = s; + cacheId_ = s; + break; + } + case 90: { + java.lang.String s = input.readStringRequireUtf8(); + + mime_ = s; break; } - case 90: { + case 98: { java.lang.String s = input.readStringRequireUtf8(); - mime_ = s; + publicUrl_ = s; break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); + throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); } finally { - makeExtensionsImmutable(); + makeExtensionsImmutable(); } } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_File_descriptor; - } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_File_fieldAccessorTable - .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.File.class, net.iGap.proto.ProtoGlobal.File.Builder.class); - } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return net.iGap.proto.ProtoGlobal.internal_static_proto_File_descriptor; + } - public static final int TOKEN_FIELD_NUMBER = 1; - private volatile java.lang.Object token_; - /** - * optional string token = 1; + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return net.iGap.proto.ProtoGlobal.internal_static_proto_File_fieldAccessorTable + .ensureFieldAccessorsInitialized( + net.iGap.proto.ProtoGlobal.File.class, net.iGap.proto.ProtoGlobal.File.Builder.class); + } + + public static final int TOKEN_FIELD_NUMBER = 1; + private volatile java.lang.Object token_; + + /** + * optional string token = 1; */ public java.lang.String getToken() { java.lang.Object ref = token_; - if (ref instanceof java.lang.String) { + if (ref instanceof java.lang.String) { return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - token_ = s; - return s; - } + token_ = s; + return s; + } } - /** + + /** * optional string token = 1; */ public com.google.protobuf.ByteString - getTokenBytes() { - java.lang.Object ref = token_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - token_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } + getTokenBytes() { + java.lang.Object ref = token_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + token_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } } - public static final int NAME_FIELD_NUMBER = 2; - private volatile java.lang.Object name_; - /** - * optional string name = 2; + public static final int NAME_FIELD_NUMBER = 2; + private volatile java.lang.Object name_; + + /** + * optional string name = 2; */ public java.lang.String getName() { java.lang.Object ref = name_; - if (ref instanceof java.lang.String) { + if (ref instanceof java.lang.String) { return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - name_ = s; - return s; - } + name_ = s; + return s; + } } /** * optional string name = 2; */ public com.google.protobuf.ByteString - getNameBytes() { - java.lang.Object ref = name_; + getNameBytes() { + java.lang.Object ref = name_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); name_ = b; @@ -24986,27 +25282,30 @@ public java.lang.String getName() { } public static final int SIZE_FIELD_NUMBER = 3; - private long size_; - /** - * optional int64 size = 3; + private long size_; + + /** + * optional int64 size = 3; */ public long getSize() { return size_; } public static final int LARGE_THUMBNAIL_FIELD_NUMBER = 4; - private net.iGap.proto.ProtoGlobal.Thumbnail largeThumbnail_; - /** - * optional .proto.Thumbnail large_thumbnail = 4; - */ - public boolean hasLargeThumbnail() { - return largeThumbnail_ != null; - } - /** - * optional .proto.Thumbnail large_thumbnail = 4; + private net.iGap.proto.ProtoGlobal.Thumbnail largeThumbnail_; + + /** + * optional .proto.Thumbnail large_thumbnail = 4; + */ + public boolean hasLargeThumbnail() { + return largeThumbnail_ != null; + } + + /** + * optional .proto.Thumbnail large_thumbnail = 4; */ public net.iGap.proto.ProtoGlobal.Thumbnail getLargeThumbnail() { - return largeThumbnail_ == null ? net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : largeThumbnail_; + return largeThumbnail_ == null ? net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : largeThumbnail_; } /** * optional .proto.Thumbnail large_thumbnail = 4; @@ -25016,18 +25315,20 @@ public net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder getLargeThumbnailOrBuilder( } public static final int SMALL_THUMBNAIL_FIELD_NUMBER = 5; - private net.iGap.proto.ProtoGlobal.Thumbnail smallThumbnail_; - /** - * optional .proto.Thumbnail small_thumbnail = 5; - */ - public boolean hasSmallThumbnail() { - return smallThumbnail_ != null; - } - /** - * optional .proto.Thumbnail small_thumbnail = 5; + private net.iGap.proto.ProtoGlobal.Thumbnail smallThumbnail_; + + /** + * optional .proto.Thumbnail small_thumbnail = 5; + */ + public boolean hasSmallThumbnail() { + return smallThumbnail_ != null; + } + + /** + * optional .proto.Thumbnail small_thumbnail = 5; */ public net.iGap.proto.ProtoGlobal.Thumbnail getSmallThumbnail() { - return smallThumbnail_ == null ? net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : smallThumbnail_; + return smallThumbnail_ == null ? net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : smallThumbnail_; } /** * optional .proto.Thumbnail small_thumbnail = 5; @@ -25037,18 +25338,20 @@ public net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder getSmallThumbnailOrBuilder( } public static final int WAVEFORM_THUMBNAIL_FIELD_NUMBER = 6; - private net.iGap.proto.ProtoGlobal.Thumbnail waveformThumbnail_; - /** - * optional .proto.Thumbnail waveform_thumbnail = 6; - */ - public boolean hasWaveformThumbnail() { - return waveformThumbnail_ != null; - } - /** - * optional .proto.Thumbnail waveform_thumbnail = 6; + private net.iGap.proto.ProtoGlobal.Thumbnail waveformThumbnail_; + + /** + * optional .proto.Thumbnail waveform_thumbnail = 6; + */ + public boolean hasWaveformThumbnail() { + return waveformThumbnail_ != null; + } + + /** + * optional .proto.Thumbnail waveform_thumbnail = 6; */ public net.iGap.proto.ProtoGlobal.Thumbnail getWaveformThumbnail() { - return waveformThumbnail_ == null ? net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : waveformThumbnail_; + return waveformThumbnail_ == null ? net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : waveformThumbnail_; } /** * optional .proto.Thumbnail waveform_thumbnail = 6; @@ -25077,75 +25380,115 @@ public int getHeight() { public static final int DURATION_FIELD_NUMBER = 9; private double duration_; - /** - * optional double duration = 9; - */ - public double getDuration() { - return duration_; - } - public static final int CACHE_ID_FIELD_NUMBER = 10; - private volatile java.lang.Object cacheId_; - /** - * optional string cache_id = 10; + /** + * optional double duration = 9; + */ + public double getDuration() { + return duration_; + } + + public static final int CACHE_ID_FIELD_NUMBER = 10; + private volatile java.lang.Object cacheId_; + + /** + * optional string cache_id = 10; */ public java.lang.String getCacheId() { java.lang.Object ref = cacheId_; - if (ref instanceof java.lang.String) { + if (ref instanceof java.lang.String) { return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - cacheId_ = s; - return s; - } + cacheId_ = s; + return s; + } } - /** + + /** * optional string cache_id = 10; */ public com.google.protobuf.ByteString - getCacheIdBytes() { - java.lang.Object ref = cacheId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - cacheId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } + getCacheIdBytes() { + java.lang.Object ref = cacheId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + cacheId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } } - public static final int MIME_FIELD_NUMBER = 11; - private volatile java.lang.Object mime_; - /** + public static final int MIME_FIELD_NUMBER = 11; + private volatile java.lang.Object mime_; + + /** * optional string mime = 11; */ public java.lang.String getMime() { java.lang.Object ref = mime_; - if (ref instanceof java.lang.String) { + if (ref instanceof java.lang.String) { return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - mime_ = s; - return s; - } + mime_ = s; + return s; + } } /** * optional string mime = 11; */ public com.google.protobuf.ByteString - getMimeBytes() { - java.lang.Object ref = mime_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( + getMimeBytes() { + java.lang.Object ref = mime_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + mime_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int PUBLIC_URL_FIELD_NUMBER = 12; + private volatile java.lang.Object publicUrl_; + + /** + * optional string public_url = 12; + */ + public java.lang.String getPublicUrl() { + java.lang.Object ref = publicUrl_; + 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(); + publicUrl_ = s; + return s; + } + } + + /** + * optional string public_url = 12; + */ + public com.google.protobuf.ByteString + getPublicUrlBytes() { + java.lang.Object ref = publicUrl_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); - mime_ = b; + publicUrl_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; @@ -25188,15 +25531,18 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (height_ != 0) { output.writeInt32(8, height_); } - if (duration_ != 0D) { - output.writeDouble(9, duration_); - } - if (!getCacheIdBytes().isEmpty()) { + if (duration_ != 0D) { + output.writeDouble(9, duration_); + } + if (!getCacheIdBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 10, cacheId_); } if (!getMimeBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 11, mime_); } + if (!getPublicUrlBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 12, publicUrl_); + } } public int getSerializedSize() { @@ -25235,23 +25581,27 @@ public int getSerializedSize() { .computeInt32Size(8, height_); } if (duration_ != 0D) { - size += com.google.protobuf.CodedOutputStream - .computeDoubleSize(9, duration_); - } - if (!getCacheIdBytes().isEmpty()) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(10, cacheId_); + size += com.google.protobuf.CodedOutputStream + .computeDoubleSize(9, duration_); } - if (!getMimeBytes().isEmpty()) { + if (!getCacheIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(10, cacheId_); + } + if (!getMimeBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(11, mime_); + } + if (!getPublicUrlBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(12, publicUrl_); } - memoizedSize = size; - return size; + memoizedSize = size; + return size; } - private static final long serialVersionUID = 0L; - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { + private static final long serialVersionUID = 0L; + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { return true; } if (!(obj instanceof net.iGap.proto.ProtoGlobal.File)) { @@ -25276,23 +25626,25 @@ public boolean equals(final java.lang.Object obj) { result = result && getSmallThumbnail() .equals(other.getSmallThumbnail()); } - result = result && (hasWaveformThumbnail() == other.hasWaveformThumbnail()); - if (hasWaveformThumbnail()) { + result = result && (hasWaveformThumbnail() == other.hasWaveformThumbnail()); + if (hasWaveformThumbnail()) { result = result && getWaveformThumbnail() - .equals(other.getWaveformThumbnail()); - } - result = result && (getWidth() - == other.getWidth()); - result = result && (getHeight() - == other.getHeight()); - result = result && ( + .equals(other.getWaveformThumbnail()); + } + result = result && (getWidth() + == other.getWidth()); + result = result && (getHeight() + == other.getHeight()); + result = result && ( java.lang.Double.doubleToLongBits(getDuration()) == java.lang.Double.doubleToLongBits( other.getDuration())); result = result && getCacheId() - .equals(other.getCacheId()); + .equals(other.getCacheId()); result = result && getMime() .equals(other.getMime()); + result = result && getPublicUrl() + .equals(other.getPublicUrl()); return result; } @@ -25320,71 +25672,77 @@ public int hashCode() { } if (hasWaveformThumbnail()) { hash = (37 * hash) + WAVEFORM_THUMBNAIL_FIELD_NUMBER; - hash = (53 * hash) + getWaveformThumbnail().hashCode(); + hash = (53 * hash) + getWaveformThumbnail().hashCode(); } hash = (37 * hash) + WIDTH_FIELD_NUMBER; hash = (53 * hash) + getWidth(); - hash = (37 * hash) + HEIGHT_FIELD_NUMBER; + hash = (37 * hash) + HEIGHT_FIELD_NUMBER; hash = (53 * hash) + getHeight(); - hash = (37 * hash) + DURATION_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + hash = (37 * hash) + DURATION_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( java.lang.Double.doubleToLongBits(getDuration())); hash = (37 * hash) + CACHE_ID_FIELD_NUMBER; - hash = (53 * hash) + getCacheId().hashCode(); + hash = (53 * hash) + getCacheId().hashCode(); hash = (37 * hash) + MIME_FIELD_NUMBER; hash = (53 * hash) + getMime().hashCode(); + hash = (37 * hash) + PUBLIC_URL_FIELD_NUMBER; + hash = (53 * hash) + getPublicUrl().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } - public static net.iGap.proto.ProtoGlobal.File parseFrom( + public static net.iGap.proto.ProtoGlobal.File parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static net.iGap.proto.ProtoGlobal.File parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) + return PARSER.parseFrom(data); + } + + public static net.iGap.proto.ProtoGlobal.File parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); - } - public static net.iGap.proto.ProtoGlobal.File parseFrom(byte[] data) + } + + public static net.iGap.proto.ProtoGlobal.File parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); + return PARSER.parseFrom(data); } public static net.iGap.proto.ProtoGlobal.File parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static net.iGap.proto.ProtoGlobal.File parseFrom(java.io.InputStream input) + + public static net.iGap.proto.ProtoGlobal.File parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static net.iGap.proto.ProtoGlobal.File parseFrom( + .parseWithIOException(PARSER, input); + } + + public static net.iGap.proto.ProtoGlobal.File parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static net.iGap.proto.ProtoGlobal.File parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); + .parseDelimitedWithIOException(PARSER, input); } public static net.iGap.proto.ProtoGlobal.File parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static net.iGap.proto.ProtoGlobal.File parseFrom( - com.google.protobuf.CodedInputStream input) + com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); @@ -25394,18 +25752,19 @@ public static net.iGap.proto.ProtoGlobal.File parseFrom( com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); + .parseWithIOException(PARSER, input, extensionRegistry); } - public Builder newBuilderForType() { return newBuilder(); } + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); + return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(net.iGap.proto.ProtoGlobal.File prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - public Builder toBuilder() { - return this == DEFAULT_INSTANCE + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @@ -25419,22 +25778,22 @@ protected Builder newBuilderForType( * Protobuf type {@code proto.File} */ public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:proto.File) - net.iGap.proto.ProtoGlobal.FileOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_File_descriptor; + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:proto.File) + net.iGap.proto.ProtoGlobal.FileOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return net.iGap.proto.ProtoGlobal.internal_static_proto_File_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_File_fieldAccessorTable + internalGetFieldAccessorTable() { + return net.iGap.proto.ProtoGlobal.internal_static_proto_File_fieldAccessorTable .ensureFieldAccessorsInitialized( net.iGap.proto.ProtoGlobal.File.class, net.iGap.proto.ProtoGlobal.File.Builder.class); } - // Construct using net.iGap.proto.ProtoGlobal.File.newBuilder() + // Construct using net.iGap.proto.ProtoGlobal.File.newBuilder() private Builder() { maybeForceBuilderInitialization(); } @@ -25466,41 +25825,43 @@ public Builder clear() { if (smallThumbnailBuilder_ == null) { smallThumbnail_ = null; } else { - smallThumbnail_ = null; + smallThumbnail_ = null; smallThumbnailBuilder_ = null; } if (waveformThumbnailBuilder_ == null) { - waveformThumbnail_ = null; + waveformThumbnail_ = null; } else { - waveformThumbnail_ = null; - waveformThumbnailBuilder_ = null; + waveformThumbnail_ = null; + waveformThumbnailBuilder_ = null; } - width_ = 0; + width_ = 0; - height_ = 0; + height_ = 0; - duration_ = 0D; + duration_ = 0D; - cacheId_ = ""; + cacheId_ = ""; - mime_ = ""; + mime_ = ""; - return this; - } + publicUrl_ = ""; - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_File_descriptor; + return this; } - public net.iGap.proto.ProtoGlobal.File getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.File.getDefaultInstance(); + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return net.iGap.proto.ProtoGlobal.internal_static_proto_File_descriptor; + } + + public net.iGap.proto.ProtoGlobal.File getDefaultInstanceForType() { + return net.iGap.proto.ProtoGlobal.File.getDefaultInstance(); } public net.iGap.proto.ProtoGlobal.File build() { - net.iGap.proto.ProtoGlobal.File result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); + net.iGap.proto.ProtoGlobal.File result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); } return result; } @@ -25520,7 +25881,7 @@ public net.iGap.proto.ProtoGlobal.File buildPartial() { } else { result.smallThumbnail_ = smallThumbnailBuilder_.build(); } - if (waveformThumbnailBuilder_ == null) { + if (waveformThumbnailBuilder_ == null) { result.waveformThumbnail_ = waveformThumbnail_; } else { result.waveformThumbnail_ = waveformThumbnailBuilder_.build(); @@ -25530,6 +25891,7 @@ public net.iGap.proto.ProtoGlobal.File buildPartial() { result.duration_ = duration_; result.cacheId_ = cacheId_; result.mime_ = mime_; + result.publicUrl_ = publicUrl_; onBuilt(); return result; } @@ -25551,19 +25913,20 @@ public Builder clearOneof( return (Builder) super.clearOneof(oneof); } public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, Object value) { - return (Builder) super.setRepeatedField(field, index, value); + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, Object value) { + return (Builder) super.setRepeatedField(field, index, value); } public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - Object value) { - return (Builder) super.addRepeatedField(field, value); + com.google.protobuf.Descriptors.FieldDescriptor field, + Object value) { + return (Builder) super.addRepeatedField(field, value); } - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.File) { - return mergeFrom((net.iGap.proto.ProtoGlobal.File)other); - } else { + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof net.iGap.proto.ProtoGlobal.File) { + return mergeFrom((net.iGap.proto.ProtoGlobal.File) other); + } else { super.mergeFrom(other); return this; } @@ -25594,11 +25957,11 @@ public Builder mergeFrom(net.iGap.proto.ProtoGlobal.File other) { if (other.getWidth() != 0) { setWidth(other.getWidth()); } - if (other.getHeight() != 0) { - setHeight(other.getHeight()); - } - if (other.getDuration() != 0D) { - setDuration(other.getDuration()); + if (other.getHeight() != 0) { + setHeight(other.getHeight()); + } + if (other.getDuration() != 0D) { + setDuration(other.getDuration()); } if (!other.getCacheId().isEmpty()) { cacheId_ = other.cacheId_; @@ -25608,60 +25971,64 @@ public Builder mergeFrom(net.iGap.proto.ProtoGlobal.File other) { mime_ = other.mime_; onChanged(); } + if (!other.getPublicUrl().isEmpty()) { + publicUrl_ = other.publicUrl_; + onChanged(); + } onChanged(); return this; } public final boolean isInitialized() { - return true; + return true; } - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - net.iGap.proto.ProtoGlobal.File parsedMessage = null; - try { + net.iGap.proto.ProtoGlobal.File parsedMessage = null; + try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (net.iGap.proto.ProtoGlobal.File) e.getUnfinishedMessage(); - throw e.unwrapIOException(); + parsedMessage = (net.iGap.proto.ProtoGlobal.File) e.getUnfinishedMessage(); + throw e.unwrapIOException(); } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; } - return this; - } - private java.lang.Object token_ = ""; + private java.lang.Object token_ = ""; /** * optional string token = 1; */ public java.lang.String getToken() { - java.lang.Object ref = token_; + java.lang.Object ref = token_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); token_ = s; - return s; + return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** * optional string token = 1; */ public com.google.protobuf.ByteString - getTokenBytes() { + getTokenBytes() { java.lang.Object ref = token_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = + if (ref instanceof String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); - token_ = b; - return b; + token_ = b; + return b; } else { return (com.google.protobuf.ByteString) ref; } @@ -25674,7 +26041,7 @@ public Builder setToken( if (value == null) { throw new NullPointerException(); } - + token_ = value; onChanged(); return this; @@ -25683,54 +26050,54 @@ public Builder setToken( * optional string token = 1; */ public Builder clearToken() { - + token_ = getDefaultInstance().getToken(); - onChanged(); - return this; + onChanged(); + return this; } /** * optional string token = 1; */ public Builder setTokenBytes( - com.google.protobuf.ByteString value) { + com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - token_ = value; - onChanged(); - return this; + } + checkByteStringIsUtf8(value); + + token_ = value; + onChanged(); + return this; } - private java.lang.Object name_ = ""; + private java.lang.Object name_ = ""; /** * optional string name = 2; */ public java.lang.String getName() { java.lang.Object ref = name_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; - return s; + return s; } else { - return (java.lang.String) ref; + return (java.lang.String) ref; } } /** * optional string name = 2; */ public com.google.protobuf.ByteString - getNameBytes() { + getNameBytes() { java.lang.Object ref = name_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = + if (ref instanceof String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); - name_ = b; - return b; + name_ = b; + return b; } else { return (com.google.protobuf.ByteString) ref; } @@ -25743,7 +26110,7 @@ public Builder setName( if (value == null) { throw new NullPointerException(); } - + name_ = value; onChanged(); return this; @@ -25752,7 +26119,7 @@ public Builder setName( * optional string name = 2; */ public Builder clearName() { - + name_ = getDefaultInstance().getName(); onChanged(); return this; @@ -25766,7 +26133,7 @@ public Builder setNameBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - + name_ = value; onChanged(); return this; @@ -25783,34 +26150,36 @@ public long getSize() { * optional int64 size = 3; */ public Builder setSize(long value) { - - size_ = value; - onChanged(); - return this; + + size_ = value; + onChanged(); + return this; } - /** - * optional int64 size = 3; + + /** + * optional int64 size = 3; */ public Builder clearSize() { - - size_ = 0L; - onChanged(); - return this; + + size_ = 0L; + onChanged(); + return this; } - private net.iGap.proto.ProtoGlobal.Thumbnail largeThumbnail_ = null; + private net.iGap.proto.ProtoGlobal.Thumbnail largeThumbnail_ = null; private com.google.protobuf.SingleFieldBuilderV3< net.iGap.proto.ProtoGlobal.Thumbnail, net.iGap.proto.ProtoGlobal.Thumbnail.Builder, net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder> largeThumbnailBuilder_; /** * optional .proto.Thumbnail large_thumbnail = 4; */ public boolean hasLargeThumbnail() { - return largeThumbnailBuilder_ != null || largeThumbnail_ != null; + return largeThumbnailBuilder_ != null || largeThumbnail_ != null; } - /** - * optional .proto.Thumbnail large_thumbnail = 4; - */ - public net.iGap.proto.ProtoGlobal.Thumbnail getLargeThumbnail() { + + /** + * optional .proto.Thumbnail large_thumbnail = 4; + */ + public net.iGap.proto.ProtoGlobal.Thumbnail getLargeThumbnail() { if (largeThumbnailBuilder_ == null) { return largeThumbnail_ == null ? net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : largeThumbnail_; } else { @@ -25822,13 +26191,13 @@ public net.iGap.proto.ProtoGlobal.Thumbnail getLargeThumbnail() { */ public Builder setLargeThumbnail(net.iGap.proto.ProtoGlobal.Thumbnail value) { if (largeThumbnailBuilder_ == null) { - if (value == null) { + if (value == null) { throw new NullPointerException(); } largeThumbnail_ = value; onChanged(); } else { - largeThumbnailBuilder_.setMessage(value); + largeThumbnailBuilder_.setMessage(value); } return this; @@ -25840,12 +26209,12 @@ public Builder setLargeThumbnail( net.iGap.proto.ProtoGlobal.Thumbnail.Builder builderForValue) { if (largeThumbnailBuilder_ == null) { largeThumbnail_ = builderForValue.build(); - onChanged(); + onChanged(); } else { - largeThumbnailBuilder_.setMessage(builderForValue.build()); + largeThumbnailBuilder_.setMessage(builderForValue.build()); } - return this; + return this; } /** * optional .proto.Thumbnail large_thumbnail = 4; @@ -25871,51 +26240,54 @@ public Builder mergeLargeThumbnail(net.iGap.proto.ProtoGlobal.Thumbnail value) { public Builder clearLargeThumbnail() { if (largeThumbnailBuilder_ == null) { largeThumbnail_ = null; - onChanged(); + onChanged(); } else { - largeThumbnail_ = null; - largeThumbnailBuilder_ = null; + largeThumbnail_ = null; + largeThumbnailBuilder_ = null; } - return this; - } - /** - * optional .proto.Thumbnail large_thumbnail = 4; + return this; + } + + /** + * optional .proto.Thumbnail large_thumbnail = 4; */ public net.iGap.proto.ProtoGlobal.Thumbnail.Builder getLargeThumbnailBuilder() { - - onChanged(); - return getLargeThumbnailFieldBuilder().getBuilder(); + + onChanged(); + return getLargeThumbnailFieldBuilder().getBuilder(); } - /** - * optional .proto.Thumbnail large_thumbnail = 4; + + /** + * optional .proto.Thumbnail large_thumbnail = 4; */ public net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder getLargeThumbnailOrBuilder() { - if (largeThumbnailBuilder_ != null) { - return largeThumbnailBuilder_.getMessageOrBuilder(); + if (largeThumbnailBuilder_ != null) { + return largeThumbnailBuilder_.getMessageOrBuilder(); } else { return largeThumbnail_ == null ? - net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : largeThumbnail_; - } + net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : largeThumbnail_; + } } - /** - * optional .proto.Thumbnail large_thumbnail = 4; - */ - private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.Thumbnail, net.iGap.proto.ProtoGlobal.Thumbnail.Builder, net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder> - getLargeThumbnailFieldBuilder() { - if (largeThumbnailBuilder_ == null) { + + /** + * optional .proto.Thumbnail large_thumbnail = 4; + */ + private com.google.protobuf.SingleFieldBuilderV3< + net.iGap.proto.ProtoGlobal.Thumbnail, net.iGap.proto.ProtoGlobal.Thumbnail.Builder, net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder> + getLargeThumbnailFieldBuilder() { + if (largeThumbnailBuilder_ == null) { largeThumbnailBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< net.iGap.proto.ProtoGlobal.Thumbnail, net.iGap.proto.ProtoGlobal.Thumbnail.Builder, net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder>( getLargeThumbnail(), getParentForChildren(), isClean()); - largeThumbnail_ = null; + largeThumbnail_ = null; + } + return largeThumbnailBuilder_; } - return largeThumbnailBuilder_; - } - private net.iGap.proto.ProtoGlobal.Thumbnail smallThumbnail_ = null; + private net.iGap.proto.ProtoGlobal.Thumbnail smallThumbnail_ = null; private com.google.protobuf.SingleFieldBuilderV3< net.iGap.proto.ProtoGlobal.Thumbnail, net.iGap.proto.ProtoGlobal.Thumbnail.Builder, net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder> smallThumbnailBuilder_; /** @@ -25924,10 +26296,11 @@ public net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder getLargeThumbnailOrBuilder( public boolean hasSmallThumbnail() { return smallThumbnailBuilder_ != null || smallThumbnail_ != null; } - /** - * optional .proto.Thumbnail small_thumbnail = 5; - */ - public net.iGap.proto.ProtoGlobal.Thumbnail getSmallThumbnail() { + + /** + * optional .proto.Thumbnail small_thumbnail = 5; + */ + public net.iGap.proto.ProtoGlobal.Thumbnail getSmallThumbnail() { if (smallThumbnailBuilder_ == null) { return smallThumbnail_ == null ? net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : smallThumbnail_; } else { @@ -25939,13 +26312,13 @@ public net.iGap.proto.ProtoGlobal.Thumbnail getSmallThumbnail() { */ public Builder setSmallThumbnail(net.iGap.proto.ProtoGlobal.Thumbnail value) { if (smallThumbnailBuilder_ == null) { - if (value == null) { + if (value == null) { throw new NullPointerException(); } smallThumbnail_ = value; - onChanged(); + onChanged(); } else { - smallThumbnailBuilder_.setMessage(value); + smallThumbnailBuilder_.setMessage(value); } return this; @@ -25957,9 +26330,9 @@ public Builder setSmallThumbnail( net.iGap.proto.ProtoGlobal.Thumbnail.Builder builderForValue) { if (smallThumbnailBuilder_ == null) { smallThumbnail_ = builderForValue.build(); - onChanged(); + onChanged(); } else { - smallThumbnailBuilder_.setMessage(builderForValue.build()); + smallThumbnailBuilder_.setMessage(builderForValue.build()); } return this; @@ -25988,51 +26361,54 @@ public Builder mergeSmallThumbnail(net.iGap.proto.ProtoGlobal.Thumbnail value) { public Builder clearSmallThumbnail() { if (smallThumbnailBuilder_ == null) { smallThumbnail_ = null; - onChanged(); + onChanged(); } else { - smallThumbnail_ = null; + smallThumbnail_ = null; smallThumbnailBuilder_ = null; } - return this; + return this; } - /** + + /** * optional .proto.Thumbnail small_thumbnail = 5; */ public net.iGap.proto.ProtoGlobal.Thumbnail.Builder getSmallThumbnailBuilder() { - - onChanged(); - return getSmallThumbnailFieldBuilder().getBuilder(); + + onChanged(); + return getSmallThumbnailFieldBuilder().getBuilder(); } - /** - * optional .proto.Thumbnail small_thumbnail = 5; + + /** + * optional .proto.Thumbnail small_thumbnail = 5; */ - public net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder getSmallThumbnailOrBuilder() { - if (smallThumbnailBuilder_ != null) { - return smallThumbnailBuilder_.getMessageOrBuilder(); + public net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder getSmallThumbnailOrBuilder() { + if (smallThumbnailBuilder_ != null) { + return smallThumbnailBuilder_.getMessageOrBuilder(); } else { return smallThumbnail_ == null ? - net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : smallThumbnail_; + net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : smallThumbnail_; + } } - } - /** - * optional .proto.Thumbnail small_thumbnail = 5; - */ - private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.Thumbnail, net.iGap.proto.ProtoGlobal.Thumbnail.Builder, net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder> - getSmallThumbnailFieldBuilder() { - if (smallThumbnailBuilder_ == null) { + + /** + * optional .proto.Thumbnail small_thumbnail = 5; + */ + private com.google.protobuf.SingleFieldBuilderV3< + net.iGap.proto.ProtoGlobal.Thumbnail, net.iGap.proto.ProtoGlobal.Thumbnail.Builder, net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder> + getSmallThumbnailFieldBuilder() { + if (smallThumbnailBuilder_ == null) { smallThumbnailBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< net.iGap.proto.ProtoGlobal.Thumbnail, net.iGap.proto.ProtoGlobal.Thumbnail.Builder, net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder>( getSmallThumbnail(), getParentForChildren(), isClean()); - smallThumbnail_ = null; + smallThumbnail_ = null; + } + return smallThumbnailBuilder_; } - return smallThumbnailBuilder_; - } - private net.iGap.proto.ProtoGlobal.Thumbnail waveformThumbnail_ = null; + private net.iGap.proto.ProtoGlobal.Thumbnail waveformThumbnail_ = null; private com.google.protobuf.SingleFieldBuilderV3< net.iGap.proto.ProtoGlobal.Thumbnail, net.iGap.proto.ProtoGlobal.Thumbnail.Builder, net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder> waveformThumbnailBuilder_; /** @@ -26041,10 +26417,11 @@ public net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder getSmallThumbnailOrBuilder( public boolean hasWaveformThumbnail() { return waveformThumbnailBuilder_ != null || waveformThumbnail_ != null; } - /** - * optional .proto.Thumbnail waveform_thumbnail = 6; - */ - public net.iGap.proto.ProtoGlobal.Thumbnail getWaveformThumbnail() { + + /** + * optional .proto.Thumbnail waveform_thumbnail = 6; + */ + public net.iGap.proto.ProtoGlobal.Thumbnail getWaveformThumbnail() { if (waveformThumbnailBuilder_ == null) { return waveformThumbnail_ == null ? net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : waveformThumbnail_; } else { @@ -26056,13 +26433,13 @@ public net.iGap.proto.ProtoGlobal.Thumbnail getWaveformThumbnail() { */ public Builder setWaveformThumbnail(net.iGap.proto.ProtoGlobal.Thumbnail value) { if (waveformThumbnailBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); + if (value == null) { + throw new NullPointerException(); } waveformThumbnail_ = value; - onChanged(); + onChanged(); } else { - waveformThumbnailBuilder_.setMessage(value); + waveformThumbnailBuilder_.setMessage(value); } return this; @@ -26074,9 +26451,9 @@ public Builder setWaveformThumbnail( net.iGap.proto.ProtoGlobal.Thumbnail.Builder builderForValue) { if (waveformThumbnailBuilder_ == null) { waveformThumbnail_ = builderForValue.build(); - onChanged(); + onChanged(); } else { - waveformThumbnailBuilder_.setMessage(builderForValue.build()); + waveformThumbnailBuilder_.setMessage(builderForValue.build()); } return this; @@ -26105,40 +26482,43 @@ public Builder mergeWaveformThumbnail(net.iGap.proto.ProtoGlobal.Thumbnail value public Builder clearWaveformThumbnail() { if (waveformThumbnailBuilder_ == null) { waveformThumbnail_ = null; - onChanged(); + onChanged(); } else { - waveformThumbnail_ = null; + waveformThumbnail_ = null; waveformThumbnailBuilder_ = null; } - return this; + return this; } - /** + + /** * optional .proto.Thumbnail waveform_thumbnail = 6; */ public net.iGap.proto.ProtoGlobal.Thumbnail.Builder getWaveformThumbnailBuilder() { - - onChanged(); + + onChanged(); return getWaveformThumbnailFieldBuilder().getBuilder(); } - /** - * optional .proto.Thumbnail waveform_thumbnail = 6; + + /** + * optional .proto.Thumbnail waveform_thumbnail = 6; */ - public net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder getWaveformThumbnailOrBuilder() { + public net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder getWaveformThumbnailOrBuilder() { if (waveformThumbnailBuilder_ != null) { - return waveformThumbnailBuilder_.getMessageOrBuilder(); + return waveformThumbnailBuilder_.getMessageOrBuilder(); } else { return waveformThumbnail_ == null ? - net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : waveformThumbnail_; + net.iGap.proto.ProtoGlobal.Thumbnail.getDefaultInstance() : waveformThumbnail_; } - } - /** - * optional .proto.Thumbnail waveform_thumbnail = 6; - */ - private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.Thumbnail, net.iGap.proto.ProtoGlobal.Thumbnail.Builder, net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder> - getWaveformThumbnailFieldBuilder() { - if (waveformThumbnailBuilder_ == null) { + } + + /** + * optional .proto.Thumbnail waveform_thumbnail = 6; + */ + private com.google.protobuf.SingleFieldBuilderV3< + net.iGap.proto.ProtoGlobal.Thumbnail, net.iGap.proto.ProtoGlobal.Thumbnail.Builder, net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder> + getWaveformThumbnailFieldBuilder() { + if (waveformThumbnailBuilder_ == null) { waveformThumbnailBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< net.iGap.proto.ProtoGlobal.Thumbnail, net.iGap.proto.ProtoGlobal.Thumbnail.Builder, net.iGap.proto.ProtoGlobal.ThumbnailOrBuilder>( getWaveformThumbnail(), @@ -26160,7 +26540,7 @@ public int getWidth() { * optional int32 width = 7; */ public Builder setWidth(int value) { - + width_ = value; onChanged(); return this; @@ -26169,7 +26549,7 @@ public Builder setWidth(int value) { * optional int32 width = 7; */ public Builder clearWidth() { - + width_ = 0; onChanged(); return this; @@ -26186,7 +26566,7 @@ public int getHeight() { * optional int32 height = 8; */ public Builder setHeight(int value) { - + height_ = value; onChanged(); return this; @@ -26195,7 +26575,7 @@ public Builder setHeight(int value) { * optional int32 height = 8; */ public Builder clearHeight() { - + height_ = 0; onChanged(); return this; @@ -26212,34 +26592,36 @@ public double getDuration() { * optional double duration = 9; */ public Builder setDuration(double value) { - - duration_ = value; - onChanged(); - return this; + + duration_ = value; + onChanged(); + return this; } - /** - * optional double duration = 9; - */ - public Builder clearDuration() { - - duration_ = 0D; - onChanged(); - return this; + + /** + * optional double duration = 9; + */ + public Builder clearDuration() { + + duration_ = 0D; + onChanged(); + return this; } private java.lang.Object cacheId_ = ""; - /** - * optional string cache_id = 10; - */ - public java.lang.String getCacheId() { + + /** + * optional string cache_id = 10; + */ + public java.lang.String getCacheId() { java.lang.Object ref = cacheId_; - if (!(ref instanceof java.lang.String)) { + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - cacheId_ = s; - return s; - } else { + cacheId_ = s; + return s; + } else { return (java.lang.String) ref; } } @@ -26250,9 +26632,9 @@ public java.lang.String getCacheId() { getCacheIdBytes() { java.lang.Object ref = cacheId_; if (ref instanceof String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); cacheId_ = b; return b; } else { @@ -26267,7 +26649,7 @@ public Builder setCacheId( if (value == null) { throw new NullPointerException(); } - + cacheId_ = value; onChanged(); return this; @@ -26276,7 +26658,7 @@ public Builder setCacheId( * optional string cache_id = 10; */ public Builder clearCacheId() { - + cacheId_ = getDefaultInstance().getCacheId(); onChanged(); return this; @@ -26285,30 +26667,31 @@ public Builder clearCacheId() { * optional string cache_id = 10; */ public Builder setCacheIdBytes( - com.google.protobuf.ByteString value) { + com.google.protobuf.ByteString value) { if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - cacheId_ = value; - onChanged(); + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + cacheId_ = value; + onChanged(); return this; } - private java.lang.Object mime_ = ""; - /** - * optional string mime = 11; - */ + private java.lang.Object mime_ = ""; + + /** + * optional string mime = 11; + */ public java.lang.String getMime() { java.lang.Object ref = mime_; - if (!(ref instanceof java.lang.String)) { + if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - mime_ = s; - return s; - } else { + mime_ = s; + return s; + } else { return (java.lang.String) ref; } } @@ -26317,11 +26700,11 @@ public java.lang.String getMime() { */ public com.google.protobuf.ByteString getMimeBytes() { - java.lang.Object ref = mime_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = + java.lang.Object ref = mime_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); + (java.lang.String) ref); mime_ = b; return b; } else { @@ -26336,7 +26719,7 @@ public Builder setMime( if (value == null) { throw new NullPointerException(); } - + mime_ = value; onChanged(); return this; @@ -26345,37 +26728,113 @@ public Builder setMime( * optional string mime = 11; */ public Builder clearMime() { - - mime_ = getDefaultInstance().getMime(); - onChanged(); - return this; + + mime_ = getDefaultInstance().getMime(); + onChanged(); + return this; } - /** - * optional string mime = 11; - */ - public Builder setMimeBytes( + + /** + * optional string mime = 11; + */ + public Builder setMimeBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + mime_ = value; + onChanged(); + return this; + } + + private java.lang.Object publicUrl_ = ""; + + /** + * optional string public_url = 12; + */ + public java.lang.String getPublicUrl() { + java.lang.Object ref = publicUrl_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + publicUrl_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + + /** + * optional string public_url = 12; + */ + public com.google.protobuf.ByteString + getPublicUrlBytes() { + java.lang.Object ref = publicUrl_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + publicUrl_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + /** + * optional string public_url = 12; + */ + public Builder setPublicUrl( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + publicUrl_ = value; + onChanged(); + return this; + } + + /** + * optional string public_url = 12; + */ + public Builder clearPublicUrl() { + + publicUrl_ = getDefaultInstance().getPublicUrl(); + onChanged(); + return this; + } + + /** + * optional string public_url = 12; + */ + public Builder setPublicUrlBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - mime_ = value; + } + checkByteStringIsUtf8(value); + + publicUrl_ = value; onChanged(); - return this; - } - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return this; + return this; } - public final Builder mergeUnknownFields( + public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { - return this; - } + return this; + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return this; + } - // @@protoc_insertion_point(builder_scope:proto.File) + // @@protoc_insertion_point(builder_scope:proto.File) } // @@protoc_insertion_point(class_scope:proto.File) @@ -26385,16 +26844,16 @@ public final Builder mergeUnknownFields( } public static net.iGap.proto.ProtoGlobal.File getDefaultInstance() { - return DEFAULT_INSTANCE; + return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser + private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { - public File parsePartialFrom( + public File parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { - return new File(input, extensionRegistry); + return new File(input, extensionRegistry); } }; @@ -26413,16 +26872,17 @@ public net.iGap.proto.ProtoGlobal.File getDefaultInstanceForType() { } - public interface WallpaperOrBuilder extends + public interface WallpaperOrBuilder extends // @@protoc_insertion_point(interface_extends:proto.Wallpaper) - com.google.protobuf.MessageOrBuilder { + com.google.protobuf.MessageOrBuilder { - /** - * optional .proto.File file = 1; - */ - boolean hasFile(); - /** + /** * optional .proto.File file = 1; + */ + boolean hasFile(); + + /** + * optional .proto.File file = 1; */ net.iGap.proto.ProtoGlobal.File getFile(); /** @@ -26467,25 +26927,25 @@ private Wallpaper( this(); int mutable_bitField0_ = 0; try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { case 0: done = true; break; - default: { - if (!input.skipField(tag)) { - done = true; - } - break; - } - case 10: { + default: { + if (!input.skipField(tag)) { + done = true; + } + break; + } + case 10: { net.iGap.proto.ProtoGlobal.File.Builder subBuilder = null; if (file_ != null) { subBuilder = file_.toBuilder(); } - file_ = input.readMessage(net.iGap.proto.ProtoGlobal.File.parser(), extensionRegistry); + file_ = input.readMessage(net.iGap.proto.ProtoGlobal.File.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(file_); file_ = subBuilder.buildPartial(); @@ -26496,78 +26956,84 @@ private Wallpaper( case 18: { java.lang.String s = input.readStringRequireUtf8(); - color_ = s; - break; + color_ = s; + break; } - } + } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); + throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); } finally { makeExtensionsImmutable(); } } - public static final com.google.protobuf.Descriptors.Descriptor + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return net.iGap.proto.ProtoGlobal.internal_static_proto_Wallpaper_descriptor; - } + } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Wallpaper_fieldAccessorTable + return net.iGap.proto.ProtoGlobal.internal_static_proto_Wallpaper_fieldAccessorTable .ensureFieldAccessorsInitialized( net.iGap.proto.ProtoGlobal.Wallpaper.class, net.iGap.proto.ProtoGlobal.Wallpaper.Builder.class); - } + } - public static final int FILE_FIELD_NUMBER = 1; - private net.iGap.proto.ProtoGlobal.File file_; - /** - * optional .proto.File file = 1; + public static final int FILE_FIELD_NUMBER = 1; + private net.iGap.proto.ProtoGlobal.File file_; + + /** + * optional .proto.File file = 1; */ public boolean hasFile() { - return file_ != null; - } - /** - * optional .proto.File file = 1; - */ - public net.iGap.proto.ProtoGlobal.File getFile() { - return file_ == null ? net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : file_; + return file_ != null; } - /** - * optional .proto.File file = 1; - */ - public net.iGap.proto.ProtoGlobal.FileOrBuilder getFileOrBuilder() { - return getFile(); + + /** + * optional .proto.File file = 1; + */ + public net.iGap.proto.ProtoGlobal.File getFile() { + return file_ == null ? net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : file_; + } + + /** + * optional .proto.File file = 1; + */ + public net.iGap.proto.ProtoGlobal.FileOrBuilder getFileOrBuilder() { + return getFile(); } public static final int COLOR_FIELD_NUMBER = 2; private volatile java.lang.Object color_; - /** - * optional string color = 2; + + /** + * optional string color = 2; */ public java.lang.String getColor() { java.lang.Object ref = color_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); color_ = s; - return s; + return s; } } - /** + + /** * optional string color = 2; */ public com.google.protobuf.ByteString getColorBytes() { java.lang.Object ref = color_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = + com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); color_ = b; @@ -26597,23 +27063,23 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) } } - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; size = 0; if (file_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getFile()); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, getFile()); } if (!getColorBytes().isEmpty()) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, color_); + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, color_); + } + memoizedSize = size; + return size; } - memoizedSize = size; - return size; - } - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { @@ -26635,20 +27101,20 @@ public boolean equals(final java.lang.Object obj) { return result; } - @java.lang.Override - public int hashCode() { + @java.lang.Override + public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptorForType().hashCode(); - if (hasFile()) { - hash = (37 * hash) + FILE_FIELD_NUMBER; + if (hasFile()) { + hash = (37 * hash) + FILE_FIELD_NUMBER; hash = (53 * hash) + getFile().hashCode(); } hash = (37 * hash) + COLOR_FIELD_NUMBER; hash = (53 * hash) + getColor().hashCode(); - hash = (29 * hash) + unknownFields.hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } @@ -26656,65 +27122,70 @@ public int hashCode() { public static net.iGap.proto.ProtoGlobal.Wallpaper parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); + return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.Wallpaper parseFrom( + + public static net.iGap.proto.ProtoGlobal.Wallpaper parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } public static net.iGap.proto.ProtoGlobal.Wallpaper parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); + return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.Wallpaper parseFrom( + + public static net.iGap.proto.ProtoGlobal.Wallpaper parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static net.iGap.proto.ProtoGlobal.Wallpaper parseFrom(java.io.InputStream input) - throws java.io.IOException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static net.iGap.proto.ProtoGlobal.Wallpaper parseFrom(java.io.InputStream input) + throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); - } - public static net.iGap.proto.ProtoGlobal.Wallpaper parseFrom( - java.io.InputStream input, + } + + public static net.iGap.proto.ProtoGlobal.Wallpaper parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); + .parseWithIOException(PARSER, input, extensionRegistry); } public static net.iGap.proto.ProtoGlobal.Wallpaper parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.Wallpaper parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) + + public static net.iGap.proto.ProtoGlobal.Wallpaper parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static net.iGap.proto.ProtoGlobal.Wallpaper parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); + .parseWithIOException(PARSER, input); } public static net.iGap.proto.ProtoGlobal.Wallpaper parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); + return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(net.iGap.proto.ProtoGlobal.Wallpaper prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); @@ -26726,27 +27197,27 @@ public Builder toBuilder() { @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); return builder; } /** * Protobuf type {@code proto.Wallpaper} */ public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:proto.Wallpaper) + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:proto.Wallpaper) net.iGap.proto.ProtoGlobal.WallpaperOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Wallpaper_descriptor; - } + return net.iGap.proto.ProtoGlobal.internal_static_proto_Wallpaper_descriptor; + } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return net.iGap.proto.ProtoGlobal.internal_static_proto_Wallpaper_fieldAccessorTable - .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.Wallpaper.class, net.iGap.proto.ProtoGlobal.Wallpaper.Builder.class); + .ensureFieldAccessorsInitialized( + net.iGap.proto.ProtoGlobal.Wallpaper.class, net.iGap.proto.ProtoGlobal.Wallpaper.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.Wallpaper.newBuilder() @@ -26757,37 +27228,39 @@ private Builder() { private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } + maybeForceBuilderInitialization(); } - public Builder clear() { - super.clear(); - if (fileBuilder_ == null) { - file_ = null; - } else { - file_ = null; - fileBuilder_ = null; + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } } - color_ = ""; - return this; - } + public Builder clear() { + super.clear(); + if (fileBuilder_ == null) { + file_ = null; + } else { + file_ = null; + fileBuilder_ = null; + } + color_ = ""; - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Wallpaper_descriptor; + return this; + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return net.iGap.proto.ProtoGlobal.internal_static_proto_Wallpaper_descriptor; } public net.iGap.proto.ProtoGlobal.Wallpaper getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.Wallpaper.getDefaultInstance(); + return net.iGap.proto.ProtoGlobal.Wallpaper.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.Wallpaper build() { - net.iGap.proto.ProtoGlobal.Wallpaper result = buildPartial(); + public net.iGap.proto.ProtoGlobal.Wallpaper build() { + net.iGap.proto.ProtoGlobal.Wallpaper result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } @@ -26820,20 +27293,23 @@ public Builder clearField( } public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return (Builder) super.clearOneof(oneof); + return (Builder) super.clearOneof(oneof); } - public Builder setRepeatedField( + + public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, Object value) { - return (Builder) super.setRepeatedField(field, index, value); - } - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, Object value) { return (Builder) super.addRepeatedField(field, value); - } - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.Wallpaper) { + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof net.iGap.proto.ProtoGlobal.Wallpaper) { return mergeFrom((net.iGap.proto.ProtoGlobal.Wallpaper)other); } else { super.mergeFrom(other); @@ -26848,10 +27324,10 @@ public Builder mergeFrom(net.iGap.proto.ProtoGlobal.Wallpaper other) { } if (!other.getColor().isEmpty()) { color_ = other.color_; - onChanged(); + onChanged(); } - onChanged(); - return this; + onChanged(); + return this; } public final boolean isInitialized() { @@ -26861,15 +27337,15 @@ public final boolean isInitialized() { public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { + throws java.io.IOException { net.iGap.proto.ProtoGlobal.Wallpaper parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (net.iGap.proto.ProtoGlobal.Wallpaper) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { mergeFrom(parsedMessage); } } @@ -26877,12 +27353,13 @@ public Builder mergeFrom( } private net.iGap.proto.ProtoGlobal.File file_ = null; - private com.google.protobuf.SingleFieldBuilderV3< + private com.google.protobuf.SingleFieldBuilderV3< net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder> fileBuilder_; - /** - * optional .proto.File file = 1; - */ - public boolean hasFile() { + + /** + * optional .proto.File file = 1; + */ + public boolean hasFile() { return fileBuilder_ != null || file_ != null; } /** @@ -26892,7 +27369,7 @@ public net.iGap.proto.ProtoGlobal.File getFile() { if (fileBuilder_ == null) { return file_ == null ? net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : file_; } else { - return fileBuilder_.getMessage(); + return fileBuilder_.getMessage(); } } /** @@ -26900,8 +27377,8 @@ public net.iGap.proto.ProtoGlobal.File getFile() { */ public Builder setFile(net.iGap.proto.ProtoGlobal.File value) { if (fileBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); + if (value == null) { + throw new NullPointerException(); } file_ = value; onChanged(); @@ -26911,17 +27388,18 @@ public Builder setFile(net.iGap.proto.ProtoGlobal.File value) { return this; } - /** - * optional .proto.File file = 1; - */ - public Builder setFile( - net.iGap.proto.ProtoGlobal.File.Builder builderForValue) { - if (fileBuilder_ == null) { - file_ = builderForValue.build(); - onChanged(); - } else { - fileBuilder_.setMessage(builderForValue.build()); - } + + /** + * optional .proto.File file = 1; + */ + public Builder setFile( + net.iGap.proto.ProtoGlobal.File.Builder builderForValue) { + if (fileBuilder_ == null) { + file_ = builderForValue.build(); + onChanged(); + } else { + fileBuilder_.setMessage(builderForValue.build()); + } return this; } @@ -26955,24 +27433,26 @@ public Builder clearFile() { fileBuilder_ = null; } - return this; + return this; } - /** - * optional .proto.File file = 1; + + /** + * optional .proto.File file = 1; */ public net.iGap.proto.ProtoGlobal.File.Builder getFileBuilder() { - - onChanged(); - return getFileFieldBuilder().getBuilder(); + + onChanged(); + return getFileFieldBuilder().getBuilder(); } - /** + + /** * optional .proto.File file = 1; */ public net.iGap.proto.ProtoGlobal.FileOrBuilder getFileOrBuilder() { - if (fileBuilder_ != null) { - return fileBuilder_.getMessageOrBuilder(); - } else { - return file_ == null ? + if (fileBuilder_ != null) { + return fileBuilder_.getMessageOrBuilder(); + } else { + return file_ == null ? net.iGap.proto.ProtoGlobal.File.getDefaultInstance() : file_; } } @@ -26980,20 +27460,20 @@ public net.iGap.proto.ProtoGlobal.FileOrBuilder getFileOrBuilder() { * optional .proto.File file = 1; */ private com.google.protobuf.SingleFieldBuilderV3< - net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder> + net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder> getFileFieldBuilder() { - if (fileBuilder_ == null) { - fileBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + if (fileBuilder_ == null) { + fileBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< net.iGap.proto.ProtoGlobal.File, net.iGap.proto.ProtoGlobal.File.Builder, net.iGap.proto.ProtoGlobal.FileOrBuilder>( - getFile(), - getParentForChildren(), + getFile(), + getParentForChildren(), isClean()); file_ = null; } return fileBuilder_; } - private java.lang.Object color_ = ""; + private java.lang.Object color_ = ""; /** * optional string color = 2; */ @@ -27001,7 +27481,7 @@ public java.lang.String getColor() { java.lang.Object ref = color_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); color_ = s; return s; @@ -27009,15 +27489,16 @@ public java.lang.String getColor() { return (java.lang.String) ref; } } - /** - * optional string color = 2; + + /** + * optional string color = 2; */ public com.google.protobuf.ByteString getColorBytes() { java.lang.Object ref = color_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); color_ = b; return b; @@ -27033,7 +27514,7 @@ public Builder setColor( if (value == null) { throw new NullPointerException(); } - + color_ = value; onChanged(); return this; @@ -27042,7 +27523,7 @@ public Builder setColor( * optional string color = 2; */ public Builder clearColor() { - + color_ = getDefaultInstance().getColor(); onChanged(); return this; @@ -27053,26 +27534,26 @@ public Builder clearColor() { public Builder setColorBytes( com.google.protobuf.ByteString value) { if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - color_ = value; - onChanged(); - return this; + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + color_ = value; + onChanged(); + return this; } public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { - return this; + return this; } - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return this; - } + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return this; + } - // @@protoc_insertion_point(builder_scope:proto.Wallpaper) + // @@protoc_insertion_point(builder_scope:proto.Wallpaper) } // @@protoc_insertion_point(class_scope:proto.Wallpaper) @@ -27087,11 +27568,11 @@ public static net.iGap.proto.ProtoGlobal.Wallpaper getDefaultInstance() { private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { - public Wallpaper parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new Wallpaper(input, extensionRegistry); + public Wallpaper parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new Wallpaper(input, extensionRegistry); } }; @@ -27119,8 +27600,8 @@ public interface PaginationOrBuilder extends */ int getOffset(); - /** - * optional uint32 limit = 2; + /** + * optional uint32 limit = 2; */ int getLimit(); } @@ -27170,28 +27651,29 @@ private Pagination( offset_ = input.readUInt32(); break; } - case 16: { + case 16: { - limit_ = input.readUInt32(); - break; + limit_ = input.readUInt32(); + break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); + throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); } finally { - makeExtensionsImmutable(); + makeExtensionsImmutable(); } } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Pagination_descriptor; - } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return net.iGap.proto.ProtoGlobal.internal_static_proto_Pagination_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return net.iGap.proto.ProtoGlobal.internal_static_proto_Pagination_fieldAccessorTable .ensureFieldAccessorsInitialized( @@ -27231,36 +27713,36 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (offset_ != 0) { output.writeUInt32(1, offset_); } - if (limit_ != 0) { - output.writeUInt32(2, limit_); + if (limit_ != 0) { + output.writeUInt32(2, limit_); } } public int getSerializedSize() { - int size = memoizedSize; + int size = memoizedSize; if (size != -1) return size; size = 0; - if (offset_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeUInt32Size(1, offset_); + if (offset_ != 0) { + size += com.google.protobuf.CodedOutputStream + .computeUInt32Size(1, offset_); } if (limit_ != 0) { - size += com.google.protobuf.CodedOutputStream + size += com.google.protobuf.CodedOutputStream .computeUInt32Size(2, limit_); } - memoizedSize = size; - return size; + memoizedSize = size; + return size; } - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof net.iGap.proto.ProtoGlobal.Pagination)) { - return super.equals(obj); + return super.equals(obj); } net.iGap.proto.ProtoGlobal.Pagination other = (net.iGap.proto.ProtoGlobal.Pagination) obj; @@ -27268,8 +27750,8 @@ public boolean equals(final java.lang.Object obj) { result = result && (getOffset() == other.getOffset()); result = result && (getLimit() - == other.getLimit()); - return result; + == other.getLimit()); + return result; } @java.lang.Override @@ -27278,80 +27760,86 @@ public int hashCode() { return memoizedHashCode; } int hash = 41; - hash = (19 * hash) + getDescriptorForType().hashCode(); + hash = (19 * hash) + getDescriptorForType().hashCode(); hash = (37 * hash) + OFFSET_FIELD_NUMBER; hash = (53 * hash) + getOffset(); hash = (37 * hash) + LIMIT_FIELD_NUMBER; hash = (53 * hash) + getLimit(); - hash = (29 * hash) + unknownFields.hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static net.iGap.proto.ProtoGlobal.Pagination parseFrom( com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.Pagination parseFrom( + + public static net.iGap.proto.ProtoGlobal.Pagination parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); } public static net.iGap.proto.ProtoGlobal.Pagination parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); + return PARSER.parseFrom(data); } - public static net.iGap.proto.ProtoGlobal.Pagination parseFrom( + + public static net.iGap.proto.ProtoGlobal.Pagination parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static net.iGap.proto.ProtoGlobal.Pagination parseFrom(java.io.InputStream input) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static net.iGap.proto.ProtoGlobal.Pagination parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); - } - public static net.iGap.proto.ProtoGlobal.Pagination parseFrom( - java.io.InputStream input, + } + + public static net.iGap.proto.ProtoGlobal.Pagination parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); + .parseWithIOException(PARSER, input, extensionRegistry); } public static net.iGap.proto.ProtoGlobal.Pagination parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } - public static net.iGap.proto.ProtoGlobal.Pagination parseDelimitedFrom( - java.io.InputStream input, + + public static net.iGap.proto.ProtoGlobal.Pagination parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static net.iGap.proto.ProtoGlobal.Pagination parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); + .parseWithIOException(PARSER, input); } public static net.iGap.proto.ProtoGlobal.Pagination parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); + return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(net.iGap.proto.ProtoGlobal.Pagination prototype) { + + public static Builder newBuilder(net.iGap.proto.ProtoGlobal.Pagination prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { @@ -27361,27 +27849,27 @@ public Builder toBuilder() { @java.lang.Override protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); return builder; } /** * Protobuf type {@code proto.Pagination} */ public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:proto.Pagination) - net.iGap.proto.ProtoGlobal.PaginationOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:proto.Pagination) + net.iGap.proto.ProtoGlobal.PaginationOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Pagination_descriptor; - } + return net.iGap.proto.ProtoGlobal.internal_static_proto_Pagination_descriptor; + } - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return net.iGap.proto.ProtoGlobal.internal_static_proto_Pagination_fieldAccessorTable - .ensureFieldAccessorsInitialized( - net.iGap.proto.ProtoGlobal.Pagination.class, net.iGap.proto.ProtoGlobal.Pagination.Builder.class); + .ensureFieldAccessorsInitialized( + net.iGap.proto.ProtoGlobal.Pagination.class, net.iGap.proto.ProtoGlobal.Pagination.Builder.class); } // Construct using net.iGap.proto.ProtoGlobal.Pagination.newBuilder() @@ -27389,36 +27877,38 @@ private Builder() { maybeForceBuilderInitialization(); } - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } } - } - public Builder clear() { - super.clear(); - offset_ = 0; - limit_ = 0; + public Builder clear() { + super.clear(); + offset_ = 0; - return this; - } + limit_ = 0; - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return net.iGap.proto.ProtoGlobal.internal_static_proto_Pagination_descriptor; + return this; + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return net.iGap.proto.ProtoGlobal.internal_static_proto_Pagination_descriptor; } public net.iGap.proto.ProtoGlobal.Pagination getDefaultInstanceForType() { - return net.iGap.proto.ProtoGlobal.Pagination.getDefaultInstance(); + return net.iGap.proto.ProtoGlobal.Pagination.getDefaultInstance(); } - public net.iGap.proto.ProtoGlobal.Pagination build() { - net.iGap.proto.ProtoGlobal.Pagination result = buildPartial(); + public net.iGap.proto.ProtoGlobal.Pagination build() { + net.iGap.proto.ProtoGlobal.Pagination result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } @@ -27447,20 +27937,23 @@ public Builder clearField( } public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return (Builder) super.clearOneof(oneof); + return (Builder) super.clearOneof(oneof); } - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, Object value) { - return (Builder) super.setRepeatedField(field, index, value); - } - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, Object value) { return (Builder) super.addRepeatedField(field, value); - } - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof net.iGap.proto.ProtoGlobal.Pagination) { + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof net.iGap.proto.ProtoGlobal.Pagination) { return mergeFrom((net.iGap.proto.ProtoGlobal.Pagination)other); } else { super.mergeFrom(other); @@ -27469,15 +27962,15 @@ public Builder mergeFrom(com.google.protobuf.Message other) { } public Builder mergeFrom(net.iGap.proto.ProtoGlobal.Pagination other) { - if (other == net.iGap.proto.ProtoGlobal.Pagination.getDefaultInstance()) return this; + if (other == net.iGap.proto.ProtoGlobal.Pagination.getDefaultInstance()) return this; if (other.getOffset() != 0) { setOffset(other.getOffset()); } if (other.getLimit() != 0) { - setLimit(other.getLimit()); + setLimit(other.getLimit()); } - onChanged(); - return this; + onChanged(); + return this; } public final boolean isInitialized() { @@ -27487,7 +27980,7 @@ public final boolean isInitialized() { public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { + throws java.io.IOException { net.iGap.proto.ProtoGlobal.Pagination parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); @@ -27513,7 +28006,7 @@ public int getOffset() { * optional uint32 offset = 1; */ public Builder setOffset(int value) { - + offset_ = value; onChanged(); return this; @@ -27522,7 +28015,7 @@ public Builder setOffset(int value) { * optional uint32 offset = 1; */ public Builder clearOffset() { - + offset_ = 0; onChanged(); return this; @@ -27539,7 +28032,7 @@ public int getLimit() { * optional uint32 limit = 2; */ public Builder setLimit(int value) { - + limit_ = value; onChanged(); return this; @@ -27548,23 +28041,24 @@ public Builder setLimit(int value) { * optional uint32 limit = 2; */ public Builder clearLimit() { - - limit_ = 0; - onChanged(); - return this; - } - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return this; - } - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return this; + limit_ = 0; + onChanged(); + return this; } + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return this; + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return this; + } + - // @@protoc_insertion_point(builder_scope:proto.Pagination) + // @@protoc_insertion_point(builder_scope:proto.Pagination) } // @@protoc_insertion_point(class_scope:proto.Pagination) @@ -27579,11 +28073,11 @@ public static net.iGap.proto.ProtoGlobal.Pagination getDefaultInstance() { private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { - public Pagination parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new Pagination(input, extensionRegistry); + public Pagination parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new Pagination(input, extensionRegistry); } }; @@ -27604,127 +28098,127 @@ public net.iGap.proto.ProtoGlobal.Pagination getDefaultInstanceForType() { private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_RoomMessageLocation_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_RoomMessageLocation_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_RoomMessageLog_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_RoomMessageLog_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_RoomMessageLog_TargetUser_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_RoomMessageLog_TargetUser_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_RoomMessageContact_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_RoomMessageContact_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_RoomMessageForwardFrom_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_RoomMessageForwardFrom_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_RegisteredUser_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_RegisteredUser_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_Avatar_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_Avatar_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_RoomMessage_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_RoomMessage_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_RoomMessage_Author_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_RoomMessage_Author_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_RoomMessage_Author_User_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_RoomMessage_Author_User_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_RoomMessage_Author_Room_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_RoomMessage_Author_Room_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_RoomMessage_ChannelExtra_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_RoomMessage_ChannelExtra_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_RoomDraft_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_RoomDraft_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_Room_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_Room_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_ChatRoom_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_ChatRoom_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_GroupRoom_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_GroupRoom_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_GroupRoom_PrivateExtra_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_GroupRoom_PrivateExtra_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_GroupRoom_PublicExtra_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_GroupRoom_PublicExtra_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_ChannelRoom_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_ChannelRoom_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_ChannelRoom_PrivateExtra_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_ChannelRoom_PrivateExtra_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_ChannelRoom_PublicExtra_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_ChannelRoom_PublicExtra_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_Thumbnail_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_Thumbnail_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_File_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_File_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_Wallpaper_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_proto_Wallpaper_fieldAccessorTable; + internal_static_proto_Wallpaper_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_proto_Pagination_descriptor; - private static final + private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_proto_Pagination_fieldAccessorTable; @@ -27818,24 +28312,24 @@ public net.iGap.proto.ProtoGlobal.Pagination getDefaultInstanceForType() { "articipants_count_limit_label\030\006 \001(\t\022\023\n\013d", "escription\030\007 \001(\t\022\024\n\014avatar_count\030\010 \001(\r\022\035" + "\n\006avatar\030\t \001(\0132\r.proto.Avatar\0224\n\rprivate" + - "_extra\030\n \001(\0132\035.proto.GroupRoom.PrivateEx" + + "_extra\030\n \001(\0132\035.proto.GroupRoom.PrivateEx" + "tra\0222\n\014public_extra\030\013 \001(\0132\034.proto.GroupR" + "oom.PublicExtra\0329\n\014PrivateExtra\022\023\n\013invit" + "e_link\030\001 \001(\t\022\024\n\014invite_token\030\002 \001(\t\032\037\n\013Pu" + "blicExtra\022\020\n\010username\030\001 \001(\t\")\n\004Type\022\020\n\014P" + "RIVATE_ROOM\020\000\022\017\n\013PUBLIC_ROOM\020\001\"7\n\004Role\022\n" + - "\n\006MEMBER\020\000\022\r\n\tMODERATOR\020\001\022\t\n\005ADMIN\020\002\022\t\n\005" + + "\n\006MEMBER\020\000\022\r\n\tMODERATOR\020\001\022\t\n\005ADMIN\020\002\022\t\n\005" + "OWNER\020\003\"\340\004\n\013ChannelRoom\022%\n\004type\030\001 \001(\0162\027.", - "proto.ChannelRoom.Type\022%\n\004role\030\002 \001(\0162\027.p" + - "roto.ChannelRoom.Role\022\032\n\022participants_co" + - "unt\030\003 \001(\r\022 \n\030participants_count_label\030\004 " + - "\001(\t\022\023\n\013description\030\005 \001(\t\022\024\n\014avatar_count" + - "\030\006 \001(\r\022\035\n\006avatar\030\007 \001(\0132\r.proto.Avatar\0226\n" + - "\rprivate_extra\030\010 \001(\0132\037.proto.ChannelRoom" + - ".PrivateExtra\0224\n\014public_extra\030\t \001(\0132\036.pr" + - "oto.ChannelRoom.PublicExtra\022\021\n\tsignature" + - "\030\n \001(\010\022\017\n\007seen_id\030\013 \001(\004\022\020\n\010verified\030\014 \001(" + - "\010\022\027\n\017reaction_status\030\r \001(\010\0329\n\014PrivateExt", + "proto.ChannelRoom.Type\022%\n\004role\030\002 \001(\0162\027.p" + + "roto.ChannelRoom.Role\022\032\n\022participants_co" + + "unt\030\003 \001(\r\022 \n\030participants_count_label\030\004 " + + "\001(\t\022\023\n\013description\030\005 \001(\t\022\024\n\014avatar_count" + + "\030\006 \001(\r\022\035\n\006avatar\030\007 \001(\0132\r.proto.Avatar\0226\n" + + "\rprivate_extra\030\010 \001(\0132\037.proto.ChannelRoom" + + ".PrivateExtra\0224\n\014public_extra\030\t \001(\0132\036.pr" + + "oto.ChannelRoom.PublicExtra\022\021\n\tsignature" + + "\030\n \001(\010\022\017\n\007seen_id\030\013 \001(\004\022\020\n\010verified\030\014 \001(" + + "\010\022\027\n\017reaction_status\030\r \001(\010\0329\n\014PrivateExt", "ra\022\023\n\013invite_link\030\001 \001(\t\022\024\n\014invite_token\030" + "\002 \001(\t\032\037\n\013PublicExtra\022\020\n\010username\030\001 \001(\t\")" + "\n\004Type\022\020\n\014PRIVATE_ROOM\020\000\022\017\n\013PUBLIC_ROOM\020" + @@ -27843,203 +28337,203 @@ public net.iGap.proto.ProtoGlobal.Pagination getDefaultInstanceForType() { "ADMIN\020\002\022\t\n\005OWNER\020\003\"f\n\tThumbnail\022\014\n\004size\030" + "\001 \001(\003\022\r\n\005width\030\002 \001(\005\022\016\n\006height\030\003 \001(\005\022\020\n\010" + "cache_id\030\004 \001(\t\022\014\n\004name\030\005 \001(\t\022\014\n\004mime\030\006 \001" + - "(\t\"\206\002\n\004File\022\r\n\005token\030\001 \001(\t\022\014\n\004name\030\002 \001(\t" + + "(\t\"\232\002\n\004File\022\r\n\005token\030\001 \001(\t\022\014\n\004name\030\002 \001(\t" + "\022\014\n\004size\030\003 \001(\003\022)\n\017large_thumbnail\030\004 \001(\0132" + "\020.proto.Thumbnail\022)\n\017small_thumbnail\030\005 \001", "(\0132\020.proto.Thumbnail\022,\n\022waveform_thumbna" + "il\030\006 \001(\0132\020.proto.Thumbnail\022\r\n\005width\030\007 \001(" + "\005\022\016\n\006height\030\010 \001(\005\022\020\n\010duration\030\t \001(\001\022\020\n\010c" + - "ache_id\030\n \001(\t\022\014\n\004mime\030\013 \001(\t\"5\n\tWallpaper" + - "\022\031\n\004file\030\001 \001(\0132\013.proto.File\022\r\n\005color\030\002 \001" + - "(\t\"+\n\nPagination\022\016\n\006offset\030\001 \001(\r\022\r\n\005limi" + - "t\030\002 \001(\r*+\n\006Gender\022\013\n\007UNKNOWN\020\000\022\010\n\004MALE\020\001" + - "\022\n\n\006FEMALE\020\002*<\n\006Device\022\022\n\016UNKNOWN_DEVICE" + - "\020\000\022\006\n\002PC\020\001\022\n\n\006TABLET\020\002\022\n\n\006MOBILE\020\003*k\n\010Pl" + - "atform\022\024\n\020UNKNOWN_PLATFORM\020\000\022\013\n\007ANDROID\020", - "\001\022\007\n\003IOS\020\002\022\n\n\006MAC_OS\020\003\022\013\n\007WINDOWS\020\004\022\t\n\005L" + - "INUX\020\005\022\017\n\013BLACK_BERRY\020\006* \n\010Language\022\t\n\005E" + - "N_US\020\000\022\t\n\005FA_IR\020\001*\313\001\n\017RoomMessageType\022\010\n" + - "\004TEXT\020\000\022\t\n\005IMAGE\020\001\022\016\n\nIMAGE_TEXT\020\002\022\t\n\005VI" + - "DEO\020\003\022\016\n\nVIDEO_TEXT\020\004\022\t\n\005AUDIO\020\005\022\016\n\nAUDI" + - "O_TEXT\020\006\022\t\n\005VOICE\020\007\022\007\n\003GIF\020\010\022\014\n\010GIF_TEXT" + - "\020\016\022\010\n\004FILE\020\t\022\r\n\tFILE_TEXT\020\n\022\014\n\010LOCATION\020" + - "\013\022\007\n\003LOG\020\014\022\013\n\007CONTACT\020\r*]\n\021RoomMessageSt" + - "atus\022\n\n\006FAILED\020\000\022\013\n\007SENDING\020\001\022\010\n\004SENT\020\002\022" + - "\r\n\tDELIVERED\020\003\022\010\n\004SEEN\020\004\022\014\n\010LISTENED\020\005*5", - "\n\023RoomMessageReaction\022\r\n\tTHUMBS_UP\020\000\022\017\n\013" + - "THUMBS_DOWN\020\001*\244\002\n\014ClientAction\022\n\n\006CANCEL" + - "\020\000\022\n\n\006TYPING\020\001\022\021\n\rSENDING_IMAGE\020\002\022\023\n\017CAP" + - "TURING_IMAGE\020\003\022\021\n\rSENDING_VIDEO\020\004\022\023\n\017CAP" + - "TURING_VIDEO\020\005\022\021\n\rSENDING_AUDIO\020\006\022\023\n\017REC" + - "ORDING_VOICE\020\007\022\021\n\rSENDING_VOICE\020\010\022\024\n\020SEN" + - "DING_DOCUMENT\020\t\022\017\n\013SENDING_GIF\020\n\022\020\n\014SEND" + - "ING_FILE\020\013\022\024\n\020SENDING_LOCATION\020\014\022\024\n\020CHOO" + - "SING_CONTACT\020\r\022\014\n\010PAINTING\020\016* \n\010RoomMute" + - "\022\n\n\006UNMUTE\020\000\022\010\n\004MUTE\020\001*\233\001\n\013PrivacyType\022\017", - "\n\013USER_STATUS\020\000\022\n\n\006AVATAR\020\001\022\020\n\014GROUP_INV" + - "ITE\020\002\022\022\n\016CHANNEL_INVITE\020\003\022\021\n\rVOICE_CALLI" + - "NG\020\004\022\021\n\rVIDEO_CALLING\020\005\022\022\n\016SCREEN_SHARIN" + - "G\020\006\022\017\n\013SECRET_CHAT\020\007*?\n\014PrivacyLevel\022\r\n\t" + - "ALLOW_ALL\020\000\022\014\n\010DENY_ALL\020\001\022\022\n\016ALLOW_CONTA" + - "CTS\020\002B\035\n\016net.iGap.protoB\013ProtoGlobalb\006pr" + - "oto3" + "ache_id\030\n \001(\t\022\014\n\004mime\030\013 \001(\t\022\022\n\npublic_ur" + + "l\030\014 \001(\t\"5\n\tWallpaper\022\031\n\004file\030\001 \001(\0132\013.pro" + + "to.File\022\r\n\005color\030\002 \001(\t\"+\n\nPagination\022\016\n\006" + + "offset\030\001 \001(\r\022\r\n\005limit\030\002 \001(\r*+\n\006Gender\022\013\n" + + "\007UNKNOWN\020\000\022\010\n\004MALE\020\001\022\n\n\006FEMALE\020\002*<\n\006Devi" + + "ce\022\022\n\016UNKNOWN_DEVICE\020\000\022\006\n\002PC\020\001\022\n\n\006TABLET" + + "\020\002\022\n\n\006MOBILE\020\003*k\n\010Platform\022\024\n\020UNKNOWN_PL", + "ATFORM\020\000\022\013\n\007ANDROID\020\001\022\007\n\003IOS\020\002\022\n\n\006MAC_OS" + + "\020\003\022\013\n\007WINDOWS\020\004\022\t\n\005LINUX\020\005\022\017\n\013BLACK_BERR" + + "Y\020\006* \n\010Language\022\t\n\005EN_US\020\000\022\t\n\005FA_IR\020\001*\313\001" + + "\n\017RoomMessageType\022\010\n\004TEXT\020\000\022\t\n\005IMAGE\020\001\022\016" + + "\n\nIMAGE_TEXT\020\002\022\t\n\005VIDEO\020\003\022\016\n\nVIDEO_TEXT\020" + + "\004\022\t\n\005AUDIO\020\005\022\016\n\nAUDIO_TEXT\020\006\022\t\n\005VOICE\020\007\022" + + "\007\n\003GIF\020\010\022\014\n\010GIF_TEXT\020\016\022\010\n\004FILE\020\t\022\r\n\tFILE" + + "_TEXT\020\n\022\014\n\010LOCATION\020\013\022\007\n\003LOG\020\014\022\013\n\007CONTAC" + + "T\020\r*]\n\021RoomMessageStatus\022\n\n\006FAILED\020\000\022\013\n\007" + + "SENDING\020\001\022\010\n\004SENT\020\002\022\r\n\tDELIVERED\020\003\022\010\n\004SE", + "EN\020\004\022\014\n\010LISTENED\020\005*5\n\023RoomMessageReactio" + + "n\022\r\n\tTHUMBS_UP\020\000\022\017\n\013THUMBS_DOWN\020\001*\244\002\n\014Cl" + + "ientAction\022\n\n\006CANCEL\020\000\022\n\n\006TYPING\020\001\022\021\n\rSE" + + "NDING_IMAGE\020\002\022\023\n\017CAPTURING_IMAGE\020\003\022\021\n\rSE" + + "NDING_VIDEO\020\004\022\023\n\017CAPTURING_VIDEO\020\005\022\021\n\rSE" + + "NDING_AUDIO\020\006\022\023\n\017RECORDING_VOICE\020\007\022\021\n\rSE" + + "NDING_VOICE\020\010\022\024\n\020SENDING_DOCUMENT\020\t\022\017\n\013S" + + "ENDING_GIF\020\n\022\020\n\014SENDING_FILE\020\013\022\024\n\020SENDIN" + + "G_LOCATION\020\014\022\024\n\020CHOOSING_CONTACT\020\r\022\014\n\010PA" + + "INTING\020\016* \n\010RoomMute\022\n\n\006UNMUTE\020\000\022\010\n\004MUTE", + "\020\001*\233\001\n\013PrivacyType\022\017\n\013USER_STATUS\020\000\022\n\n\006A" + + "VATAR\020\001\022\020\n\014GROUP_INVITE\020\002\022\022\n\016CHANNEL_INV" + + "ITE\020\003\022\021\n\rVOICE_CALLING\020\004\022\021\n\rVIDEO_CALLIN" + + "G\020\005\022\022\n\016SCREEN_SHARING\020\006\022\017\n\013SECRET_CHAT\020\007" + + "*?\n\014PrivacyLevel\022\r\n\tALLOW_ALL\020\000\022\014\n\010DENY_" + + "ALL\020\001\022\022\n\016ALLOW_CONTACTS\020\002B\035\n\016net.iGap.pr" + + "otoB\013ProtoGlobalb\006proto3" }; 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; - return null; + return null; } }; - com.google.protobuf.Descriptors.FileDescriptor + com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { + new com.google.protobuf.Descriptors.FileDescriptor[]{ }, assigner); internal_static_proto_RoomMessageLocation_descriptor = getDescriptor().getMessageTypes().get(0); - internal_static_proto_RoomMessageLocation_fieldAccessorTable = new + internal_static_proto_RoomMessageLocation_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_RoomMessageLocation_descriptor, - new java.lang.String[] { "Lat", "Lon", }); - internal_static_proto_RoomMessageLog_descriptor = + new java.lang.String[]{"Lat", "Lon",}); + internal_static_proto_RoomMessageLog_descriptor = getDescriptor().getMessageTypes().get(1); internal_static_proto_RoomMessageLog_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_RoomMessageLog_descriptor, - new java.lang.String[] { "Type", "ExtraType", "TargetUser", }); - internal_static_proto_RoomMessageLog_TargetUser_descriptor = + new java.lang.String[] { "Type", "ExtraType", "TargetUser",}); + internal_static_proto_RoomMessageLog_TargetUser_descriptor = internal_static_proto_RoomMessageLog_descriptor.getNestedTypes().get(0); - internal_static_proto_RoomMessageLog_TargetUser_fieldAccessorTable = new + internal_static_proto_RoomMessageLog_TargetUser_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_RoomMessageLog_TargetUser_descriptor, - new java.lang.String[] { "Id", }); - internal_static_proto_RoomMessageContact_descriptor = + new java.lang.String[]{"Id",}); + internal_static_proto_RoomMessageContact_descriptor = getDescriptor().getMessageTypes().get(2); internal_static_proto_RoomMessageContact_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_RoomMessageContact_descriptor, - new java.lang.String[] { "FirstName", "LastName", "Nickname", "Phone", "Email", }); - internal_static_proto_RoomMessageForwardFrom_descriptor = + new java.lang.String[] { "FirstName", "LastName", "Nickname", "Phone", "Email",}); + internal_static_proto_RoomMessageForwardFrom_descriptor = getDescriptor().getMessageTypes().get(3); internal_static_proto_RoomMessageForwardFrom_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_proto_RoomMessageForwardFrom_descriptor, + new java.lang.String[]{"RoomId", "MessageId",}); + internal_static_proto_RegisteredUser_descriptor = + getDescriptor().getMessageTypes().get(4); + internal_static_proto_RegisteredUser_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_proto_RoomMessageForwardFrom_descriptor, - new java.lang.String[] { "RoomId", "MessageId", }); - internal_static_proto_RegisteredUser_descriptor = - getDescriptor().getMessageTypes().get(4); - internal_static_proto_RegisteredUser_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_proto_RegisteredUser_descriptor, + internal_static_proto_RegisteredUser_descriptor, new java.lang.String[] { "Id", "Username", "Phone", "FirstName", "LastName", "DisplayName", "Initials", "Color", "Status", "LastSeen", "AvatarCount", "Avatar", "Mutual", "Deleted", "CacheId", "Bio", }); internal_static_proto_Avatar_descriptor = - getDescriptor().getMessageTypes().get(5); - internal_static_proto_Avatar_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_proto_Avatar_descriptor, - new java.lang.String[] { "Id", "File", }); - internal_static_proto_RoomMessage_descriptor = - getDescriptor().getMessageTypes().get(6); - internal_static_proto_RoomMessage_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + getDescriptor().getMessageTypes().get(5); + internal_static_proto_Avatar_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_proto_Avatar_descriptor, + new java.lang.String[]{"Id", "File",}); + internal_static_proto_RoomMessage_descriptor = + getDescriptor().getMessageTypes().get(6); + internal_static_proto_RoomMessage_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_RoomMessage_descriptor, - new java.lang.String[] { "MessageId", "MessageVersion", "Status", "StatusVersion", "MessageType", "Message", "Attachment", "Author", "Location", "Log", "Contact", "Edited", "CreateTime", "UpdateTime", "Deleted", "ForwardFrom", "ReplyTo", "PreviousMessageId", "ExtraType", "ChannelExtra", }); - internal_static_proto_RoomMessage_Author_descriptor = + new java.lang.String[] { "MessageId", "MessageVersion", "Status", "StatusVersion", "MessageType", "Message", "Attachment", "Author", "Location", "Log", "Contact", "Edited", "CreateTime", "UpdateTime", "Deleted", "ForwardFrom", "ReplyTo", "PreviousMessageId", "ExtraType", "ChannelExtra",}); + internal_static_proto_RoomMessage_Author_descriptor = internal_static_proto_RoomMessage_descriptor.getNestedTypes().get(0); internal_static_proto_RoomMessage_Author_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_RoomMessage_Author_descriptor, - new java.lang.String[] { "Hash", "User", "Room", }); - internal_static_proto_RoomMessage_Author_User_descriptor = + new java.lang.String[] { "Hash", "User", "Room",}); + internal_static_proto_RoomMessage_Author_User_descriptor = internal_static_proto_RoomMessage_Author_descriptor.getNestedTypes().get(0); internal_static_proto_RoomMessage_Author_User_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_RoomMessage_Author_User_descriptor, - new java.lang.String[] { "UserId", "CacheId", }); - internal_static_proto_RoomMessage_Author_Room_descriptor = + new java.lang.String[] { "UserId", "CacheId",}); + internal_static_proto_RoomMessage_Author_Room_descriptor = internal_static_proto_RoomMessage_Author_descriptor.getNestedTypes().get(1); internal_static_proto_RoomMessage_Author_Room_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_RoomMessage_Author_Room_descriptor, - new java.lang.String[] { "RoomId", }); - internal_static_proto_RoomMessage_ChannelExtra_descriptor = - internal_static_proto_RoomMessage_descriptor.getNestedTypes().get(1); - internal_static_proto_RoomMessage_ChannelExtra_fieldAccessorTable = new + new java.lang.String[] { "RoomId",}); + internal_static_proto_RoomMessage_ChannelExtra_descriptor = + internal_static_proto_RoomMessage_descriptor.getNestedTypes().get(1); + internal_static_proto_RoomMessage_ChannelExtra_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_RoomMessage_ChannelExtra_descriptor, - new java.lang.String[] { "Signature", "ViewsLabel", "ThumbsUpLabel", "ThumbsDownLabel", }); + new java.lang.String[]{"Signature", "ViewsLabel", "ThumbsUpLabel", "ThumbsDownLabel", }); internal_static_proto_RoomDraft_descriptor = - getDescriptor().getMessageTypes().get(7); - internal_static_proto_RoomDraft_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_proto_RoomDraft_descriptor, - new java.lang.String[] { "Message", "ReplyTo", }); - internal_static_proto_Room_descriptor = - getDescriptor().getMessageTypes().get(8); - internal_static_proto_Room_fieldAccessorTable = new + getDescriptor().getMessageTypes().get(7); + internal_static_proto_RoomDraft_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_proto_RoomDraft_descriptor, + new java.lang.String[]{"Message", "ReplyTo",}); + internal_static_proto_Room_descriptor = + getDescriptor().getMessageTypes().get(8); + internal_static_proto_Room_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_proto_Room_descriptor, + internal_static_proto_Room_descriptor, new java.lang.String[] { "Id", "Type", "Title", "Initials", "Color", "UnreadCount", "LastMessage", "ReadOnly", "IsParticipant", "Draft", "FirstUnreadMessage", "RoomMute", "PinId", "ChatRoomExtra", "GroupRoomExtra", "ChannelRoomExtra", }); internal_static_proto_ChatRoom_descriptor = - getDescriptor().getMessageTypes().get(9); - internal_static_proto_ChatRoom_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_proto_ChatRoom_descriptor, - new java.lang.String[] { "Peer", }); - internal_static_proto_GroupRoom_descriptor = - getDescriptor().getMessageTypes().get(10); - internal_static_proto_GroupRoom_fieldAccessorTable = new + getDescriptor().getMessageTypes().get(9); + internal_static_proto_ChatRoom_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_proto_ChatRoom_descriptor, + new java.lang.String[]{"Peer",}); + internal_static_proto_GroupRoom_descriptor = + getDescriptor().getMessageTypes().get(10); + internal_static_proto_GroupRoom_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_GroupRoom_descriptor, - new java.lang.String[] { "Type", "Role", "ParticipantsCount", "ParticipantsCountLabel", "ParticipantsCountLimit", "ParticipantsCountLimitLabel", "Description", "AvatarCount", "Avatar", "PrivateExtra", "PublicExtra", }); - internal_static_proto_GroupRoom_PrivateExtra_descriptor = + new java.lang.String[]{"Type", "Role", "ParticipantsCount", "ParticipantsCountLabel", "ParticipantsCountLimit", "ParticipantsCountLimitLabel", "Description", "AvatarCount", "Avatar", "PrivateExtra", "PublicExtra",}); + internal_static_proto_GroupRoom_PrivateExtra_descriptor = internal_static_proto_GroupRoom_descriptor.getNestedTypes().get(0); internal_static_proto_GroupRoom_PrivateExtra_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_GroupRoom_PrivateExtra_descriptor, - new java.lang.String[] { "InviteLink", "InviteToken", }); - internal_static_proto_GroupRoom_PublicExtra_descriptor = - internal_static_proto_GroupRoom_descriptor.getNestedTypes().get(1); - internal_static_proto_GroupRoom_PublicExtra_fieldAccessorTable = new + new java.lang.String[] { "InviteLink", "InviteToken",}); + internal_static_proto_GroupRoom_PublicExtra_descriptor = + internal_static_proto_GroupRoom_descriptor.getNestedTypes().get(1); + internal_static_proto_GroupRoom_PublicExtra_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_proto_GroupRoom_PublicExtra_descriptor, + new java.lang.String[]{"Username",}); + internal_static_proto_ChannelRoom_descriptor = + getDescriptor().getMessageTypes().get(11); + internal_static_proto_ChannelRoom_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_proto_GroupRoom_PublicExtra_descriptor, - new java.lang.String[] { "Username", }); - internal_static_proto_ChannelRoom_descriptor = - getDescriptor().getMessageTypes().get(11); - internal_static_proto_ChannelRoom_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_proto_ChannelRoom_descriptor, - new java.lang.String[]{"Type", "Role", "ParticipantsCount", "ParticipantsCountLabel", "Description", "AvatarCount", "Avatar", "PrivateExtra", "PublicExtra", "Signature", "SeenId", "Verified", "ReactionStatus", }); - internal_static_proto_ChannelRoom_PrivateExtra_descriptor = + internal_static_proto_ChannelRoom_descriptor, + new java.lang.String[]{"Type", "Role", "ParticipantsCount", "ParticipantsCountLabel", "Description", "AvatarCount", "Avatar", "PrivateExtra", "PublicExtra", "Signature", "SeenId", "Verified", "ReactionStatus",}); + internal_static_proto_ChannelRoom_PrivateExtra_descriptor = internal_static_proto_ChannelRoom_descriptor.getNestedTypes().get(0); internal_static_proto_ChannelRoom_PrivateExtra_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_ChannelRoom_PrivateExtra_descriptor, - new java.lang.String[] { "InviteLink", "InviteToken", }); - internal_static_proto_ChannelRoom_PublicExtra_descriptor = + new java.lang.String[] { "InviteLink", "InviteToken",}); + internal_static_proto_ChannelRoom_PublicExtra_descriptor = internal_static_proto_ChannelRoom_descriptor.getNestedTypes().get(1); - internal_static_proto_ChannelRoom_PublicExtra_fieldAccessorTable = new + internal_static_proto_ChannelRoom_PublicExtra_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_ChannelRoom_PublicExtra_descriptor, - new java.lang.String[] { "Username", }); - internal_static_proto_Thumbnail_descriptor = - getDescriptor().getMessageTypes().get(12); - internal_static_proto_Thumbnail_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + new java.lang.String[]{"Username",}); + internal_static_proto_Thumbnail_descriptor = + getDescriptor().getMessageTypes().get(12); + internal_static_proto_Thumbnail_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_Thumbnail_descriptor, - new java.lang.String[] { "Size", "Width", "Height", "CacheId", "Name", "Mime", }); - internal_static_proto_File_descriptor = - getDescriptor().getMessageTypes().get(13); + new java.lang.String[]{"Size", "Width", "Height", "CacheId", "Name", "Mime",}); + internal_static_proto_File_descriptor = + getDescriptor().getMessageTypes().get(13); internal_static_proto_File_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_File_descriptor, - new java.lang.String[] { "Token", "Name", "Size", "LargeThumbnail", "SmallThumbnail", "WaveformThumbnail", "Width", "Height", "Duration", "CacheId", "Mime", }); + new java.lang.String[] { "Token", "Name", "Size", "LargeThumbnail", "SmallThumbnail", "WaveformThumbnail", "Width", "Height", "Duration", "CacheId", "Mime", "PublicUrl", }); internal_static_proto_Wallpaper_descriptor = - getDescriptor().getMessageTypes().get(14); + getDescriptor().getMessageTypes().get(14); internal_static_proto_Wallpaper_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_proto_Wallpaper_descriptor, - new java.lang.String[] { "File", "Color", }); + new java.lang.String[] { "File", "Color", }); internal_static_proto_Pagination_descriptor = getDescriptor().getMessageTypes().get(15); internal_static_proto_Pagination_fieldAccessorTable = new