Package com.liferay.portlet.polls.model

Source Code of com.liferay.portlet.polls.model.PollsVoteModel

/**
* Copyright (c) 2000-2005 Liferay, LLC. 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.liferay.portlet.polls.model;

import java.util.Date;

import com.liferay.portal.model.BaseModel;
import com.liferay.portal.util.PropsUtil;
import com.liferay.portlet.polls.ejb.PollsVotePK;
import com.liferay.util.GetterUtil;
import com.liferay.util.Xss;

/**
* <a href="PollsVoteModel.java.html"><b><i>View Source</i></b></a>
*
* @author  Brian Wing Shun Chan
* @version $Revision: 1.74 $
*
*/
public class PollsVoteModel extends BaseModel {
  public static boolean CACHEABLE = GetterUtil.get(PropsUtil.get(
        "value.object.cacheable.com.liferay.portlet.polls.model.PollsVote"),
      VALUE_OBJECT_CACHEABLE);
  public static int MAX_SIZE = GetterUtil.get(PropsUtil.get(
        "value.object.max.size.com.liferay.portlet.polls.model.PollsVote"),
      VALUE_OBJECT_MAX_SIZE);
  public static boolean XSS_ALLOW_BY_MODEL = GetterUtil.get(PropsUtil.get(
        "xss.allow.com.liferay.portlet.polls.model.PollsVote"),
      XSS_ALLOW);
  public static boolean XSS_ALLOW_QUESTIONID = GetterUtil.get(PropsUtil.get(
        "xss.allow.com.liferay.portlet.polls.model.PollsVote.questionId"),
      XSS_ALLOW_BY_MODEL);
  public static boolean XSS_ALLOW_USERID = GetterUtil.get(PropsUtil.get(
        "xss.allow.com.liferay.portlet.polls.model.PollsVote.userId"),
      XSS_ALLOW_BY_MODEL);
  public static boolean XSS_ALLOW_CHOICEID = GetterUtil.get(PropsUtil.get(
        "xss.allow.com.liferay.portlet.polls.model.PollsVote.choiceId"),
      XSS_ALLOW_BY_MODEL);
  public static long LOCK_EXPIRATION_TIME = GetterUtil.getLong(PropsUtil.get(
        "lock.expiration.time.com.liferay.portlet.polls.model.PollsVoteModel"));

  public PollsVoteModel() {
  }

  public PollsVoteModel(PollsVotePK pk) {
    _questionId = pk.questionId;
    _userId = pk.userId;
    setNew(true);
  }

  public PollsVoteModel(String questionId, String userId, String choiceId,
    Date voteDate) {
    _questionId = questionId;
    _userId = userId;
    _choiceId = choiceId;
    _voteDate = voteDate;
  }

  public PollsVotePK getPrimaryKey() {
    return new PollsVotePK(_questionId, _userId);
  }

  public String getQuestionId() {
    return _questionId;
  }

  public void setQuestionId(String questionId) {
    if (((questionId == null) && (_questionId != null)) ||
        ((questionId != null) && (_questionId == null)) ||
        ((questionId != null) && (_questionId != null) &&
        !questionId.equals(_questionId))) {
      if (!XSS_ALLOW_QUESTIONID) {
        questionId = Xss.strip(questionId);
      }

      _questionId = questionId;
      setModified(true);
    }
  }

  public String getUserId() {
    return _userId;
  }

  public void setUserId(String userId) {
    if (((userId == null) && (_userId != null)) ||
        ((userId != null) && (_userId == null)) ||
        ((userId != null) && (_userId != null) &&
        !userId.equals(_userId))) {
      if (!XSS_ALLOW_USERID) {
        userId = Xss.strip(userId);
      }

      _userId = userId;
      setModified(true);
    }
  }

  public String getChoiceId() {
    return _choiceId;
  }

  public void setChoiceId(String choiceId) {
    if (((choiceId == null) && (_choiceId != null)) ||
        ((choiceId != null) && (_choiceId == null)) ||
        ((choiceId != null) && (_choiceId != null) &&
        !choiceId.equals(_choiceId))) {
      if (!XSS_ALLOW_CHOICEID) {
        choiceId = Xss.strip(choiceId);
      }

      _choiceId = choiceId;
      setModified(true);
    }
  }

  public Date getVoteDate() {
    return _voteDate;
  }

  public void setVoteDate(Date voteDate) {
    if (((voteDate == null) && (_voteDate != null)) ||
        ((voteDate != null) && (_voteDate == null)) ||
        ((voteDate != null) && (_voteDate != null) &&
        !voteDate.equals(_voteDate))) {
      _voteDate = voteDate;
      setModified(true);
    }
  }

  public BaseModel getProtected() {
    return null;
  }

  public void protect() {
  }

  public Object clone() {
    return new PollsVote(getQuestionId(), getUserId(), getChoiceId(),
      getVoteDate());
  }

  public int compareTo(Object obj) {
    if (obj == null) {
      return -1;
    }

    PollsVote pollsVote = (PollsVote)obj;
    PollsVotePK pk = pollsVote.getPrimaryKey();

    return getPrimaryKey().compareTo(pk);
  }

  public boolean equals(Object obj) {
    if (obj == null) {
      return false;
    }

    PollsVote pollsVote = null;

    try {
      pollsVote = (PollsVote)obj;
    }
    catch (ClassCastException cce) {
      return false;
    }

    PollsVotePK pk = pollsVote.getPrimaryKey();

    if (getPrimaryKey().equals(pk)) {
      return true;
    }
    else {
      return false;
    }
  }

  public int hashCode() {
    return getPrimaryKey().hashCode();
  }

  private String _questionId;
  private String _userId;
  private String _choiceId;
  private Date _voteDate;
}
TOP

Related Classes of com.liferay.portlet.polls.model.PollsVoteModel

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.