aboutsummaryrefslogtreecommitdiffstats
path: root/msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/model/catalog/ImmutableCatalogService.java
blob: c16b94ff0c07f16a6e721e34ac790ba9e9271548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
/**
 * Copyright 2016 ZTE Corporation.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.openo.msb.wrapper.consul.model.catalog;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.google.common.base.MoreObjects;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
import java.util.List;
import javax.annotation.Generated;

/**
 * Immutable implementation of {@link CatalogService}.
 * <p>
 * Use the builder to create immutable instances:
 * {@code ImmutableCatalogService.builder()}.
 */
@SuppressWarnings("all")
@Generated({"Immutables.generator", "CatalogService"})
@JsonIgnoreProperties(ignoreUnknown = true)
public final class ImmutableCatalogService extends CatalogService {
  private final String node;
  private final String address;
  private final String serviceName;
  private final String serviceId;
  private final String serviceAddress;
  private final int servicePort;
  private final ImmutableList<String> serviceTags;

  private ImmutableCatalogService(
      String node,
      String address,
      String serviceName,
      String serviceId,
      String serviceAddress,
      int servicePort,
      ImmutableList<String> serviceTags) {
    this.node = node;
    this.address = address;
    this.serviceName = serviceName;
    this.serviceId = serviceId;
    this.serviceAddress = serviceAddress;
    this.servicePort = servicePort;
    this.serviceTags = serviceTags;
  }

  /**
   * @return The value of the {@code node} attribute
   */
  @JsonProperty(value = "Node")
  @Override
  public String getNode() {
    return node;
  }

  /**
   * @return The value of the {@code address} attribute
   */
  @JsonProperty(value = "Address")
  @Override
  public String getAddress() {
    return address;
  }

  /**
   * @return The value of the {@code serviceName} attribute
   */
  @JsonProperty(value = "ServiceName")
  @Override
  public String getServiceName() {
    return serviceName;
  }

  /**
   * @return The value of the {@code serviceId} attribute
   */
  @JsonProperty(value = "ServiceID")
  @Override
  public String getServiceId() {
    return serviceId;
  }

  /**
   * @return The value of the {@code serviceAddress} attribute
   */
  @JsonProperty(value = "ServiceAddress")
  @Override
  public String getServiceAddress() {
    return serviceAddress;
  }

  /**
   * @return The value of the {@code servicePort} attribute
   */
  @JsonProperty(value = "ServicePort")
  @Override
  public int getServicePort() {
    return servicePort;
  }

  /**
   * @return The value of the {@code serviceTags} attribute
   */
  @JsonProperty(value = "ServiceTags")
  @Override
  public ImmutableList<String> getServiceTags() {
    return serviceTags;
  }

  /**
   * Copy the current immutable object by setting a value for the {@link CatalogService#getNode() node} attribute.
   * An equals check used to prevent copying of the same value by returning {@code this}.
   * @param value A new value for node
   * @return A modified copy of the {@code this} object
   */
  public final ImmutableCatalogService withNode(String value) {
    if (this.node.equals(value)) return this;
    return new ImmutableCatalogService(
        Preconditions.checkNotNull(value, "node"),
        this.address,
        this.serviceName,
        this.serviceId,
        this.serviceAddress,
        this.servicePort,
        this.serviceTags);
  }

  /**
   * Copy the current immutable object by setting a value for the {@link CatalogService#getAddress() address} attribute.
   * An equals check used to prevent copying of the same value by returning {@code this}.
   * @param value A new value for address
   * @return A modified copy of the {@code this} object
   */
  public final ImmutableCatalogService withAddress(String value) {
    if (this.address.equals(value)) return this;
    return new ImmutableCatalogService(
        this.node,
        Preconditions.checkNotNull(value, "address"),
        this.serviceName,
        this.serviceId,
        this.serviceAddress,
        this.servicePort,
        this.serviceTags);
  }

  /**
   * Copy the current immutable object by setting a value for the {@link CatalogService#getServiceName() serviceName} attribute.
   * An equals check used to prevent copying of the same value by returning {@code this}.
   * @param value A new value for serviceName
   * @return A modified copy of the {@code this} object
   */
  public final ImmutableCatalogService withServiceName(String value) {
    if (this.serviceName.equals(value)) return this;
    return new ImmutableCatalogService(
        this.node,
        this.address,
        Preconditions.checkNotNull(value, "serviceName"),
        this.serviceId,
        this.serviceAddress,
        this.servicePort,
        this.serviceTags);
  }

  /**
   * Copy the current immutable object by setting a value for the {@link CatalogService#getServiceId() serviceId} attribute.
   * An equals check used to prevent copying of the same value by returning {@code this}.
   * @param value A new value for serviceId
   * @return A modified copy of the {@code this} object
   */
  public final ImmutableCatalogService withServiceId(String value) {
    if (this.serviceId.equals(value)) return this;
    return new ImmutableCatalogService(
        this.node,
        this.address,
        this.serviceName,
        Preconditions.checkNotNull(value, "serviceId"),
        this.serviceAddress,
        this.servicePort,
        this.serviceTags);
  }

  /**
   * Copy the current immutable object by setting a value for the {@link CatalogService#getServiceAddress() serviceAddress} attribute.
   * An equals check used to prevent copying of the same value by returning {@code this}.
   * @param value A new value for serviceAddress
   * @return A modified copy of the {@code this} object
   */
  public final ImmutableCatalogService withServiceAddress(String value) {
    if (this.serviceAddress.equals(value)) return this;
    return new ImmutableCatalogService(
        this.node,
        this.address,
        this.serviceName,
        this.serviceId,
        Preconditions.checkNotNull(value, "serviceAddress"),
        this.servicePort,
        this.serviceTags);
  }

  /**
   * Copy the current immutable object by setting a value for the {@link CatalogService#getServicePort() servicePort} attribute.
   * A value equality check is used to prevent copying of the same value by returning {@code this}.
   * @param value A new value for servicePort
   * @return A modified copy of the {@code this} object
   */
  public final ImmutableCatalogService withServicePort(int value) {
    if (this.servicePort == value) return this;
    return new ImmutableCatalogService(
        this.node,
        this.address,
        this.serviceName,
        this.serviceId,
        this.serviceAddress,
        value,
        this.serviceTags);
  }

  /**
   * Copy the current immutable object with elements that replace the content of {@link CatalogService#getServiceTags() serviceTags}.
   * @param elements The elements to set
   * @return A modified copy of {@code this} object
   */
  public final ImmutableCatalogService withServiceTags(String... elements) {
    ImmutableList<String> newValue = ImmutableList.copyOf(elements);
    return new ImmutableCatalogService(
        this.node,
        this.address,
        this.serviceName,
        this.serviceId,
        this.serviceAddress,
        this.servicePort,
        newValue);
  }

  /**
   * Copy the current immutable object with elements that replace the content of {@link CatalogService#getServiceTags() serviceTags}.
   * A shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
   * @param elements An iterable of serviceTags elements to set
   * @return A modified copy of {@code this} object
   */
  public final ImmutableCatalogService withServiceTags(Iterable<String> elements) {
    if (this.serviceTags == elements) return this;
    ImmutableList<String> newValue = ImmutableList.copyOf(elements);
    return new ImmutableCatalogService(
        this.node,
        this.address,
        this.serviceName,
        this.serviceId,
        this.serviceAddress,
        this.servicePort,
        newValue);
  }

  /**
   * This instance is equal to all instances of {@code ImmutableCatalogService} that have equal attribute values.
   * @return {@code true} if {@code this} is equal to {@code another} instance
   */
  @Override
  public boolean equals(Object another) {
    if (this == another) return true;
    return another instanceof ImmutableCatalogService
        && equalTo((ImmutableCatalogService) another);
  }

  private boolean equalTo(ImmutableCatalogService another) {
    return node.equals(another.node)
        && address.equals(another.address)
        && serviceName.equals(another.serviceName)
        && serviceId.equals(another.serviceId)
        && serviceAddress.equals(another.serviceAddress)
        && servicePort == another.servicePort
        && serviceTags.equals(another.serviceTags);
  }

  /**
   * Computes a hash code from attributes: {@code node}, {@code address}, {@code serviceName}, {@code serviceId}, {@code serviceAddress}, {@code servicePort}, {@code serviceTags}.
   * @return hashCode value
   */
  @Override
  public int hashCode() {
    int h = 31;
    h = h * 17 + node.hashCode();
    h = h * 17 + address.hashCode();
    h = h * 17 + serviceName.hashCode();
    h = h * 17 + serviceId.hashCode();
    h = h * 17 + serviceAddress.hashCode();
    h = h * 17 + servicePort;
    h = h * 17 + serviceTags.hashCode();
    return h;
  }

  /**
   * Prints the immutable value {@code CatalogService...} with all non-generated
   * and non-auxiliary attribute values.
   * @return A string representation of the value
   */
  @Override
  public String toString() {
    return MoreObjects.toStringHelper("CatalogService")
        .add("node", node)
        .add("address", address)
        .add("serviceName", serviceName)
        .add("serviceId", serviceId)
        .add("serviceAddress", serviceAddress)
        .add("servicePort", servicePort)
        .add("serviceTags", serviceTags)
        .toString();
  }

  /**
   * Utility type used to correctly read immutable object from JSON representation.
   * @deprecated Do not use this type directly, it exists only for the <em>Jackson</em>-binding infrastructure
   */
  @Deprecated
  @JsonDeserialize
  static final class Json extends CatalogService {
    String node;
    String address;
    String serviceName;
    String serviceId;
    String serviceAddress;
    Integer servicePort;
    List<String> serviceTags = ImmutableList.of();
    @JsonProperty(value = "Node")
    public void setNode(String node) {
      this.node = node;
    }
    @JsonProperty(value = "Address")
    public void setAddress(String address) {
      this.address = address;
    }
    @JsonProperty(value = "ServiceName")
    public void setServiceName(String serviceName) {
      this.serviceName = serviceName;
    }
    @JsonProperty(value = "ServiceID")
    public void setServiceId(String serviceId) {
      this.serviceId = serviceId;
    }
    @JsonProperty(value = "ServiceAddress")
    public void setServiceAddress(String serviceAddress) {
      this.serviceAddress = serviceAddress;
    }
    @JsonProperty(value = "ServicePort")
    public void setServicePort(int servicePort) {
      this.servicePort = servicePort;
    }
    @JsonProperty(value = "ServiceTags")
    public void setServiceTags(List<String> serviceTags) {
      this.serviceTags = serviceTags;
    }
    @Override
    public String getNode() { throw new UnsupportedOperationException(); }
    @Override
    public String getAddress() { throw new UnsupportedOperationException(); }
    @Override
    public String getServiceName() { throw new UnsupportedOperationException(); }
    @Override
    public String getServiceId() { throw new UnsupportedOperationException(); }
    @Override
    public String getServiceAddress() { throw new UnsupportedOperationException(); }
    @Override
    public int getServicePort() { throw new UnsupportedOperationException(); }
    @Override
    public List<String> getServiceTags() { throw new UnsupportedOperationException(); }
  }

  /**
   * @param json A JSON-bindable data structure
   * @return An immutable value type
   * @deprecated Do not use this method directly, it exists only for the <em>Jackson</em>-binding infrastructure
   */
  @Deprecated
  @JsonCreator
  static ImmutableCatalogService fromJson(Json json) {
    ImmutableCatalogService.Builder builder = ImmutableCatalogService.builder();
    if (json.node != null) {
      builder.node(json.node);
    }
    if (json.address != null) {
      builder.address(json.address);
    }
    if (json.serviceName != null) {
      builder.serviceName(json.serviceName);
    }
    if (json.serviceId != null) {
      builder.serviceId(json.serviceId);
    }
    if (json.serviceAddress != null) {
      builder.serviceAddress(json.serviceAddress);
    }
    if (json.servicePort != null) {
      builder.servicePort(json.servicePort);
    }
    if (json.serviceTags != null) {
      builder.addAllServiceTags(json.serviceTags);
    }
    return builder.build();
  }

  /**
   * Creates an immutable copy of a {@link CatalogService} value.
   * Uses accessors to get values to initialize the new immutable instance.
   * If an instance is already immutable, it is returned as is.
   * @param instance The instance to copy
   * @return A copied immutable CatalogService instance
   */
  public static ImmutableCatalogService copyOf(CatalogService instance) {
    if (instance instanceof ImmutableCatalogService) {
      return (ImmutableCatalogService) instance;
    }
    return ImmutableCatalogService.builder()
        .from(instance)
        .build();
  }

  /**
   * Creates a builder for {@link ImmutableCatalogService ImmutableCatalogService}.
   * @return A new ImmutableCatalogService builder
   */
  public static ImmutableCatalogService.Builder builder() {
    return new ImmutableCatalogService.Builder();
  }

  /**
   * Builds instances of type {@link ImmutableCatalogService ImmutableCatalogService}.
   * Initialize attributes and then invoke the {@link #build()} method to create an
   * immutable instance.
   * <p><em>{@code Builder} is not thread-safe and generally should not be stored in a field or collection,
   * but instead used immediately to create instances.</em>
   */
  public static final class Builder {
    private static final long INIT_BIT_NODE = 0x1L;
    private static final long INIT_BIT_ADDRESS = 0x2L;
    private static final long INIT_BIT_SERVICE_NAME = 0x4L;
    private static final long INIT_BIT_SERVICE_ID = 0x8L;
    private static final long INIT_BIT_SERVICE_ADDRESS = 0x10L;
    private static final long INIT_BIT_SERVICE_PORT = 0x20L;
    private long initBits = 0x3f;

    private String node;
    private String address;
    private String serviceName;
    private String serviceId;
    private String serviceAddress;
    private int servicePort;
    private ImmutableList.Builder<String> serviceTagsBuilder = ImmutableList.builder();

    private Builder() {
    }

    /**
     * Fill a builder with attribute values from the provided {@code CatalogService} instance.
     * Regular attribute values will be replaced with those from the given instance.
     * Absent optional values will not replace present values.
     * Collection elements and entries will be added, not replaced.
     * @param instance The instance from which to copy values
     * @return {@code this} builder for use in a chained invocation
     */
    public final Builder from(CatalogService instance) {
      Preconditions.checkNotNull(instance, "instance");
      node(instance.getNode());
      address(instance.getAddress());
      serviceName(instance.getServiceName());
      serviceId(instance.getServiceId());
      serviceAddress(instance.getServiceAddress());
      servicePort(instance.getServicePort());
      addAllServiceTags(instance.getServiceTags());
      return this;
    }

    /**
     * Initializes the value for the {@link CatalogService#getNode() node} attribute.
     * @param node The value for node 
     * @return {@code this} builder for use in a chained invocation
     */
    public final Builder node(String node) {
      this.node = Preconditions.checkNotNull(node, "node");
      initBits &= ~INIT_BIT_NODE;
      return this;
    }

    /**
     * Initializes the value for the {@link CatalogService#getAddress() address} attribute.
     * @param address The value for address 
     * @return {@code this} builder for use in a chained invocation
     */
    public final Builder address(String address) {
      this.address = Preconditions.checkNotNull(address, "address");
      initBits &= ~INIT_BIT_ADDRESS;
      return this;
    }

    /**
     * Initializes the value for the {@link CatalogService#getServiceName() serviceName} attribute.
     * @param serviceName The value for serviceName 
     * @return {@code this} builder for use in a chained invocation
     */
    public final Builder serviceName(String serviceName) {
      this.serviceName = Preconditions.checkNotNull(serviceName, "serviceName");
      initBits &= ~INIT_BIT_SERVICE_NAME;
      return this;
    }

    /**
     * Initializes the value for the {@link CatalogService#getServiceId() serviceId} attribute.
     * @param serviceId The value for serviceId 
     * @return {@code this} builder for use in a chained invocation
     */
    public final Builder serviceId(String serviceId) {
      this.serviceId = Preconditions.checkNotNull(serviceId, "serviceId");
      initBits &= ~INIT_BIT_SERVICE_ID;
      return this;
    }

    /**
     * Initializes the value for the {@link CatalogService#getServiceAddress() serviceAddress} attribute.
     * @param serviceAddress The value for serviceAddress 
     * @return {@code this} builder for use in a chained invocation
     */
    public final Builder serviceAddress(String serviceAddress) {
      this.serviceAddress = Preconditions.checkNotNull(serviceAddress, "serviceAddress");
      initBits &= ~INIT_BIT_SERVICE_ADDRESS;
      return this;
    }

    /**
     * Initializes the value for the {@link CatalogService#getServicePort() servicePort} attribute.
     * @param servicePort The value for servicePort 
     * @return {@code this} builder for use in a chained invocation
     */
    public final Builder servicePort(int servicePort) {
      this.servicePort = servicePort;
      initBits &= ~INIT_BIT_SERVICE_PORT;
      return this;
    }

    /**
     * Adds one element to {@link CatalogService#getServiceTags() serviceTags} list.
     * @param element A serviceTags element
     * @return {@code this} builder for use in a chained invocation
     */
    public final Builder addServiceTags(String element) {
      serviceTagsBuilder.add(element);
      return this;
    }

    /**
     * Adds elements to {@link CatalogService#getServiceTags() serviceTags} list.
     * @param elements An array of serviceTags elements
     * @return {@code this} builder for use in a chained invocation
     */
    public final Builder addServiceTags(String... elements) {
      serviceTagsBuilder.add(elements);
      return this;
    }

    /**
     * Sets or replaces all elements for {@link CatalogService#getServiceTags() serviceTags} list.
     * @param elements An iterable of serviceTags elements
     * @return {@code this} builder for use in a chained invocation
     */
    public final Builder serviceTags(Iterable<String> elements) {
      serviceTagsBuilder = ImmutableList.builder();
      return addAllServiceTags(elements);
    }

    /**
     * Adds elements to {@link CatalogService#getServiceTags() serviceTags} list.
     * @param elements An iterable of serviceTags elements
     * @return {@code this} builder for use in a chained invocation
     */
    public final Builder addAllServiceTags(Iterable<String> elements) {
      serviceTagsBuilder.addAll(elements);
      return this;
    }

    /**
     * Builds a new {@link ImmutableCatalogService ImmutableCatalogService}.
     * @return An immutable instance of CatalogService
     * @throws java.lang.IllegalStateException if any required attributes are missing
     */
    public ImmutableCatalogService build() throws IllegalStateException {
      if (initBits != 0) {
        throw new IllegalStateException(formatRequiredAttributesMessage());
      }
      return new ImmutableCatalogService(
          node,
          address,
          serviceName,
          serviceId,
          serviceAddress,
          servicePort,
          serviceTagsBuilder.build());
    }

    private String formatRequiredAttributesMessage() {
      List<String> attributes = Lists.newArrayList();
      if ((initBits & INIT_BIT_NODE) != 0) attributes.add("node");
      if ((initBits & INIT_BIT_ADDRESS) != 0) attributes.add("address");
      if ((initBits & INIT_BIT_SERVICE_NAME) != 0) attributes.add("serviceName");
      if ((initBits & INIT_BIT_SERVICE_ID) != 0) attributes.add("serviceId");
      if ((initBits & INIT_BIT_SERVICE_ADDRESS) != 0) attributes.add("serviceAddress");
      if ((initBits & INIT_BIT_SERVICE_PORT) != 0) attributes.add("servicePort");
      return "Cannot build CatalogService, some of required attributes are not set " + attributes;
    }
  }
}