com.dice
Class LimitDataAnswer

java.lang.Object
  extended by com.dice.LimitDataAnswer

public class LimitDataAnswer
extends java.lang.Object

A block of data about service usage.

$RCSfile: LimitDataAnswer.html,v $
$Author: duket $
$Date: 2010/12/14 16:48:42 $

Original Author: duke _DOT_ takle _AT_ dice _DOT_ com
Date: February, 2010


Field Summary
protected  int groupHardLimit
          Not used at this time.
protected  int groupSoftLimit
          Not used at this time.
protected  int groupViewCount
          Not used at this time.
protected  java.lang.String message
          Some message about the quota view request if it was not successful
protected  int returnCode
          The return code for the quota view request, 0 implies success.
protected  int userHardLimit
          The number of calls to #viewCandidate() allowed by the user per month
protected  int userSoftLimit
          The arbitrary threshold that indicates the user progressing toward the hard limit
protected  int userViewCount
          The number of calls to #viewCandidate() the user has successfully made.
 
Constructor Summary
LimitDataAnswer()
           
 
Method Summary
 int getGroupHardLimit()
           
 int getGroupSoftLimit()
           
 int getGroupViewCount()
           
 java.lang.String getMessage()
           
 int getReturnCode()
           
 int getUserHardLimit()
           
 int getUserSoftLimit()
           
 int getUserViewCount()
           
 void setGroupHardLimit(int groupHardLimit)
           
 void setGroupSoftLimit(int groupSoftLimit)
           
 void setGroupViewCount(int groupViewCount)
           
 void setMessage(java.lang.String message)
           
 void setReturnCode(int returnCode)
           
 void setUserHardLimit(int userHardLimit)
           
 void setUserSoftLimit(int userSoftLimit)
           
 void setUserViewCount(int userViewCount)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

returnCode

protected int returnCode
The return code for the quota view request, 0 implies success.


message

protected java.lang.String message
Some message about the quota view request if it was not successful


userHardLimit

protected int userHardLimit
The number of calls to #viewCandidate() allowed by the user per month


groupHardLimit

protected int groupHardLimit
Not used at this time.


userSoftLimit

protected int userSoftLimit
The arbitrary threshold that indicates the user progressing toward the hard limit


groupSoftLimit

protected int groupSoftLimit
Not used at this time.


userViewCount

protected int userViewCount
The number of calls to #viewCandidate() the user has successfully made.


groupViewCount

protected int groupViewCount
Not used at this time.

Constructor Detail

LimitDataAnswer

public LimitDataAnswer()
Method Detail

getReturnCode

public int getReturnCode()

setReturnCode

public void setReturnCode(int returnCode)

getMessage

public java.lang.String getMessage()

setMessage

public void setMessage(java.lang.String message)

getUserHardLimit

public int getUserHardLimit()

setUserHardLimit

public void setUserHardLimit(int userHardLimit)

getGroupHardLimit

public int getGroupHardLimit()

setGroupHardLimit

public void setGroupHardLimit(int groupHardLimit)

getUserSoftLimit

public int getUserSoftLimit()

setUserSoftLimit

public void setUserSoftLimit(int userSoftLimit)

getGroupSoftLimit

public int getGroupSoftLimit()

setGroupSoftLimit

public void setGroupSoftLimit(int groupSoftLimit)

getUserViewCount

public int getUserViewCount()

setUserViewCount

public void setUserViewCount(int userViewCount)

getGroupViewCount

public int getGroupViewCount()

setGroupViewCount

public void setGroupViewCount(int groupViewCount)