pl.bcichecki.rms.client.android.model.impl.Event.java Source code

Java tutorial

Introduction

Here is the source code for pl.bcichecki.rms.client.android.model.impl.Event.java

Source

/**
 * Project:   rms-client-android
 * File:      Event.java
 * License: 
 *            This file is licensed under GNU General Public License version 3
 *            http://www.gnu.org/licenses/gpl-3.0.txt
 *
 * Copyright: Bartosz Cichecki [ cichecki.bartosz@gmail.com ]
 * Date:      12-12-2012
 */

package pl.bcichecki.rms.client.android.model.impl;

import java.io.Serializable;
import java.util.Date;
import java.util.Set;

import org.apache.commons.lang3.StringUtils;

import pl.bcichecki.rms.client.android.model.AbstractPOJO;
import pl.bcichecki.rms.client.android.model.Mergeable;

/**
 * @author Bartosz Cichecki
 */
public class Event extends AbstractPOJO implements Serializable, Mergeable<Event> {

    private static final long serialVersionUID = -6149510997653672596L;

    protected String title;

    protected EventType type;

    protected String description;

    protected Date startDate;

    protected Date endDate;

    protected AddressData address;

    protected Set<User> participants;

    protected Set<Device> devices;

    protected boolean locked;

    protected boolean archived;

    protected boolean deleted;

    public Event() {
        super();
    }

    public Event(String title, EventType type, String description, Date startDate, Date endDate,
            AddressData address, Set<User> participants, Set<Device> devices, boolean locked, boolean archived,
            boolean deleted) {
        super();
        this.title = title;
        this.type = type;
        this.description = description;
        this.startDate = startDate;
        this.endDate = endDate;
        this.address = address;
        this.participants = participants;
        this.devices = devices;
        this.locked = locked;
        this.archived = archived;
        this.deleted = deleted;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!super.equals(obj)) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        Event other = (Event) obj;
        if (address == null) {
            if (other.address != null) {
                return false;
            }
        } else if (!address.equals(other.address)) {
            return false;
        }
        if (archived != other.archived) {
            return false;
        }
        if (deleted != other.deleted) {
            return false;
        }
        if (description == null) {
            if (other.description != null) {
                return false;
            }
        } else if (!description.equals(other.description)) {
            return false;
        }
        if (devices == null) {
            if (other.devices != null) {
                return false;
            }
        } else if (!devices.equals(other.devices)) {
            return false;
        }
        if (endDate == null) {
            if (other.endDate != null) {
                return false;
            }
        } else if (!endDate.equals(other.endDate)) {
            return false;
        }
        if (locked != other.locked) {
            return false;
        }
        if (participants == null) {
            if (other.participants != null) {
                return false;
            }
        } else if (!participants.equals(other.participants)) {
            return false;
        }
        if (startDate == null) {
            if (other.startDate != null) {
                return false;
            }
        } else if (!startDate.equals(other.startDate)) {
            return false;
        }
        if (title == null) {
            if (other.title != null) {
                return false;
            }
        } else if (!title.equals(other.title)) {
            return false;
        }
        if (type != other.type) {
            return false;
        }
        return true;
    }

    public AddressData getAddress() {
        return address;
    }

    public String getDescription() {
        return description;
    }

    public Set<Device> getDevices() {
        return devices;
    }

    public Date getEndDate() {
        return endDate;
    }

    public Set<User> getParticipants() {
        return participants;
    }

    public Date getStartDate() {
        return startDate;
    }

    public String getTitle() {
        return title;
    }

    public EventType getType() {
        return type;
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = super.hashCode();
        result = prime * result + (address == null ? 0 : address.hashCode());
        result = prime * result + (archived ? 1231 : 1237);
        result = prime * result + (deleted ? 1231 : 1237);
        result = prime * result + (description == null ? 0 : description.hashCode());
        result = prime * result + (devices == null ? 0 : devices.hashCode());
        result = prime * result + (endDate == null ? 0 : endDate.hashCode());
        result = prime * result + (locked ? 1231 : 1237);
        result = prime * result + (participants == null ? 0 : participants.hashCode());
        result = prime * result + (startDate == null ? 0 : startDate.hashCode());
        result = prime * result + (title == null ? 0 : title.hashCode());
        result = prime * result + (type == null ? 0 : type.hashCode());
        return result;
    }

    public boolean isArchived() {
        return archived;
    }

    public boolean isDeleted() {
        return deleted;
    }

    public boolean isLocked() {
        return locked;
    }

    public boolean isUserSignedUp(User userProfile) {
        for (User participant : participants) {
            if (participant.getId().equals(userProfile.getId())) {
                return true;
            }
        }
        return false;
    }

    @Override
    public void merge(Event event) {
        setTitle(StringUtils.defaultString(event.getTitle()));
        setType(event.getType());
        setDescription(StringUtils.defaultIfBlank(event.getDescription(), null));
        setStartDate(event.getStartDate());
        setEndDate(event.getEndDate());
        setAddress(event.getAddress());
        setParticipants(event.getParticipants());
        setDevices(event.getDevices());
        setLocked(event.isLocked());
        setArchived(event.isArchived());
        setDeleted(event.isDeleted());

    }

    public void setAddress(AddressData address) {
        this.address = address;
    }

    public void setArchived(boolean archived) {
        this.archived = archived;
    }

    public void setDeleted(boolean deleted) {
        this.deleted = deleted;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public void setDevices(Set<Device> devices) {
        this.devices = devices;
    }

    public void setEndDate(Date endDate) {
        this.endDate = endDate;
    }

    public void setLocked(boolean locked) {
        this.locked = locked;
    }

    public void setParticipants(Set<User> participants) {
        this.participants = participants;
    }

    public void setStartDate(Date startDate) {
        this.startDate = startDate;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public void setType(EventType type) {
        this.type = type;
    }

    @Override
    public String toString() {
        return "Event [title=" + title + ", type=" + type + ", description=" + description + ", startDate="
                + startDate + ", endDate=" + endDate + ", address=" + address + ", participants=" + participants
                + ", devices=" + devices + ", locked=" + locked + ", archived=" + archived + ", deleted=" + deleted
                + ", id=" + id + ", creationUserId=" + creationUserId + ", modificationUserId=" + modificationUserId
                + ", creationDate=" + creationDate + ", modificationDate=" + modificationDate + ", version="
                + version + "]";
    }

}