/*
* Copyright 2010-2011 Ning, Inc.
*
* Ning licenses this file to you 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.ning.billing.account.api;
import com.ning.billing.util.entity.UpdatableEntityBase;
import java.util.UUID;
public class DefaultAccountEmail extends UpdatableEntityBase implements AccountEmail {
private final UUID accountId;
private final String email;
public DefaultAccountEmail(UUID accountId, String email) {
super();
this.accountId = accountId;
this.email = email;
}
public DefaultAccountEmail(AccountEmail source, String newEmail) {
this(source.getAccountId(), newEmail);
}
public DefaultAccountEmail(UUID id, UUID accountId, String email) {
super(id);
this.accountId = accountId;
this.email = email;
}
@Override
public UUID getAccountId() {
return accountId;
}
@Override
public String getEmail() {
return email;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
DefaultAccountEmail that = (DefaultAccountEmail) o;
if (!accountId.equals(that.accountId)) return false;
if (!email.equals(that.email)) return false;
return true;
}
@Override
public int hashCode() {
int result = accountId.hashCode();
result = 31 * result + email.hashCode();
return result;
}
}