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, ShardedModel { 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 company ID of this user tracker path. 096 * 097 * @return the company ID of this user tracker path 098 */ 099 @Override 100 public long getCompanyId(); 101 102 /** 103 * Sets the company ID of this user tracker path. 104 * 105 * @param companyId the company ID of this user tracker path 106 */ 107 @Override 108 public void setCompanyId(long companyId); 109 110 /** 111 * Returns the user tracker ID of this user tracker path. 112 * 113 * @return the user tracker ID of this user tracker path 114 */ 115 public long getUserTrackerId(); 116 117 /** 118 * Sets the user tracker ID of this user tracker path. 119 * 120 * @param userTrackerId the user tracker ID of this user tracker path 121 */ 122 public void setUserTrackerId(long userTrackerId); 123 124 /** 125 * Returns the path of this user tracker path. 126 * 127 * @return the path of this user tracker path 128 */ 129 @AutoEscape 130 public String getPath(); 131 132 /** 133 * Sets the path of this user tracker path. 134 * 135 * @param path the path of this user tracker path 136 */ 137 public void setPath(String path); 138 139 /** 140 * Returns the path date of this user tracker path. 141 * 142 * @return the path date of this user tracker path 143 */ 144 public Date getPathDate(); 145 146 /** 147 * Sets the path date of this user tracker path. 148 * 149 * @param pathDate the path date of this user tracker path 150 */ 151 public void setPathDate(Date pathDate); 152 153 @Override 154 public boolean isNew(); 155 156 @Override 157 public void setNew(boolean n); 158 159 @Override 160 public boolean isCachedModel(); 161 162 @Override 163 public void setCachedModel(boolean cachedModel); 164 165 @Override 166 public boolean isEscapedModel(); 167 168 @Override 169 public Serializable getPrimaryKeyObj(); 170 171 @Override 172 public void setPrimaryKeyObj(Serializable primaryKeyObj); 173 174 @Override 175 public ExpandoBridge getExpandoBridge(); 176 177 @Override 178 public void setExpandoBridgeAttributes(BaseModel<?> baseModel); 179 180 @Override 181 public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge); 182 183 @Override 184 public void setExpandoBridgeAttributes(ServiceContext serviceContext); 185 186 @Override 187 public Object clone(); 188 189 @Override 190 public int compareTo( 191 com.liferay.portal.model.UserTrackerPath userTrackerPath); 192 193 @Override 194 public int hashCode(); 195 196 @Override 197 public CacheModel<com.liferay.portal.model.UserTrackerPath> toCacheModel(); 198 199 @Override 200 public com.liferay.portal.model.UserTrackerPath toEscapedModel(); 201 202 @Override 203 public com.liferay.portal.model.UserTrackerPath toUnescapedModel(); 204 205 @Override 206 public String toString(); 207 208 @Override 209 public String toXmlString(); 210 }