Package com.pc.dailymile.domain

Source Code of com.pc.dailymile.domain.Friends

/*
   Copyright 2010 platers.code

   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.pc.dailymile.domain;

import java.io.Serializable;
import java.util.Collections;
import java.util.Set;
import java.util.TreeSet;

import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;

/*
* {"friends":[
* {"username":"",
*  "display_name":"",
* "photo_url":"http://.jpg",
*  "url":"http://www.dailymile.com/people/",
*  "location":""},
* {"username":"",
*  "display_name":"",
*  "photo_url":"http://.jpg",
*  "url":"http://www.dailymile.com/people/",
*  "location":""}
* ]}
*/
public class Friends implements Serializable {
    private static final long serialVersionUID = 20120214L;
    private Set<User> friends;

    public Set<User> getFriends() {
        if (friends == null) {
            return Collections.emptySet();
        }
        return new TreeSet<User>(friends);
    }

    public void setFriends(Set<User> friends) {
        this.friends = new TreeSet<User>(friends);
    }
   
    @Override
    public String toString() {
        return new ToStringBuilder(this).append("friends", getFriends()).toString();
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder(11, 31).append(getFriends()).toHashCode();
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        Friends other = (Friends) obj;
        return new EqualsBuilder().append(getFriends(), other.getFriends()).isEquals();
    }
}
TOP

Related Classes of com.pc.dailymile.domain.Friends

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.