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