001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.model;
016    
017    import com.liferay.portal.kernel.annotation.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     * <p>
034     * Never modify or reference this interface directly. All methods that expect a user tracker path model instance should use the {@link UserTrackerPath} interface instead.
035     * </p>
036     *
037     * @author Brian Wing Shun Chan
038     * @see UserTrackerPath
039     * @see com.liferay.portal.model.impl.UserTrackerPathImpl
040     * @see com.liferay.portal.model.impl.UserTrackerPathModelImpl
041     * @generated
042     */
043    public interface UserTrackerPathModel extends BaseModel<UserTrackerPath> {
044            /**
045             * Gets the primary key of this user tracker path.
046             *
047             * @return the primary key of this user tracker path
048             */
049            public long getPrimaryKey();
050    
051            /**
052             * Sets the primary key of this user tracker path
053             *
054             * @param pk the primary key of this user tracker path
055             */
056            public void setPrimaryKey(long pk);
057    
058            /**
059             * Gets the user tracker path id of this user tracker path.
060             *
061             * @return the user tracker path id of this user tracker path
062             */
063            public long getUserTrackerPathId();
064    
065            /**
066             * Sets the user tracker path id of this user tracker path.
067             *
068             * @param userTrackerPathId the user tracker path id of this user tracker path
069             */
070            public void setUserTrackerPathId(long userTrackerPathId);
071    
072            /**
073             * Gets the user tracker id of this user tracker path.
074             *
075             * @return the user tracker id of this user tracker path
076             */
077            public long getUserTrackerId();
078    
079            /**
080             * Sets the user tracker id of this user tracker path.
081             *
082             * @param userTrackerId the user tracker id of this user tracker path
083             */
084            public void setUserTrackerId(long userTrackerId);
085    
086            /**
087             * Gets the path of this user tracker path.
088             *
089             * @return the path of this user tracker path
090             */
091            @AutoEscape
092            public String getPath();
093    
094            /**
095             * Sets the path of this user tracker path.
096             *
097             * @param path the path of this user tracker path
098             */
099            public void setPath(String path);
100    
101            /**
102             * Gets the path date of this user tracker path.
103             *
104             * @return the path date of this user tracker path
105             */
106            public Date getPathDate();
107    
108            /**
109             * Sets the path date of this user tracker path.
110             *
111             * @param pathDate the path date of this user tracker path
112             */
113            public void setPathDate(Date pathDate);
114    
115            public boolean isNew();
116    
117            public void setNew(boolean n);
118    
119            public boolean isCachedModel();
120    
121            public void setCachedModel(boolean cachedModel);
122    
123            public boolean isEscapedModel();
124    
125            public void setEscapedModel(boolean escapedModel);
126    
127            public Serializable getPrimaryKeyObj();
128    
129            public ExpandoBridge getExpandoBridge();
130    
131            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
132    
133            public Object clone();
134    
135            public int compareTo(UserTrackerPath userTrackerPath);
136    
137            public int hashCode();
138    
139            public UserTrackerPath toEscapedModel();
140    
141            public String toString();
142    
143            public String toXmlString();
144    }