blob: 5c1a50440ef03d1c06c4aed6cc5727cc1b3e934b [file] [log] [blame]
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* 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.apache.ws.scout.registry.infomodel;
import javax.xml.registry.JAXRException;
import javax.xml.registry.infomodel.EmailAddress;
/**
* Implements EmailAddress
* * Implements JAXR Interface.
* For futher details, look into the JAXR API Javadoc.
*
* @author Anil Saldhana <anil@apache.org>
*/
public class EmailAddressImpl implements EmailAddress
{
private String email;
private String type;
public EmailAddressImpl()
{
}
public EmailAddressImpl(String email)
{
this.email = email;
}
public EmailAddressImpl(String email, String type)
{
this.email = email;
this.type = type;
}
public String getAddress() throws JAXRException
{
return email;
}
public String getType() throws JAXRException
{
return type;
}
public void setAddress(String str) throws JAXRException
{
this.email = str;
}
public void setType(String str) throws JAXRException
{
this.type = str;
}
public boolean equals(Object o)
{
if (this == o) return true;
if (!(o instanceof EmailAddressImpl)) return false;
final EmailAddressImpl emailAddress = (EmailAddressImpl) o;
if (email != null ? !email.equals(emailAddress.email) : emailAddress.email != null) return false;
if (type != null ? !type.equals(emailAddress.type) : emailAddress.type != null) return false;
return true;
}
public int hashCode()
{
int result;
result = (email != null ? email.hashCode() : 0);
result = 29 * result + (type != null ? type.hashCode() : 0);
return result;
}
public String toString()
{
return email == null ? "null" : email;
}
}