1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portlet.shopping.model;
16  
17  import com.liferay.portal.SystemException;
18  import com.liferay.portal.kernel.annotation.AutoEscape;
19  import com.liferay.portal.model.BaseModel;
20  import com.liferay.portal.service.ServiceContext;
21  
22  import com.liferay.portlet.expando.model.ExpandoBridge;
23  
24  import java.io.Serializable;
25  
26  import java.util.Date;
27  
28  /**
29   * <a href="ShoppingCouponModel.java.html"><b><i>View Source</i></b></a>
30   *
31   * <p>
32   * ServiceBuilder generated this class. Modifications in this class will be
33   * overwritten the next time is generated.
34   * </p>
35   *
36   * <p>
37   * This interface is a model that represents the ShoppingCoupon table in the
38   * database.
39   * </p>
40   *
41   * @author    Brian Wing Shun Chan
42   * @see       ShoppingCoupon
43   * @see       com.liferay.portlet.shopping.model.impl.ShoppingCouponImpl
44   * @see       com.liferay.portlet.shopping.model.impl.ShoppingCouponModelImpl
45   * @generated
46   */
47  public interface ShoppingCouponModel extends BaseModel<ShoppingCoupon> {
48      public long getPrimaryKey();
49  
50      public void setPrimaryKey(long pk);
51  
52      public long getCouponId();
53  
54      public void setCouponId(long couponId);
55  
56      public long getGroupId();
57  
58      public void setGroupId(long groupId);
59  
60      public long getCompanyId();
61  
62      public void setCompanyId(long companyId);
63  
64      public long getUserId();
65  
66      public void setUserId(long userId);
67  
68      public String getUserUuid() throws SystemException;
69  
70      public void setUserUuid(String userUuid);
71  
72      @AutoEscape
73      public String getUserName();
74  
75      public void setUserName(String userName);
76  
77      public Date getCreateDate();
78  
79      public void setCreateDate(Date createDate);
80  
81      public Date getModifiedDate();
82  
83      public void setModifiedDate(Date modifiedDate);
84  
85      @AutoEscape
86      public String getCode();
87  
88      public void setCode(String code);
89  
90      @AutoEscape
91      public String getName();
92  
93      public void setName(String name);
94  
95      @AutoEscape
96      public String getDescription();
97  
98      public void setDescription(String description);
99  
100     public Date getStartDate();
101 
102     public void setStartDate(Date startDate);
103 
104     public Date getEndDate();
105 
106     public void setEndDate(Date endDate);
107 
108     public boolean getActive();
109 
110     public boolean isActive();
111 
112     public void setActive(boolean active);
113 
114     @AutoEscape
115     public String getLimitCategories();
116 
117     public void setLimitCategories(String limitCategories);
118 
119     @AutoEscape
120     public String getLimitSkus();
121 
122     public void setLimitSkus(String limitSkus);
123 
124     public double getMinOrder();
125 
126     public void setMinOrder(double minOrder);
127 
128     public double getDiscount();
129 
130     public void setDiscount(double discount);
131 
132     @AutoEscape
133     public String getDiscountType();
134 
135     public void setDiscountType(String discountType);
136 
137     public boolean isNew();
138 
139     public boolean setNew(boolean n);
140 
141     public boolean isCachedModel();
142 
143     public void setCachedModel(boolean cachedModel);
144 
145     public boolean isEscapedModel();
146 
147     public void setEscapedModel(boolean escapedModel);
148 
149     public Serializable getPrimaryKeyObj();
150 
151     public ExpandoBridge getExpandoBridge();
152 
153     public void setExpandoBridgeAttributes(ServiceContext serviceContext);
154 
155     public Object clone();
156 
157     public int compareTo(ShoppingCoupon shoppingCoupon);
158 
159     public int hashCode();
160 
161     public ShoppingCoupon toEscapedModel();
162 
163     public String toString();
164 
165     public String toXmlString();
166 }