001 /** 002 * Copyright (c) 2000-present 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 aQute.bnd.annotation.ProviderType; 018 019 import com.liferay.portal.kernel.bean.AutoEscape; 020 import com.liferay.portal.service.ServiceContext; 021 022 import com.liferay.portlet.expando.model.ExpandoBridge; 023 024 import java.io.Serializable; 025 026 import java.util.Date; 027 028 /** 029 * 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. 030 * 031 * <p> 032 * 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}. 033 * </p> 034 * 035 * @author Brian Wing Shun Chan 036 * @see UserTrackerPath 037 * @see com.liferay.portal.model.impl.UserTrackerPathImpl 038 * @see com.liferay.portal.model.impl.UserTrackerPathModelImpl 039 * @generated 040 */ 041 @ProviderType 042 public interface UserTrackerPathModel extends BaseModel<UserTrackerPath>, 043 MVCCModel { 044 /* 045 * NOTE FOR DEVELOPERS: 046 * 047 * Never modify or reference this interface directly. All methods that expect a user tracker path model instance should use the {@link UserTrackerPath} interface instead. 048 */ 049 050 /** 051 * Returns the primary key of this user tracker path. 052 * 053 * @return the primary key of this user tracker path 054 */ 055 public long getPrimaryKey(); 056 057 /** 058 * Sets the primary key of this user tracker path. 059 * 060 * @param primaryKey the primary key of this user tracker path 061 */ 062 public void setPrimaryKey(long primaryKey); 063 064 /** 065 * Returns the mvcc version of this user tracker path. 066 * 067 * @return the mvcc version of this user tracker path 068 */ 069 @Override 070 public long getMvccVersion(); 071 072 /** 073 * Sets the mvcc version of this user tracker path. 074 * 075 * @param mvccVersion the mvcc version of this user tracker path 076 */ 077 @Override 078 public void setMvccVersion(long mvccVersion); 079 080 /** 081 * Returns the user tracker path ID of this user tracker path. 082 * 083 * @return the user tracker path ID of this user tracker path 084 */ 085 public long getUserTrackerPathId(); 086 087 /** 088 * Sets the user tracker path ID of this user tracker path. 089 * 090 * @param userTrackerPathId the user tracker path ID of this user tracker path 091 */ 092 public void setUserTrackerPathId(long userTrackerPathId); 093 094 /** 095 * Returns the user tracker ID of this user tracker path. 096 * 097 * @return the user tracker ID of this user tracker path 098 */ 099 public long getUserTrackerId(); 100 101 /** 102 * Sets the user tracker ID of this user tracker path. 103 * 104 * @param userTrackerId the user tracker ID of this user tracker path 105 */ 106 public void setUserTrackerId(long userTrackerId); 107 108 /** 109 * Returns the path of this user tracker path. 110 * 111 * @return the path of this user tracker path 112 */ 113 @AutoEscape 114 public String getPath(); 115 116 /** 117 * Sets the path of this user tracker path. 118 * 119 * @param path the path of this user tracker path 120 */ 121 public void setPath(String path); 122 123 /** 124 * Returns the path date of this user tracker path. 125 * 126 * @return the path date of this user tracker path 127 */ 128 public Date getPathDate(); 129 130 /** 131 * Sets the path date of this user tracker path. 132 * 133 * @param pathDate the path date of this user tracker path 134 */ 135 public void setPathDate(Date pathDate); 136 137 @Override 138 public boolean isNew(); 139 140 @Override 141 public void setNew(boolean n); 142 143 @Override 144 public boolean isCachedModel(); 145 146 @Override 147 public void setCachedModel(boolean cachedModel); 148 149 @Override 150 public boolean isEscapedModel(); 151 152 @Override 153 public Serializable getPrimaryKeyObj(); 154 155 @Override 156 public void setPrimaryKeyObj(Serializable primaryKeyObj); 157 158 @Override 159 public ExpandoBridge getExpandoBridge(); 160 161 @Override 162 public void setExpandoBridgeAttributes(BaseModel<?> baseModel); 163 164 @Override 165 public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge); 166 167 @Override 168 public void setExpandoBridgeAttributes(ServiceContext serviceContext); 169 170 @Override 171 public Object clone(); 172 173 @Override 174 public int compareTo( 175 com.liferay.portal.model.UserTrackerPath userTrackerPath); 176 177 @Override 178 public int hashCode(); 179 180 @Override 181 public CacheModel<com.liferay.portal.model.UserTrackerPath> toCacheModel(); 182 183 @Override 184 public com.liferay.portal.model.UserTrackerPath toEscapedModel(); 185 186 @Override 187 public com.liferay.portal.model.UserTrackerPath toUnescapedModel(); 188 189 @Override 190 public String toString(); 191 192 @Override 193 public String toXmlString(); 194 }