/* * The MIT License * * Copyright 2010 Sony Ericsson Mobile Communications. * Copyright 2013 Sony Mobile Communications AB. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package com.sonymobile.tools.gerrit.gerritevents.dto.attr; import com.sonymobile.tools.gerrit.gerritevents.dto.GerritJsonDTO; import net.sf.json.JSONObject; import static com.sonymobile.tools.gerrit.gerritevents.GerritJsonEventFactory.getString; import static com.sonymobile.tools.gerrit.gerritevents.dto.GerritEventKeys.EMAIL; import static com.sonymobile.tools.gerrit.gerritevents.dto.GerritEventKeys.NAME; import static com.sonymobile.tools.gerrit.gerritevents.dto.GerritEventKeys.USERNAME; /** * Represents a Gerrit JSON Account DTO. * An account that is related to an event or attribute. * * @author Robert Sandell <robert.sandell@sonyericsson.com> */ public class Account implements GerritJsonDTO { /** * Account user's full name. */ private String name; /** * Account user's preferred email. */ private String email; /** * Account username. */ private String username; /** * Default constructor. */ public Account() { } /** * Constructor that fills with data directly. * * @param json the JSON Object with data. * @see #fromJson(net.sf.json.JSONObject) */ public Account(JSONObject json) { this.fromJson(json); } /** * For easier testing. * @param name the name. * @param email the email. */ public Account(String name, String email) { this.name = name; this.email = email; } @Override public void fromJson(JSONObject json) { name = getString(json, NAME); email = getString(json, EMAIL); username = getString(json, USERNAME); } /** * Account user's preferred email. * * @return the email. */ public String getEmail() { return email; } /** * Account user's preferred email. * * @param email the email */ public void setEmail(String email) { this.email = email; } /** * Account user's full name. * * @return the name. */ public String getName() { return name; } /** * Account user's full name. * * @param name the full name */ public void setName(String name) { this.name = name; } /** * Account username. * * @return the username. */ public String getUsername() { return username; } /** * Account username. * * @param username the username */ public void setUsername(String username) { this.username = username; } /** * Gives the full name and email in the format <code>"name" <email@somewhere.com></code>. * If either the name or the email is null then null is returned. * If either is an empty string then an empty string is returned. * * @return the name and email in one string. */ public String getNameAndEmail() { if (name == null || email == null) { return null; } else if (email.isEmpty() || name.isEmpty()) { return ""; } else { StringBuffer str = new StringBuffer("\""); str.append(name).append("\" <").append(email).append(">"); return str.toString(); } } //CS IGNORE NeedBraces FOR NEXT 22 LINES. REASON: Auto generated code. //CS IGNORE MagicNumber FOR NEXT 22 LINES. REASON: Auto generated code. //CS IGNORE AvoidInlineConditionals FOR NEXT 22 LINES. REASON: Auto generated code. @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; Account account = (Account)o; if (email != null ? !email.equals(account.email) : account.email != null) return false; if (name != null ? !name.equals(account.name) : account.name != null) return false; return true; } @Override public int hashCode() { int result = name != null ? name.hashCode() : 0; result = 31 * result + (email != null ? email.hashCode() : 0); return result; } }