001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model;
016    
017    import com.liferay.portal.kernel.bean.AutoEscape;
018    import com.liferay.portal.service.ServiceContext;
019    
020    import com.liferay.portlet.expando.model.ExpandoBridge;
021    
022    import java.io.Serializable;
023    
024    import java.util.Date;
025    
026    /**
027     * The base model interface for the UserTrackerPath service. Represents a row in the "UserTrackerPath" database table, with each column mapped to a property of this class.
028     *
029     * <p>
030     * This interface and its corresponding implementation {@link com.liferay.portal.model.impl.UserTrackerPathModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link com.liferay.portal.model.impl.UserTrackerPathImpl}.
031     * </p>
032     *
033     * @author Brian Wing Shun Chan
034     * @see UserTrackerPath
035     * @see com.liferay.portal.model.impl.UserTrackerPathImpl
036     * @see com.liferay.portal.model.impl.UserTrackerPathModelImpl
037     * @generated
038     */
039    public interface UserTrackerPathModel extends BaseModel<UserTrackerPath> {
040            /*
041             * NOTE FOR DEVELOPERS:
042             *
043             * Never modify or reference this interface directly. All methods that expect a user tracker path model instance should use the {@link UserTrackerPath} interface instead.
044             */
045    
046            /**
047             * Returns the primary key of this user tracker path.
048             *
049             * @return the primary key of this user tracker path
050             */
051            public long getPrimaryKey();
052    
053            /**
054             * Sets the primary key of this user tracker path.
055             *
056             * @param primaryKey the primary key of this user tracker path
057             */
058            public void setPrimaryKey(long primaryKey);
059    
060            /**
061             * Returns the user tracker path ID of this user tracker path.
062             *
063             * @return the user tracker path ID of this user tracker path
064             */
065            public long getUserTrackerPathId();
066    
067            /**
068             * Sets the user tracker path ID of this user tracker path.
069             *
070             * @param userTrackerPathId the user tracker path ID of this user tracker path
071             */
072            public void setUserTrackerPathId(long userTrackerPathId);
073    
074            /**
075             * Returns the user tracker ID of this user tracker path.
076             *
077             * @return the user tracker ID of this user tracker path
078             */
079            public long getUserTrackerId();
080    
081            /**
082             * Sets the user tracker ID of this user tracker path.
083             *
084             * @param userTrackerId the user tracker ID of this user tracker path
085             */
086            public void setUserTrackerId(long userTrackerId);
087    
088            /**
089             * Returns the path of this user tracker path.
090             *
091             * @return the path of this user tracker path
092             */
093            @AutoEscape
094            public String getPath();
095    
096            /**
097             * Sets the path of this user tracker path.
098             *
099             * @param path the path of this user tracker path
100             */
101            public void setPath(String path);
102    
103            /**
104             * Returns the path date of this user tracker path.
105             *
106             * @return the path date of this user tracker path
107             */
108            public Date getPathDate();
109    
110            /**
111             * Sets the path date of this user tracker path.
112             *
113             * @param pathDate the path date of this user tracker path
114             */
115            public void setPathDate(Date pathDate);
116    
117            public boolean isNew();
118    
119            public void setNew(boolean n);
120    
121            public boolean isCachedModel();
122    
123            public void setCachedModel(boolean cachedModel);
124    
125            public boolean isEscapedModel();
126    
127            public Serializable getPrimaryKeyObj();
128    
129            public void setPrimaryKeyObj(Serializable primaryKeyObj);
130    
131            public ExpandoBridge getExpandoBridge();
132    
133            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
134    
135            public Object clone();
136    
137            public int compareTo(UserTrackerPath userTrackerPath);
138    
139            public int hashCode();
140    
141            public CacheModel<UserTrackerPath> toCacheModel();
142    
143            public UserTrackerPath toEscapedModel();
144    
145            public UserTrackerPath toUnescapedModel();
146    
147            public String toString();
148    
149            public String toXmlString();
150    }