com.liferay.portlet.shopping.model
Interface ShoppingCartModel

All Superinterfaces:
BaseModel, java.lang.Cloneable, java.lang.Comparable, java.io.Serializable
All Known Subinterfaces:
ShoppingCart

public interface ShoppingCartModel
extends BaseModel

View Source

ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

This interface is a model that represents the ShoppingCart table in the database.

Author:
Brian Wing Shun Chan
See Also:
com.liferay.portlet.shopping.service.model.ShoppingCart, com.liferay.portlet.shopping.service.model.impl.ShoppingCartImpl, com.liferay.portlet.shopping.service.model.impl.ShoppingCartModelImpl

Method Summary
 int getAltShipping()
           
 long getCartId()
           
 long getCompanyId()
           
 java.lang.String getCouponCodes()
           
 java.util.Date getCreateDate()
           
 long getGroupId()
           
 boolean getInsure()
           
 java.lang.String getItemIds()
           
 java.util.Date getModifiedDate()
           
 long getPrimaryKey()
           
 long getUserId()
           
 java.lang.String getUserName()
           
 boolean isInsure()
           
 void setAltShipping(int altShipping)
           
 void setCartId(long cartId)
           
 void setCompanyId(long companyId)
           
 void setCouponCodes(java.lang.String couponCodes)
           
 void setCreateDate(java.util.Date createDate)
           
 void setGroupId(long groupId)
           
 void setInsure(boolean insure)
           
 void setItemIds(java.lang.String itemIds)
           
 void setModifiedDate(java.util.Date modifiedDate)
           
 void setPrimaryKey(long pk)
           
 void setUserId(long userId)
           
 void setUserName(java.lang.String userName)
           
 
Methods inherited from interface com.liferay.portal.model.BaseModel
clone, getPrimaryKeyObj, isNew, setNew
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getPrimaryKey

public long getPrimaryKey()

setPrimaryKey

public void setPrimaryKey(long pk)

getCartId

public long getCartId()

setCartId

public void setCartId(long cartId)

getGroupId

public long getGroupId()

setGroupId

public void setGroupId(long groupId)

getCompanyId

public long getCompanyId()

setCompanyId

public void setCompanyId(long companyId)

getUserId

public long getUserId()

setUserId

public void setUserId(long userId)

getUserName

public java.lang.String getUserName()

setUserName

public void setUserName(java.lang.String userName)

getCreateDate

public java.util.Date getCreateDate()

setCreateDate

public void setCreateDate(java.util.Date createDate)

getModifiedDate

public java.util.Date getModifiedDate()

setModifiedDate

public void setModifiedDate(java.util.Date modifiedDate)

getItemIds

public java.lang.String getItemIds()

setItemIds

public void setItemIds(java.lang.String itemIds)

getCouponCodes

public java.lang.String getCouponCodes()

setCouponCodes

public void setCouponCodes(java.lang.String couponCodes)

getAltShipping

public int getAltShipping()

setAltShipping

public void setAltShipping(int altShipping)

getInsure

public boolean getInsure()

isInsure

public boolean isInsure()

setInsure

public void setInsure(boolean insure)