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 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 /* 044 * NOTE FOR DEVELOPERS: 045 * 046 * Never modify or reference this interface directly. All methods that expect a user tracker path model instance should use the {@link UserTrackerPath} interface instead. 047 */ 048 049 /** 050 * Returns the primary key of this user tracker path. 051 * 052 * @return the primary key of this user tracker path 053 */ 054 public long getPrimaryKey(); 055 056 /** 057 * Sets the primary key of this user tracker path. 058 * 059 * @param primaryKey the primary key of this user tracker path 060 */ 061 public void setPrimaryKey(long primaryKey); 062 063 /** 064 * Returns the user tracker path ID of this user tracker path. 065 * 066 * @return the user tracker path ID of this user tracker path 067 */ 068 public long getUserTrackerPathId(); 069 070 /** 071 * Sets the user tracker path ID of this user tracker path. 072 * 073 * @param userTrackerPathId the user tracker path ID of this user tracker path 074 */ 075 public void setUserTrackerPathId(long userTrackerPathId); 076 077 /** 078 * Returns the user tracker ID of this user tracker path. 079 * 080 * @return the user tracker ID of this user tracker path 081 */ 082 public long getUserTrackerId(); 083 084 /** 085 * Sets the user tracker ID of this user tracker path. 086 * 087 * @param userTrackerId the user tracker ID of this user tracker path 088 */ 089 public void setUserTrackerId(long userTrackerId); 090 091 /** 092 * Returns the path of this user tracker path. 093 * 094 * @return the path of this user tracker path 095 */ 096 @AutoEscape 097 public String getPath(); 098 099 /** 100 * Sets the path of this user tracker path. 101 * 102 * @param path the path of this user tracker path 103 */ 104 public void setPath(String path); 105 106 /** 107 * Returns the path date of this user tracker path. 108 * 109 * @return the path date of this user tracker path 110 */ 111 public Date getPathDate(); 112 113 /** 114 * Sets the path date of this user tracker path. 115 * 116 * @param pathDate the path date of this user tracker path 117 */ 118 public void setPathDate(Date pathDate); 119 120 @Override 121 public boolean isNew(); 122 123 @Override 124 public void setNew(boolean n); 125 126 @Override 127 public boolean isCachedModel(); 128 129 @Override 130 public void setCachedModel(boolean cachedModel); 131 132 @Override 133 public boolean isEscapedModel(); 134 135 @Override 136 public Serializable getPrimaryKeyObj(); 137 138 @Override 139 public void setPrimaryKeyObj(Serializable primaryKeyObj); 140 141 @Override 142 public ExpandoBridge getExpandoBridge(); 143 144 @Override 145 public void setExpandoBridgeAttributes(BaseModel<?> baseModel); 146 147 @Override 148 public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge); 149 150 @Override 151 public void setExpandoBridgeAttributes(ServiceContext serviceContext); 152 153 @Override 154 public Object clone(); 155 156 @Override 157 public int compareTo(UserTrackerPath userTrackerPath); 158 159 @Override 160 public int hashCode(); 161 162 @Override 163 public CacheModel<UserTrackerPath> toCacheModel(); 164 165 @Override 166 public UserTrackerPath toEscapedModel(); 167 168 @Override 169 public UserTrackerPath toUnescapedModel(); 170 171 @Override 172 public String toString(); 173 174 @Override 175 public String toXmlString(); 176 }