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