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 WebDAVProps service. Represents a row in the "WebDAVProps" 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.WebDAVPropsModelImpl} 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.WebDAVPropsImpl}. 033 * </p> 034 * 035 * @author Brian Wing Shun Chan 036 * @see WebDAVProps 037 * @see com.liferay.portal.model.impl.WebDAVPropsImpl 038 * @see com.liferay.portal.model.impl.WebDAVPropsModelImpl 039 * @generated 040 */ 041 @ProviderType 042 public interface WebDAVPropsModel extends AttachedModel, BaseModel<WebDAVProps>, 043 MVCCModel, ShardedModel { 044 /* 045 * NOTE FOR DEVELOPERS: 046 * 047 * Never modify or reference this interface directly. All methods that expect a web d a v props model instance should use the {@link WebDAVProps} interface instead. 048 */ 049 050 /** 051 * Returns the primary key of this web d a v props. 052 * 053 * @return the primary key of this web d a v props 054 */ 055 public long getPrimaryKey(); 056 057 /** 058 * Sets the primary key of this web d a v props. 059 * 060 * @param primaryKey the primary key of this web d a v props 061 */ 062 public void setPrimaryKey(long primaryKey); 063 064 /** 065 * Returns the mvcc version of this web d a v props. 066 * 067 * @return the mvcc version of this web d a v props 068 */ 069 @Override 070 public long getMvccVersion(); 071 072 /** 073 * Sets the mvcc version of this web d a v props. 074 * 075 * @param mvccVersion the mvcc version of this web d a v props 076 */ 077 @Override 078 public void setMvccVersion(long mvccVersion); 079 080 /** 081 * Returns the web dav props ID of this web d a v props. 082 * 083 * @return the web dav props ID of this web d a v props 084 */ 085 public long getWebDavPropsId(); 086 087 /** 088 * Sets the web dav props ID of this web d a v props. 089 * 090 * @param webDavPropsId the web dav props ID of this web d a v props 091 */ 092 public void setWebDavPropsId(long webDavPropsId); 093 094 /** 095 * Returns the company ID of this web d a v props. 096 * 097 * @return the company ID of this web d a v props 098 */ 099 @Override 100 public long getCompanyId(); 101 102 /** 103 * Sets the company ID of this web d a v props. 104 * 105 * @param companyId the company ID of this web d a v props 106 */ 107 @Override 108 public void setCompanyId(long companyId); 109 110 /** 111 * Returns the create date of this web d a v props. 112 * 113 * @return the create date of this web d a v props 114 */ 115 public Date getCreateDate(); 116 117 /** 118 * Sets the create date of this web d a v props. 119 * 120 * @param createDate the create date of this web d a v props 121 */ 122 public void setCreateDate(Date createDate); 123 124 /** 125 * Returns the modified date of this web d a v props. 126 * 127 * @return the modified date of this web d a v props 128 */ 129 public Date getModifiedDate(); 130 131 /** 132 * Sets the modified date of this web d a v props. 133 * 134 * @param modifiedDate the modified date of this web d a v props 135 */ 136 public void setModifiedDate(Date modifiedDate); 137 138 /** 139 * Returns the fully qualified class name of this web d a v props. 140 * 141 * @return the fully qualified class name of this web d a v props 142 */ 143 @Override 144 public String getClassName(); 145 146 public void setClassName(String className); 147 148 /** 149 * Returns the class name ID of this web d a v props. 150 * 151 * @return the class name ID of this web d a v props 152 */ 153 @Override 154 public long getClassNameId(); 155 156 /** 157 * Sets the class name ID of this web d a v props. 158 * 159 * @param classNameId the class name ID of this web d a v props 160 */ 161 @Override 162 public void setClassNameId(long classNameId); 163 164 /** 165 * Returns the class p k of this web d a v props. 166 * 167 * @return the class p k of this web d a v props 168 */ 169 @Override 170 public long getClassPK(); 171 172 /** 173 * Sets the class p k of this web d a v props. 174 * 175 * @param classPK the class p k of this web d a v props 176 */ 177 @Override 178 public void setClassPK(long classPK); 179 180 /** 181 * Returns the props of this web d a v props. 182 * 183 * @return the props of this web d a v props 184 */ 185 @AutoEscape 186 public String getProps(); 187 188 /** 189 * Sets the props of this web d a v props. 190 * 191 * @param props the props of this web d a v props 192 */ 193 public void setProps(String props); 194 195 @Override 196 public boolean isNew(); 197 198 @Override 199 public void setNew(boolean n); 200 201 @Override 202 public boolean isCachedModel(); 203 204 @Override 205 public void setCachedModel(boolean cachedModel); 206 207 @Override 208 public boolean isEscapedModel(); 209 210 @Override 211 public Serializable getPrimaryKeyObj(); 212 213 @Override 214 public void setPrimaryKeyObj(Serializable primaryKeyObj); 215 216 @Override 217 public ExpandoBridge getExpandoBridge(); 218 219 @Override 220 public void setExpandoBridgeAttributes(BaseModel<?> baseModel); 221 222 @Override 223 public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge); 224 225 @Override 226 public void setExpandoBridgeAttributes(ServiceContext serviceContext); 227 228 @Override 229 public Object clone(); 230 231 @Override 232 public int compareTo(com.liferay.portal.model.WebDAVProps webDAVProps); 233 234 @Override 235 public int hashCode(); 236 237 @Override 238 public CacheModel<com.liferay.portal.model.WebDAVProps> toCacheModel(); 239 240 @Override 241 public com.liferay.portal.model.WebDAVProps toEscapedModel(); 242 243 @Override 244 public com.liferay.portal.model.WebDAVProps toUnescapedModel(); 245 246 @Override 247 public String toString(); 248 249 @Override 250 public String toXmlString(); 251 }