com.liferay.portal.model
Interface UserTracker

All Superinterfaces:
BaseModel<UserTracker>, java.lang.Cloneable, java.lang.Comparable<UserTracker>, java.io.Serializable, UserTrackerModel
All Known Implementing Classes:
UserTrackerWrapper

public interface UserTracker
extends UserTrackerModel

The model interface for the UserTracker service. Represents a row in the "UserTracker" database table, with each column mapped to a property of this class.

Never modify this interface directly. Add methods to UserTrackerImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.

Never reference this interface directly. All methods that expect a user tracker model instance should use the UserTracker interface instead.

Author:
Brian Wing Shun Chan
See Also:
UserTrackerModel, UserTrackerImpl, UserTrackerModelImpl
Generated:

Method Summary
 void addPath(UserTrackerPath path)
           
 int compareTo(UserTracker userTracker)
           
 java.lang.String getEmailAddress()
           
 java.lang.String getFullName()
           
 int getHits()
           
 java.util.List<UserTrackerPath> getPaths()
           
 
Methods inherited from interface com.liferay.portal.model.UserTrackerModel
clone, getCompanyId, getExpandoBridge, getModifiedDate, getPrimaryKey, getPrimaryKeyObj, getRemoteAddr, getRemoteHost, getSessionId, getUserAgent, getUserId, getUserTrackerId, getUserUuid, hashCode, isCachedModel, isEscapedModel, isNew, setCachedModel, setCompanyId, setEscapedModel, setExpandoBridgeAttributes, setModifiedDate, setNew, setPrimaryKey, setRemoteAddr, setRemoteHost, setSessionId, setUserAgent, setUserId, setUserTrackerId, setUserUuid, toEscapedModel, toString, toXmlString
 

Method Detail

getFullName

java.lang.String getFullName()

getEmailAddress

java.lang.String getEmailAddress()

getPaths

java.util.List<UserTrackerPath> getPaths()

addPath

void addPath(UserTrackerPath path)

getHits

int getHits()

compareTo

int compareTo(UserTracker userTracker)
Specified by:
compareTo in interface java.lang.Comparable<UserTracker>
Specified by:
compareTo in interface UserTrackerModel