summaryrefslogtreecommitdiffstats
path: root/gerrit-reviewdb/src/main/java/com/google/gerrit/reviewdb/ContactInformation.java
blob: d28467cd1e0ec8d93695fcdd7b9a2afb266f82b1 (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
// Copyright (C) 2008 The Android Open Source Project
//
// 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 com.google.gerrit.reviewdb;

import com.google.gwtorm.client.Column;

/** Non-Internet contact details, such as a postal address and telephone. */
public final class ContactInformation {
  @Column(id = 1, length = Integer.MAX_VALUE, notNull = false)
  protected String address;

  @Column(id = 2, notNull = false, length = 40)
  protected String country;

  @Column(id = 3, notNull = false, length = 30)
  protected String phoneNbr;

  @Column(id = 4, notNull = false, length = 30)
  protected String faxNbr;

  public ContactInformation() {
  }

  public String getAddress() {
    return address;
  }

  public void setAddress(final String a) {
    address = a;
  }

  public String getCountry() {
    return country;
  }

  public void setCountry(final String c) {
    country = c;
  }

  public String getPhoneNumber() {
    return phoneNbr;
  }

  public void setPhoneNumber(final String p) {
    phoneNbr = p;
  }

  public String getFaxNumber() {
    return faxNbr;
  }

  public void setFaxNumber(final String f) {
    faxNbr = f;
  }

  public static boolean hasData(final ContactInformation contactInformation) {
    if (contactInformation == null) {
      return false;
    }
    return hasData(contactInformation.address)
        || hasData(contactInformation.country)
        || hasData(contactInformation.phoneNbr)
        || hasData(contactInformation.faxNbr);
  }

  public static boolean hasAddress(final ContactInformation contactInformation) {
    return contactInformation != null && hasData(contactInformation.address);
  }

  private static boolean hasData(final String s) {
    return s != null && s.trim().length() > 0;
  }
}