/** * Copyright (c) 2000-2012 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.ese.ils.beta.model; import com.liferay.portal.kernel.exception.SystemException; import com.liferay.portal.model.BaseModel; import com.liferay.portal.model.CacheModel; import com.liferay.portal.service.ServiceContext; import com.liferay.portlet.expando.model.ExpandoBridge; import java.io.Serializable; /** * The base model interface for the UserInfo service. Represents a row in the "ese_UserInfo" database table, with each column mapped to a property of this class. * * <p> * This interface and its corresponding implementation {@link com.ese.ils.beta.model.impl.UserInfoModelImpl} 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.ese.ils.beta.model.impl.UserInfoImpl}. * </p> * * @author edik * @see UserInfo * @see com.ese.ils.beta.model.impl.UserInfoImpl * @see com.ese.ils.beta.model.impl.UserInfoModelImpl * @generated */ public interface UserInfoModel extends BaseModel<UserInfo> { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. All methods that expect a user info model instance should use the {@link UserInfo} interface instead. */ /** * Returns the primary key of this user info. * * @return the primary key of this user info */ public long getPrimaryKey(); /** * Sets the primary key of this user info. * * @param primaryKey the primary key of this user info */ public void setPrimaryKey(long primaryKey); /** * Returns the user info ID of this user info. * * @return the user info ID of this user info */ public long getUserInfoId(); /** * Sets the user info ID of this user info. * * @param userInfoId the user info ID of this user info */ public void setUserInfoId(long userInfoId); /** * Returns the company ID of this user info. * * @return the company ID of this user info */ public long getCompanyId(); /** * Sets the company ID of this user info. * * @param companyId the company ID of this user info */ public void setCompanyId(long companyId); /** * Returns the user ID of this user info. * * @return the user ID of this user info */ public long getUserId(); /** * Sets the user ID of this user info. * * @param userId the user ID of this user info */ public void setUserId(long userId); /** * Returns the user uuid of this user info. * * @return the user uuid of this user info * @throws SystemException if a system exception occurred */ public String getUserUuid() throws SystemException; /** * Sets the user uuid of this user info. * * @param userUuid the user uuid of this user info */ public void setUserUuid(String userUuid); /** * Returns the module ID of this user info. * * @return the module ID of this user info */ public long getModuleId(); /** * Sets the module ID of this user info. * * @param moduleId the module ID of this user info */ public void setModuleId(long moduleId); public boolean isNew(); public void setNew(boolean n); public boolean isCachedModel(); public void setCachedModel(boolean cachedModel); public boolean isEscapedModel(); public Serializable getPrimaryKeyObj(); public void setPrimaryKeyObj(Serializable primaryKeyObj); public ExpandoBridge getExpandoBridge(); public void setExpandoBridgeAttributes(ServiceContext serviceContext); public Object clone(); public int compareTo(UserInfo userInfo); public int hashCode(); public CacheModel<UserInfo> toCacheModel(); public UserInfo toEscapedModel(); public String toString(); public String toXmlString(); }