3613923439a00947b2729ba2084d6fe06b8fd49c
[controller.git] / opendaylight / md-sal / sal-protocolbuffer-encoding / src / main / java / org / opendaylight / controller / cluster / datastore / shard / ShardManagerMessages.java
1 // Generated by the protocol buffer compiler. DO NOT EDIT!
2 // source: ShardManager.proto
3
4 package org.opendaylight.controller.cluster.datastore.shard;
5
6 public final class ShardManagerMessages {
7   private ShardManagerMessages() {}
8
9   public static void registerAllExtensions(
10       com.google.protobuf.ExtensionRegistry registry) {}
11
12   public interface FindPrimaryOrBuilder extends
13       com.google.protobuf.MessageOrBuilder {
14
15     // required string shardName = 1;
16     /**
17      * <code>required string shardName = 1;</code>
18      */
19     boolean hasShardName();
20
21     /**
22      * <code>required string shardName = 1;</code>
23      */
24     java.lang.String getShardName();
25
26     /**
27      * <code>required string shardName = 1;</code>
28      */
29     com.google.protobuf.ByteString getShardNameBytes();
30   }
31   /**
32    * Protobuf type {@code org.opendaylight.controller.mdsal.FindPrimary}
33    */
34   public static final class FindPrimary extends
35       com.google.protobuf.GeneratedMessage implements FindPrimaryOrBuilder {
36     // Use FindPrimary.newBuilder() to construct.
37     private FindPrimary(com.google.protobuf.GeneratedMessage.Builder<?> builder) {
38       super(builder);
39       this.unknownFields = builder.getUnknownFields();
40     }
41
42     private FindPrimary(boolean noInit) {
43       this.unknownFields =
44           com.google.protobuf.UnknownFieldSet.getDefaultInstance();
45     }
46
47     private static final FindPrimary defaultInstance;
48
49     public static FindPrimary getDefaultInstance() {
50       return defaultInstance;
51     }
52
53     public FindPrimary getDefaultInstanceForType() {
54       return defaultInstance;
55     }
56
57     private final com.google.protobuf.UnknownFieldSet unknownFields;
58
59     @java.lang.Override
60     public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
61       return this.unknownFields;
62     }
63
64     private FindPrimary(com.google.protobuf.CodedInputStream input,
65         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
66         throws com.google.protobuf.InvalidProtocolBufferException {
67       initFields();
68       int mutable_bitField0_ = 0;
69       com.google.protobuf.UnknownFieldSet.Builder unknownFields =
70           com.google.protobuf.UnknownFieldSet.newBuilder();
71       try {
72         boolean done = false;
73         while (!done) {
74           int tag = input.readTag();
75           switch (tag) {
76             case 0:
77               done = true;
78               break;
79             default: {
80               if (!parseUnknownField(input, unknownFields, extensionRegistry,
81                   tag)) {
82                 done = true;
83               }
84               break;
85             }
86             case 10: {
87               bitField0_ |= 0x00000001;
88               shardName_ = input.readBytes();
89               break;
90             }
91           }
92         }
93       } catch (com.google.protobuf.InvalidProtocolBufferException e) {
94         throw e.setUnfinishedMessage(this);
95       } catch (java.io.IOException e) {
96         throw new com.google.protobuf.InvalidProtocolBufferException(
97             e.getMessage()).setUnfinishedMessage(this);
98       } finally {
99         this.unknownFields = unknownFields.build();
100         makeExtensionsImmutable();
101       }
102     }
103
104     public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
105       return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_FindPrimary_descriptor;
106     }
107
108     protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() {
109       return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_FindPrimary_fieldAccessorTable
110           .ensureFieldAccessorsInitialized(
111               org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary.class,
112               org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary.Builder.class);
113     }
114
115     public static com.google.protobuf.Parser<FindPrimary> PARSER =
116         new com.google.protobuf.AbstractParser<FindPrimary>() {
117           public FindPrimary parsePartialFrom(
118               com.google.protobuf.CodedInputStream input,
119               com.google.protobuf.ExtensionRegistryLite extensionRegistry)
120               throws com.google.protobuf.InvalidProtocolBufferException {
121             return new FindPrimary(input, extensionRegistry);
122           }
123         };
124
125     @java.lang.Override
126     public com.google.protobuf.Parser<FindPrimary> getParserForType() {
127       return PARSER;
128     }
129
130     private int bitField0_;
131     // required string shardName = 1;
132     public static final int SHARDNAME_FIELD_NUMBER = 1;
133     private java.lang.Object shardName_;
134
135     /**
136      * <code>required string shardName = 1;</code>
137      */
138     public boolean hasShardName() {
139       return ((bitField0_ & 0x00000001) == 0x00000001);
140     }
141
142     /**
143      * <code>required string shardName = 1;</code>
144      */
145     public java.lang.String getShardName() {
146       java.lang.Object ref = shardName_;
147       if (ref instanceof java.lang.String) {
148         return (java.lang.String) ref;
149       } else {
150         com.google.protobuf.ByteString bs =
151             (com.google.protobuf.ByteString) ref;
152         java.lang.String s = bs.toStringUtf8();
153         if (bs.isValidUtf8()) {
154           shardName_ = s;
155         }
156         return s;
157       }
158     }
159
160     /**
161      * <code>required string shardName = 1;</code>
162      */
163     public com.google.protobuf.ByteString getShardNameBytes() {
164       java.lang.Object ref = shardName_;
165       if (ref instanceof java.lang.String) {
166         com.google.protobuf.ByteString b =
167             com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
168         shardName_ = b;
169         return b;
170       } else {
171         return (com.google.protobuf.ByteString) ref;
172       }
173     }
174
175     private void initFields() {
176       shardName_ = "";
177     }
178
179     private byte memoizedIsInitialized = -1;
180
181     public final boolean isInitialized() {
182       byte isInitialized = memoizedIsInitialized;
183       if (isInitialized != -1)
184         return isInitialized == 1;
185
186       if (!hasShardName()) {
187         memoizedIsInitialized = 0;
188         return false;
189       }
190       memoizedIsInitialized = 1;
191       return true;
192     }
193
194     public void writeTo(com.google.protobuf.CodedOutputStream output)
195         throws java.io.IOException {
196       getSerializedSize();
197       if (((bitField0_ & 0x00000001) == 0x00000001)) {
198         output.writeBytes(1, getShardNameBytes());
199       }
200       getUnknownFields().writeTo(output);
201     }
202
203     private int memoizedSerializedSize = -1;
204
205     public int getSerializedSize() {
206       int size = memoizedSerializedSize;
207       if (size != -1)
208         return size;
209
210       size = 0;
211       if (((bitField0_ & 0x00000001) == 0x00000001)) {
212         size +=
213             com.google.protobuf.CodedOutputStream.computeBytesSize(1,
214                 getShardNameBytes());
215       }
216       size += getUnknownFields().getSerializedSize();
217       memoizedSerializedSize = size;
218       return size;
219     }
220
221     private static final long serialVersionUID = 0L;
222
223     @java.lang.Override
224     protected java.lang.Object writeReplace()
225         throws java.io.ObjectStreamException {
226       return super.writeReplace();
227     }
228
229     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary parseFrom(
230         com.google.protobuf.ByteString data)
231         throws com.google.protobuf.InvalidProtocolBufferException {
232       return PARSER.parseFrom(data);
233     }
234
235     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary parseFrom(
236         com.google.protobuf.ByteString data,
237         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
238         throws com.google.protobuf.InvalidProtocolBufferException {
239       return PARSER.parseFrom(data, extensionRegistry);
240     }
241
242     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary parseFrom(
243         byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
244       return PARSER.parseFrom(data);
245     }
246
247     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary parseFrom(
248         byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
249         throws com.google.protobuf.InvalidProtocolBufferException {
250       return PARSER.parseFrom(data, extensionRegistry);
251     }
252
253     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary parseFrom(
254         java.io.InputStream input) throws java.io.IOException {
255       return PARSER.parseFrom(input);
256     }
257
258     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary parseFrom(
259         java.io.InputStream input,
260         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
261         throws java.io.IOException {
262       return PARSER.parseFrom(input, extensionRegistry);
263     }
264
265     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary parseDelimitedFrom(
266         java.io.InputStream input) throws java.io.IOException {
267       return PARSER.parseDelimitedFrom(input);
268     }
269
270     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary parseDelimitedFrom(
271         java.io.InputStream input,
272         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
273         throws java.io.IOException {
274       return PARSER.parseDelimitedFrom(input, extensionRegistry);
275     }
276
277     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary parseFrom(
278         com.google.protobuf.CodedInputStream input) throws java.io.IOException {
279       return PARSER.parseFrom(input);
280     }
281
282     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary parseFrom(
283         com.google.protobuf.CodedInputStream input,
284         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
285         throws java.io.IOException {
286       return PARSER.parseFrom(input, extensionRegistry);
287     }
288
289     public static Builder newBuilder() {
290       return Builder.create();
291     }
292
293     public Builder newBuilderForType() {
294       return newBuilder();
295     }
296
297     public static Builder newBuilder(
298         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary prototype) {
299       return newBuilder().mergeFrom(prototype);
300     }
301
302     public Builder toBuilder() {
303       return newBuilder(this);
304     }
305
306     @java.lang.Override
307     protected Builder newBuilderForType(
308         com.google.protobuf.GeneratedMessage.BuilderParent parent) {
309       Builder builder = new Builder(parent);
310       return builder;
311     }
312
313     /**
314      * Protobuf type {@code org.opendaylight.controller.mdsal.FindPrimary}
315      */
316     public static final class Builder extends
317         com.google.protobuf.GeneratedMessage.Builder<Builder>
318         implements
319         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimaryOrBuilder {
320       public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
321         return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_FindPrimary_descriptor;
322       }
323
324       protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() {
325         return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_FindPrimary_fieldAccessorTable
326             .ensureFieldAccessorsInitialized(
327                 org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary.class,
328                 org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary.Builder.class);
329       }
330
331       // Construct using
332       // org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary.newBuilder()
333       private Builder() {
334         maybeForceBuilderInitialization();
335       }
336
337       private Builder(com.google.protobuf.GeneratedMessage.BuilderParent parent) {
338         super(parent);
339         maybeForceBuilderInitialization();
340       }
341
342       private void maybeForceBuilderInitialization() {
343         if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
344         }
345       }
346
347       private static Builder create() {
348         return new Builder();
349       }
350
351       public Builder clear() {
352         super.clear();
353         shardName_ = "";
354         bitField0_ = (bitField0_ & ~0x00000001);
355         return this;
356       }
357
358       public Builder clone() {
359         return create().mergeFrom(buildPartial());
360       }
361
362       public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
363         return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_FindPrimary_descriptor;
364       }
365
366       public org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary getDefaultInstanceForType() {
367         return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary
368             .getDefaultInstance();
369       }
370
371       public org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary build() {
372         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary result =
373             buildPartial();
374         if (!result.isInitialized()) {
375           throw newUninitializedMessageException(result);
376         }
377         return result;
378       }
379
380       public org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary buildPartial() {
381         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary result =
382             new org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary(
383                 this);
384         int from_bitField0_ = bitField0_;
385         int to_bitField0_ = 0;
386         if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
387           to_bitField0_ |= 0x00000001;
388         }
389         result.shardName_ = shardName_;
390         result.bitField0_ = to_bitField0_;
391         onBuilt();
392         return result;
393       }
394
395       public Builder mergeFrom(com.google.protobuf.Message other) {
396         if (other instanceof org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary) {
397           return mergeFrom((org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary) other);
398         } else {
399           super.mergeFrom(other);
400           return this;
401         }
402       }
403
404       public Builder mergeFrom(
405           org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary other) {
406         if (other == org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary
407             .getDefaultInstance())
408           return this;
409         if (other.hasShardName()) {
410           bitField0_ |= 0x00000001;
411           shardName_ = other.shardName_;
412           onChanged();
413         }
414         this.mergeUnknownFields(other.getUnknownFields());
415         return this;
416       }
417
418       public final boolean isInitialized() {
419         if (!hasShardName()) {
420
421           return false;
422         }
423         return true;
424       }
425
426       public Builder mergeFrom(com.google.protobuf.CodedInputStream input,
427           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
428           throws java.io.IOException {
429         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary parsedMessage =
430             null;
431         try {
432           parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
433         } catch (com.google.protobuf.InvalidProtocolBufferException e) {
434           parsedMessage =
435               (org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.FindPrimary) e
436                   .getUnfinishedMessage();
437           throw e;
438         } finally {
439           if (parsedMessage != null) {
440             mergeFrom(parsedMessage);
441           }
442         }
443         return this;
444       }
445
446       private int bitField0_;
447
448       // required string shardName = 1;
449       private java.lang.Object shardName_ = "";
450
451       /**
452        * <code>required string shardName = 1;</code>
453        */
454       public boolean hasShardName() {
455         return ((bitField0_ & 0x00000001) == 0x00000001);
456       }
457
458       /**
459        * <code>required string shardName = 1;</code>
460        */
461       public java.lang.String getShardName() {
462         java.lang.Object ref = shardName_;
463         if (!(ref instanceof java.lang.String)) {
464           java.lang.String s =
465               ((com.google.protobuf.ByteString) ref).toStringUtf8();
466           shardName_ = s;
467           return s;
468         } else {
469           return (java.lang.String) ref;
470         }
471       }
472
473       /**
474        * <code>required string shardName = 1;</code>
475        */
476       public com.google.protobuf.ByteString getShardNameBytes() {
477         java.lang.Object ref = shardName_;
478         if (ref instanceof String) {
479           com.google.protobuf.ByteString b =
480               com.google.protobuf.ByteString
481                   .copyFromUtf8((java.lang.String) ref);
482           shardName_ = b;
483           return b;
484         } else {
485           return (com.google.protobuf.ByteString) ref;
486         }
487       }
488
489       /**
490        * <code>required string shardName = 1;</code>
491        */
492       public Builder setShardName(java.lang.String value) {
493         if (value == null) {
494           throw new NullPointerException();
495         }
496         bitField0_ |= 0x00000001;
497         shardName_ = value;
498         onChanged();
499         return this;
500       }
501
502       /**
503        * <code>required string shardName = 1;</code>
504        */
505       public Builder clearShardName() {
506         bitField0_ = (bitField0_ & ~0x00000001);
507         shardName_ = getDefaultInstance().getShardName();
508         onChanged();
509         return this;
510       }
511
512       /**
513        * <code>required string shardName = 1;</code>
514        */
515       public Builder setShardNameBytes(com.google.protobuf.ByteString value) {
516         if (value == null) {
517           throw new NullPointerException();
518         }
519         bitField0_ |= 0x00000001;
520         shardName_ = value;
521         onChanged();
522         return this;
523       }
524
525       // @@protoc_insertion_point(builder_scope:org.opendaylight.controller.mdsal.FindPrimary)
526     }
527
528     static {
529       defaultInstance = new FindPrimary(true);
530       defaultInstance.initFields();
531     }
532
533     // @@protoc_insertion_point(class_scope:org.opendaylight.controller.mdsal.FindPrimary)
534   }
535
536   public interface PrimaryFoundOrBuilder extends
537       com.google.protobuf.MessageOrBuilder {
538   }
539   /**
540    * Protobuf type {@code org.opendaylight.controller.mdsal.PrimaryFound}
541    */
542   public static final class PrimaryFound extends
543       com.google.protobuf.GeneratedMessage implements PrimaryFoundOrBuilder {
544     // Use PrimaryFound.newBuilder() to construct.
545     private PrimaryFound(com.google.protobuf.GeneratedMessage.Builder<?> builder) {
546       super(builder);
547       this.unknownFields = builder.getUnknownFields();
548     }
549
550     private PrimaryFound(boolean noInit) {
551       this.unknownFields =
552           com.google.protobuf.UnknownFieldSet.getDefaultInstance();
553     }
554
555     private static final PrimaryFound defaultInstance;
556
557     public static PrimaryFound getDefaultInstance() {
558       return defaultInstance;
559     }
560
561     public PrimaryFound getDefaultInstanceForType() {
562       return defaultInstance;
563     }
564
565     private final com.google.protobuf.UnknownFieldSet unknownFields;
566
567     @java.lang.Override
568     public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
569       return this.unknownFields;
570     }
571
572     private PrimaryFound(com.google.protobuf.CodedInputStream input,
573         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
574         throws com.google.protobuf.InvalidProtocolBufferException {
575       initFields();
576       com.google.protobuf.UnknownFieldSet.Builder unknownFields =
577           com.google.protobuf.UnknownFieldSet.newBuilder();
578       try {
579         boolean done = false;
580         while (!done) {
581           int tag = input.readTag();
582           switch (tag) {
583             case 0:
584               done = true;
585               break;
586             default: {
587               if (!parseUnknownField(input, unknownFields, extensionRegistry,
588                   tag)) {
589                 done = true;
590               }
591               break;
592             }
593           }
594         }
595       } catch (com.google.protobuf.InvalidProtocolBufferException e) {
596         throw e.setUnfinishedMessage(this);
597       } catch (java.io.IOException e) {
598         throw new com.google.protobuf.InvalidProtocolBufferException(
599             e.getMessage()).setUnfinishedMessage(this);
600       } finally {
601         this.unknownFields = unknownFields.build();
602         makeExtensionsImmutable();
603       }
604     }
605
606     public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
607       return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_PrimaryFound_descriptor;
608     }
609
610     protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() {
611       return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_PrimaryFound_fieldAccessorTable
612           .ensureFieldAccessorsInitialized(
613               org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound.class,
614               org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound.Builder.class);
615     }
616
617     public static com.google.protobuf.Parser<PrimaryFound> PARSER =
618         new com.google.protobuf.AbstractParser<PrimaryFound>() {
619           public PrimaryFound parsePartialFrom(
620               com.google.protobuf.CodedInputStream input,
621               com.google.protobuf.ExtensionRegistryLite extensionRegistry)
622               throws com.google.protobuf.InvalidProtocolBufferException {
623             return new PrimaryFound(input, extensionRegistry);
624           }
625         };
626
627     @java.lang.Override
628     public com.google.protobuf.Parser<PrimaryFound> getParserForType() {
629       return PARSER;
630     }
631
632     private void initFields() {}
633
634     private byte memoizedIsInitialized = -1;
635
636     public final boolean isInitialized() {
637       byte isInitialized = memoizedIsInitialized;
638       if (isInitialized != -1)
639         return isInitialized == 1;
640
641       memoizedIsInitialized = 1;
642       return true;
643     }
644
645     public void writeTo(com.google.protobuf.CodedOutputStream output)
646         throws java.io.IOException {
647       getSerializedSize();
648       getUnknownFields().writeTo(output);
649     }
650
651     private int memoizedSerializedSize = -1;
652
653     public int getSerializedSize() {
654       int size = memoizedSerializedSize;
655       if (size != -1)
656         return size;
657
658       size = 0;
659       size += getUnknownFields().getSerializedSize();
660       memoizedSerializedSize = size;
661       return size;
662     }
663
664     private static final long serialVersionUID = 0L;
665
666     @java.lang.Override
667     protected java.lang.Object writeReplace()
668         throws java.io.ObjectStreamException {
669       return super.writeReplace();
670     }
671
672     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound parseFrom(
673         com.google.protobuf.ByteString data)
674         throws com.google.protobuf.InvalidProtocolBufferException {
675       return PARSER.parseFrom(data);
676     }
677
678     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound parseFrom(
679         com.google.protobuf.ByteString data,
680         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
681         throws com.google.protobuf.InvalidProtocolBufferException {
682       return PARSER.parseFrom(data, extensionRegistry);
683     }
684
685     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound parseFrom(
686         byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
687       return PARSER.parseFrom(data);
688     }
689
690     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound parseFrom(
691         byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
692         throws com.google.protobuf.InvalidProtocolBufferException {
693       return PARSER.parseFrom(data, extensionRegistry);
694     }
695
696     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound parseFrom(
697         java.io.InputStream input) throws java.io.IOException {
698       return PARSER.parseFrom(input);
699     }
700
701     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound parseFrom(
702         java.io.InputStream input,
703         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
704         throws java.io.IOException {
705       return PARSER.parseFrom(input, extensionRegistry);
706     }
707
708     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound parseDelimitedFrom(
709         java.io.InputStream input) throws java.io.IOException {
710       return PARSER.parseDelimitedFrom(input);
711     }
712
713     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound parseDelimitedFrom(
714         java.io.InputStream input,
715         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
716         throws java.io.IOException {
717       return PARSER.parseDelimitedFrom(input, extensionRegistry);
718     }
719
720     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound parseFrom(
721         com.google.protobuf.CodedInputStream input) throws java.io.IOException {
722       return PARSER.parseFrom(input);
723     }
724
725     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound parseFrom(
726         com.google.protobuf.CodedInputStream input,
727         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
728         throws java.io.IOException {
729       return PARSER.parseFrom(input, extensionRegistry);
730     }
731
732     public static Builder newBuilder() {
733       return Builder.create();
734     }
735
736     public Builder newBuilderForType() {
737       return newBuilder();
738     }
739
740     public static Builder newBuilder(
741         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound prototype) {
742       return newBuilder().mergeFrom(prototype);
743     }
744
745     public Builder toBuilder() {
746       return newBuilder(this);
747     }
748
749     @java.lang.Override
750     protected Builder newBuilderForType(
751         com.google.protobuf.GeneratedMessage.BuilderParent parent) {
752       Builder builder = new Builder(parent);
753       return builder;
754     }
755
756     /**
757      * Protobuf type {@code org.opendaylight.controller.mdsal.PrimaryFound}
758      */
759     public static final class Builder extends
760         com.google.protobuf.GeneratedMessage.Builder<Builder>
761         implements
762         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFoundOrBuilder {
763       public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
764         return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_PrimaryFound_descriptor;
765       }
766
767       protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() {
768         return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_PrimaryFound_fieldAccessorTable
769             .ensureFieldAccessorsInitialized(
770                 org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound.class,
771                 org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound.Builder.class);
772       }
773
774       // Construct using
775       // org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound.newBuilder()
776       private Builder() {
777         maybeForceBuilderInitialization();
778       }
779
780       private Builder(com.google.protobuf.GeneratedMessage.BuilderParent parent) {
781         super(parent);
782         maybeForceBuilderInitialization();
783       }
784
785       private void maybeForceBuilderInitialization() {
786         if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
787         }
788       }
789
790       private static Builder create() {
791         return new Builder();
792       }
793
794       public Builder clear() {
795         super.clear();
796         return this;
797       }
798
799       public Builder clone() {
800         return create().mergeFrom(buildPartial());
801       }
802
803       public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
804         return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_PrimaryFound_descriptor;
805       }
806
807       public org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound getDefaultInstanceForType() {
808         return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound
809             .getDefaultInstance();
810       }
811
812       public org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound build() {
813         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound result =
814             buildPartial();
815         if (!result.isInitialized()) {
816           throw newUninitializedMessageException(result);
817         }
818         return result;
819       }
820
821       public org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound buildPartial() {
822         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound result =
823             new org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound(
824                 this);
825         onBuilt();
826         return result;
827       }
828
829       public Builder mergeFrom(com.google.protobuf.Message other) {
830         if (other instanceof org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound) {
831           return mergeFrom((org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound) other);
832         } else {
833           super.mergeFrom(other);
834           return this;
835         }
836       }
837
838       public Builder mergeFrom(
839           org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound other) {
840         if (other == org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound
841             .getDefaultInstance())
842           return this;
843         this.mergeUnknownFields(other.getUnknownFields());
844         return this;
845       }
846
847       public final boolean isInitialized() {
848         return true;
849       }
850
851       public Builder mergeFrom(com.google.protobuf.CodedInputStream input,
852           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
853           throws java.io.IOException {
854         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound parsedMessage =
855             null;
856         try {
857           parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
858         } catch (com.google.protobuf.InvalidProtocolBufferException e) {
859           parsedMessage =
860               (org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryFound) e
861                   .getUnfinishedMessage();
862           throw e;
863         } finally {
864           if (parsedMessage != null) {
865             mergeFrom(parsedMessage);
866           }
867         }
868         return this;
869       }
870
871       // @@protoc_insertion_point(builder_scope:org.opendaylight.controller.mdsal.PrimaryFound)
872     }
873
874     static {
875       defaultInstance = new PrimaryFound(true);
876       defaultInstance.initFields();
877     }
878
879     // @@protoc_insertion_point(class_scope:org.opendaylight.controller.mdsal.PrimaryFound)
880   }
881
882   public interface PrimaryNotFoundOrBuilder extends
883       com.google.protobuf.MessageOrBuilder {
884   }
885   /**
886    * Protobuf type {@code org.opendaylight.controller.mdsal.PrimaryNotFound}
887    */
888   public static final class PrimaryNotFound extends
889       com.google.protobuf.GeneratedMessage implements PrimaryNotFoundOrBuilder {
890     // Use PrimaryNotFound.newBuilder() to construct.
891     private PrimaryNotFound(
892         com.google.protobuf.GeneratedMessage.Builder<?> builder) {
893       super(builder);
894       this.unknownFields = builder.getUnknownFields();
895     }
896
897     private PrimaryNotFound(boolean noInit) {
898       this.unknownFields =
899           com.google.protobuf.UnknownFieldSet.getDefaultInstance();
900     }
901
902     private static final PrimaryNotFound defaultInstance;
903
904     public static PrimaryNotFound getDefaultInstance() {
905       return defaultInstance;
906     }
907
908     public PrimaryNotFound getDefaultInstanceForType() {
909       return defaultInstance;
910     }
911
912     private final com.google.protobuf.UnknownFieldSet unknownFields;
913
914     @java.lang.Override
915     public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
916       return this.unknownFields;
917     }
918
919     private PrimaryNotFound(com.google.protobuf.CodedInputStream input,
920         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
921         throws com.google.protobuf.InvalidProtocolBufferException {
922       initFields();
923       com.google.protobuf.UnknownFieldSet.Builder unknownFields =
924           com.google.protobuf.UnknownFieldSet.newBuilder();
925       try {
926         boolean done = false;
927         while (!done) {
928           int tag = input.readTag();
929           switch (tag) {
930             case 0:
931               done = true;
932               break;
933             default: {
934               if (!parseUnknownField(input, unknownFields, extensionRegistry,
935                   tag)) {
936                 done = true;
937               }
938               break;
939             }
940           }
941         }
942       } catch (com.google.protobuf.InvalidProtocolBufferException e) {
943         throw e.setUnfinishedMessage(this);
944       } catch (java.io.IOException e) {
945         throw new com.google.protobuf.InvalidProtocolBufferException(
946             e.getMessage()).setUnfinishedMessage(this);
947       } finally {
948         this.unknownFields = unknownFields.build();
949         makeExtensionsImmutable();
950       }
951     }
952
953     public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
954       return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_PrimaryNotFound_descriptor;
955     }
956
957     protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() {
958       return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_PrimaryNotFound_fieldAccessorTable
959           .ensureFieldAccessorsInitialized(
960               org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound.class,
961               org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound.Builder.class);
962     }
963
964     public static com.google.protobuf.Parser<PrimaryNotFound> PARSER =
965         new com.google.protobuf.AbstractParser<PrimaryNotFound>() {
966           public PrimaryNotFound parsePartialFrom(
967               com.google.protobuf.CodedInputStream input,
968               com.google.protobuf.ExtensionRegistryLite extensionRegistry)
969               throws com.google.protobuf.InvalidProtocolBufferException {
970             return new PrimaryNotFound(input, extensionRegistry);
971           }
972         };
973
974     @java.lang.Override
975     public com.google.protobuf.Parser<PrimaryNotFound> getParserForType() {
976       return PARSER;
977     }
978
979     private void initFields() {}
980
981     private byte memoizedIsInitialized = -1;
982
983     public final boolean isInitialized() {
984       byte isInitialized = memoizedIsInitialized;
985       if (isInitialized != -1)
986         return isInitialized == 1;
987
988       memoizedIsInitialized = 1;
989       return true;
990     }
991
992     public void writeTo(com.google.protobuf.CodedOutputStream output)
993         throws java.io.IOException {
994       getSerializedSize();
995       getUnknownFields().writeTo(output);
996     }
997
998     private int memoizedSerializedSize = -1;
999
1000     public int getSerializedSize() {
1001       int size = memoizedSerializedSize;
1002       if (size != -1)
1003         return size;
1004
1005       size = 0;
1006       size += getUnknownFields().getSerializedSize();
1007       memoizedSerializedSize = size;
1008       return size;
1009     }
1010
1011     private static final long serialVersionUID = 0L;
1012
1013     @java.lang.Override
1014     protected java.lang.Object writeReplace()
1015         throws java.io.ObjectStreamException {
1016       return super.writeReplace();
1017     }
1018
1019     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound parseFrom(
1020         com.google.protobuf.ByteString data)
1021         throws com.google.protobuf.InvalidProtocolBufferException {
1022       return PARSER.parseFrom(data);
1023     }
1024
1025     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound parseFrom(
1026         com.google.protobuf.ByteString data,
1027         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1028         throws com.google.protobuf.InvalidProtocolBufferException {
1029       return PARSER.parseFrom(data, extensionRegistry);
1030     }
1031
1032     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound parseFrom(
1033         byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
1034       return PARSER.parseFrom(data);
1035     }
1036
1037     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound parseFrom(
1038         byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1039         throws com.google.protobuf.InvalidProtocolBufferException {
1040       return PARSER.parseFrom(data, extensionRegistry);
1041     }
1042
1043     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound parseFrom(
1044         java.io.InputStream input) throws java.io.IOException {
1045       return PARSER.parseFrom(input);
1046     }
1047
1048     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound parseFrom(
1049         java.io.InputStream input,
1050         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1051         throws java.io.IOException {
1052       return PARSER.parseFrom(input, extensionRegistry);
1053     }
1054
1055     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound parseDelimitedFrom(
1056         java.io.InputStream input) throws java.io.IOException {
1057       return PARSER.parseDelimitedFrom(input);
1058     }
1059
1060     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound parseDelimitedFrom(
1061         java.io.InputStream input,
1062         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1063         throws java.io.IOException {
1064       return PARSER.parseDelimitedFrom(input, extensionRegistry);
1065     }
1066
1067     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound parseFrom(
1068         com.google.protobuf.CodedInputStream input) throws java.io.IOException {
1069       return PARSER.parseFrom(input);
1070     }
1071
1072     public static org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound parseFrom(
1073         com.google.protobuf.CodedInputStream input,
1074         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1075         throws java.io.IOException {
1076       return PARSER.parseFrom(input, extensionRegistry);
1077     }
1078
1079     public static Builder newBuilder() {
1080       return Builder.create();
1081     }
1082
1083     public Builder newBuilderForType() {
1084       return newBuilder();
1085     }
1086
1087     public static Builder newBuilder(
1088         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound prototype) {
1089       return newBuilder().mergeFrom(prototype);
1090     }
1091
1092     public Builder toBuilder() {
1093       return newBuilder(this);
1094     }
1095
1096     @java.lang.Override
1097     protected Builder newBuilderForType(
1098         com.google.protobuf.GeneratedMessage.BuilderParent parent) {
1099       Builder builder = new Builder(parent);
1100       return builder;
1101     }
1102
1103     /**
1104      * Protobuf type {@code org.opendaylight.controller.mdsal.PrimaryNotFound}
1105      */
1106     public static final class Builder extends
1107         com.google.protobuf.GeneratedMessage.Builder<Builder>
1108         implements
1109         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFoundOrBuilder {
1110       public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
1111         return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_PrimaryNotFound_descriptor;
1112       }
1113
1114       protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() {
1115         return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_PrimaryNotFound_fieldAccessorTable
1116             .ensureFieldAccessorsInitialized(
1117                 org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound.class,
1118                 org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound.Builder.class);
1119       }
1120
1121       // Construct using
1122       // org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound.newBuilder()
1123       private Builder() {
1124         maybeForceBuilderInitialization();
1125       }
1126
1127       private Builder(com.google.protobuf.GeneratedMessage.BuilderParent parent) {
1128         super(parent);
1129         maybeForceBuilderInitialization();
1130       }
1131
1132       private void maybeForceBuilderInitialization() {
1133         if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
1134         }
1135       }
1136
1137       private static Builder create() {
1138         return new Builder();
1139       }
1140
1141       public Builder clear() {
1142         super.clear();
1143         return this;
1144       }
1145
1146       public Builder clone() {
1147         return create().mergeFrom(buildPartial());
1148       }
1149
1150       public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
1151         return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.internal_static_org_opendaylight_controller_mdsal_PrimaryNotFound_descriptor;
1152       }
1153
1154       public org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound getDefaultInstanceForType() {
1155         return org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound
1156             .getDefaultInstance();
1157       }
1158
1159       public org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound build() {
1160         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound result =
1161             buildPartial();
1162         if (!result.isInitialized()) {
1163           throw newUninitializedMessageException(result);
1164         }
1165         return result;
1166       }
1167
1168       public org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound buildPartial() {
1169         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound result =
1170             new org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound(
1171                 this);
1172         onBuilt();
1173         return result;
1174       }
1175
1176       public Builder mergeFrom(com.google.protobuf.Message other) {
1177         if (other instanceof org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound) {
1178           return mergeFrom((org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound) other);
1179         } else {
1180           super.mergeFrom(other);
1181           return this;
1182         }
1183       }
1184
1185       public Builder mergeFrom(
1186           org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound other) {
1187         if (other == org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound
1188             .getDefaultInstance())
1189           return this;
1190         this.mergeUnknownFields(other.getUnknownFields());
1191         return this;
1192       }
1193
1194       public final boolean isInitialized() {
1195         return true;
1196       }
1197
1198       public Builder mergeFrom(com.google.protobuf.CodedInputStream input,
1199           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1200           throws java.io.IOException {
1201         org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound parsedMessage =
1202             null;
1203         try {
1204           parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
1205         } catch (com.google.protobuf.InvalidProtocolBufferException e) {
1206           parsedMessage =
1207               (org.opendaylight.controller.cluster.datastore.shard.ShardManagerMessages.PrimaryNotFound) e
1208                   .getUnfinishedMessage();
1209           throw e;
1210         } finally {
1211           if (parsedMessage != null) {
1212             mergeFrom(parsedMessage);
1213           }
1214         }
1215         return this;
1216       }
1217
1218       // @@protoc_insertion_point(builder_scope:org.opendaylight.controller.mdsal.PrimaryNotFound)
1219     }
1220
1221     static {
1222       defaultInstance = new PrimaryNotFound(true);
1223       defaultInstance.initFields();
1224     }
1225
1226     // @@protoc_insertion_point(class_scope:org.opendaylight.controller.mdsal.PrimaryNotFound)
1227   }
1228
1229   private static com.google.protobuf.Descriptors.Descriptor internal_static_org_opendaylight_controller_mdsal_FindPrimary_descriptor;
1230   private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_org_opendaylight_controller_mdsal_FindPrimary_fieldAccessorTable;
1231   private static com.google.protobuf.Descriptors.Descriptor internal_static_org_opendaylight_controller_mdsal_PrimaryFound_descriptor;
1232   private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_org_opendaylight_controller_mdsal_PrimaryFound_fieldAccessorTable;
1233   private static com.google.protobuf.Descriptors.Descriptor internal_static_org_opendaylight_controller_mdsal_PrimaryNotFound_descriptor;
1234   private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_org_opendaylight_controller_mdsal_PrimaryNotFound_fieldAccessorTable;
1235
1236   public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
1237     return descriptor;
1238   }
1239
1240   private static com.google.protobuf.Descriptors.FileDescriptor descriptor;
1241   static {
1242     java.lang.String[] descriptorData =
1243         {"\n\022ShardManager.proto\022!org.opendaylight.c"
1244             + "ontroller.mdsal\" \n\013FindPrimary\022\021\n\tshardN"
1245             + "ame\030\001 \002(\t\"\016\n\014PrimaryFound\"\021\n\017PrimaryNotF"
1246             + "oundBK\n3org.opendaylight.controller.clus"
1247             + "ter.datastore.shardB\024ShardManagerMessage" + "s"};
1248     com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
1249         new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() {
1250           public com.google.protobuf.ExtensionRegistry assignDescriptors(
1251               com.google.protobuf.Descriptors.FileDescriptor root) {
1252             descriptor = root;
1253             internal_static_org_opendaylight_controller_mdsal_FindPrimary_descriptor =
1254                 getDescriptor().getMessageTypes().get(0);
1255             internal_static_org_opendaylight_controller_mdsal_FindPrimary_fieldAccessorTable =
1256                 new com.google.protobuf.GeneratedMessage.FieldAccessorTable(
1257                     internal_static_org_opendaylight_controller_mdsal_FindPrimary_descriptor,
1258                     new java.lang.String[] {"ShardName",});
1259             internal_static_org_opendaylight_controller_mdsal_PrimaryFound_descriptor =
1260                 getDescriptor().getMessageTypes().get(1);
1261             internal_static_org_opendaylight_controller_mdsal_PrimaryFound_fieldAccessorTable =
1262                 new com.google.protobuf.GeneratedMessage.FieldAccessorTable(
1263                     internal_static_org_opendaylight_controller_mdsal_PrimaryFound_descriptor,
1264                     new java.lang.String[] {});
1265             internal_static_org_opendaylight_controller_mdsal_PrimaryNotFound_descriptor =
1266                 getDescriptor().getMessageTypes().get(2);
1267             internal_static_org_opendaylight_controller_mdsal_PrimaryNotFound_fieldAccessorTable =
1268                 new com.google.protobuf.GeneratedMessage.FieldAccessorTable(
1269                     internal_static_org_opendaylight_controller_mdsal_PrimaryNotFound_descriptor,
1270                     new java.lang.String[] {});
1271             return null;
1272           }
1273         };
1274     com.google.protobuf.Descriptors.FileDescriptor
1275         .internalBuildGeneratedFileFrom(descriptorData,
1276             new com.google.protobuf.Descriptors.FileDescriptor[]{}, assigner);
1277   }
1278
1279   // @@protoc_insertion_point(outer_class_scope)
1280 }