com.liferay.contacts.model.EntryModel Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.contacts.model;
import com.liferay.portal.kernel.bean.AutoEscape;
import com.liferay.portal.kernel.model.BaseModel;
import com.liferay.portal.kernel.model.GroupedModel;
import com.liferay.portal.kernel.model.ShardedModel;
import java.util.Date;
import org.osgi.annotation.versioning.ProviderType;
/**
* The base model interface for the Entry service. Represents a row in the "Contacts_Entry" database table, with each column mapped to a property of this class.
*
*
* This interface and its corresponding implementation com.liferay.contacts.model.impl.EntryModelImpl
exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in com.liferay.contacts.model.impl.EntryImpl
.
*
*
* @author Brian Wing Shun Chan
* @see Entry
* @generated
*/
@ProviderType
public interface EntryModel
extends BaseModel, GroupedModel, ShardedModel {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify or reference this interface directly. All methods that expect a entry model instance should use the {@link Entry} interface instead.
*/
/**
* Returns the primary key of this entry.
*
* @return the primary key of this entry
*/
public long getPrimaryKey();
/**
* Sets the primary key of this entry.
*
* @param primaryKey the primary key of this entry
*/
public void setPrimaryKey(long primaryKey);
/**
* Returns the entry ID of this entry.
*
* @return the entry ID of this entry
*/
public long getEntryId();
/**
* Sets the entry ID of this entry.
*
* @param entryId the entry ID of this entry
*/
public void setEntryId(long entryId);
/**
* Returns the group ID of this entry.
*
* @return the group ID of this entry
*/
@Override
public long getGroupId();
/**
* Sets the group ID of this entry.
*
* @param groupId the group ID of this entry
*/
@Override
public void setGroupId(long groupId);
/**
* Returns the company ID of this entry.
*
* @return the company ID of this entry
*/
@Override
public long getCompanyId();
/**
* Sets the company ID of this entry.
*
* @param companyId the company ID of this entry
*/
@Override
public void setCompanyId(long companyId);
/**
* Returns the user ID of this entry.
*
* @return the user ID of this entry
*/
@Override
public long getUserId();
/**
* Sets the user ID of this entry.
*
* @param userId the user ID of this entry
*/
@Override
public void setUserId(long userId);
/**
* Returns the user uuid of this entry.
*
* @return the user uuid of this entry
*/
@Override
public String getUserUuid();
/**
* Sets the user uuid of this entry.
*
* @param userUuid the user uuid of this entry
*/
@Override
public void setUserUuid(String userUuid);
/**
* Returns the user name of this entry.
*
* @return the user name of this entry
*/
@AutoEscape
@Override
public String getUserName();
/**
* Sets the user name of this entry.
*
* @param userName the user name of this entry
*/
@Override
public void setUserName(String userName);
/**
* Returns the create date of this entry.
*
* @return the create date of this entry
*/
@Override
public Date getCreateDate();
/**
* Sets the create date of this entry.
*
* @param createDate the create date of this entry
*/
@Override
public void setCreateDate(Date createDate);
/**
* Returns the modified date of this entry.
*
* @return the modified date of this entry
*/
@Override
public Date getModifiedDate();
/**
* Sets the modified date of this entry.
*
* @param modifiedDate the modified date of this entry
*/
@Override
public void setModifiedDate(Date modifiedDate);
/**
* Returns the full name of this entry.
*
* @return the full name of this entry
*/
@AutoEscape
public String getFullName();
/**
* Sets the full name of this entry.
*
* @param fullName the full name of this entry
*/
public void setFullName(String fullName);
/**
* Returns the email address of this entry.
*
* @return the email address of this entry
*/
@AutoEscape
public String getEmailAddress();
/**
* Sets the email address of this entry.
*
* @param emailAddress the email address of this entry
*/
public void setEmailAddress(String emailAddress);
/**
* Returns the comments of this entry.
*
* @return the comments of this entry
*/
@AutoEscape
public String getComments();
/**
* Sets the comments of this entry.
*
* @param comments the comments of this entry
*/
public void setComments(String comments);
@Override
public Entry cloneWithOriginalValues();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy