PageRenderTime 77ms CodeModel.GetById 31ms RepoModel.GetById 0ms app.codeStats 0ms

/modules/apps/commerce/commerce-api/src/main/java/com/liferay/commerce/model/CommerceShippingOptionAccountEntryRelModel.java

https://github.com/ealonso/liferay-portal
Java | 252 lines | 59 code | 34 blank | 159 comment | 0 complexity | 01d8a6bba22288133d9e5fca1228c5c2 MD5 | raw file
  1. /**
  2. * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
  3. *
  4. * This library is free software; you can redistribute it and/or modify it under
  5. * the terms of the GNU Lesser General Public License as published by the Free
  6. * Software Foundation; either version 2.1 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  11. * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  12. * details.
  13. */
  14. package com.liferay.commerce.model;
  15. import com.liferay.portal.kernel.bean.AutoEscape;
  16. import com.liferay.portal.kernel.model.AuditedModel;
  17. import com.liferay.portal.kernel.model.BaseModel;
  18. import com.liferay.portal.kernel.model.MVCCModel;
  19. import com.liferay.portal.kernel.model.ShardedModel;
  20. import java.util.Date;
  21. import org.osgi.annotation.versioning.ProviderType;
  22. /**
  23. * The base model interface for the CommerceShippingOptionAccountEntryRel service. Represents a row in the "CSOptionAccountEntryRel" database table, with each column mapped to a property of this class.
  24. *
  25. * <p>
  26. * This interface and its corresponding implementation <code>com.liferay.commerce.model.impl.CommerceShippingOptionAccountEntryRelModelImpl</code> exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in <code>com.liferay.commerce.model.impl.CommerceShippingOptionAccountEntryRelImpl</code>.
  27. * </p>
  28. *
  29. * @author Alessio Antonio Rendina
  30. * @see CommerceShippingOptionAccountEntryRel
  31. * @generated
  32. */
  33. @ProviderType
  34. public interface CommerceShippingOptionAccountEntryRelModel
  35. extends AuditedModel, BaseModel<CommerceShippingOptionAccountEntryRel>,
  36. MVCCModel, ShardedModel {
  37. /*
  38. * NOTE FOR DEVELOPERS:
  39. *
  40. * Never modify or reference this interface directly. All methods that expect a commerce shipping option account entry rel model instance should use the {@link CommerceShippingOptionAccountEntryRel} interface instead.
  41. */
  42. /**
  43. * Returns the primary key of this commerce shipping option account entry rel.
  44. *
  45. * @return the primary key of this commerce shipping option account entry rel
  46. */
  47. public long getPrimaryKey();
  48. /**
  49. * Sets the primary key of this commerce shipping option account entry rel.
  50. *
  51. * @param primaryKey the primary key of this commerce shipping option account entry rel
  52. */
  53. public void setPrimaryKey(long primaryKey);
  54. /**
  55. * Returns the mvcc version of this commerce shipping option account entry rel.
  56. *
  57. * @return the mvcc version of this commerce shipping option account entry rel
  58. */
  59. @Override
  60. public long getMvccVersion();
  61. /**
  62. * Sets the mvcc version of this commerce shipping option account entry rel.
  63. *
  64. * @param mvccVersion the mvcc version of this commerce shipping option account entry rel
  65. */
  66. @Override
  67. public void setMvccVersion(long mvccVersion);
  68. /**
  69. * Returns the commerce shipping option account entry rel ID of this commerce shipping option account entry rel.
  70. *
  71. * @return the commerce shipping option account entry rel ID of this commerce shipping option account entry rel
  72. */
  73. public long getCommerceShippingOptionAccountEntryRelId();
  74. /**
  75. * Sets the commerce shipping option account entry rel ID of this commerce shipping option account entry rel.
  76. *
  77. * @param CommerceShippingOptionAccountEntryRelId the commerce shipping option account entry rel ID of this commerce shipping option account entry rel
  78. */
  79. public void setCommerceShippingOptionAccountEntryRelId(
  80. long CommerceShippingOptionAccountEntryRelId);
  81. /**
  82. * Returns the company ID of this commerce shipping option account entry rel.
  83. *
  84. * @return the company ID of this commerce shipping option account entry rel
  85. */
  86. @Override
  87. public long getCompanyId();
  88. /**
  89. * Sets the company ID of this commerce shipping option account entry rel.
  90. *
  91. * @param companyId the company ID of this commerce shipping option account entry rel
  92. */
  93. @Override
  94. public void setCompanyId(long companyId);
  95. /**
  96. * Returns the user ID of this commerce shipping option account entry rel.
  97. *
  98. * @return the user ID of this commerce shipping option account entry rel
  99. */
  100. @Override
  101. public long getUserId();
  102. /**
  103. * Sets the user ID of this commerce shipping option account entry rel.
  104. *
  105. * @param userId the user ID of this commerce shipping option account entry rel
  106. */
  107. @Override
  108. public void setUserId(long userId);
  109. /**
  110. * Returns the user uuid of this commerce shipping option account entry rel.
  111. *
  112. * @return the user uuid of this commerce shipping option account entry rel
  113. */
  114. @Override
  115. public String getUserUuid();
  116. /**
  117. * Sets the user uuid of this commerce shipping option account entry rel.
  118. *
  119. * @param userUuid the user uuid of this commerce shipping option account entry rel
  120. */
  121. @Override
  122. public void setUserUuid(String userUuid);
  123. /**
  124. * Returns the user name of this commerce shipping option account entry rel.
  125. *
  126. * @return the user name of this commerce shipping option account entry rel
  127. */
  128. @AutoEscape
  129. @Override
  130. public String getUserName();
  131. /**
  132. * Sets the user name of this commerce shipping option account entry rel.
  133. *
  134. * @param userName the user name of this commerce shipping option account entry rel
  135. */
  136. @Override
  137. public void setUserName(String userName);
  138. /**
  139. * Returns the create date of this commerce shipping option account entry rel.
  140. *
  141. * @return the create date of this commerce shipping option account entry rel
  142. */
  143. @Override
  144. public Date getCreateDate();
  145. /**
  146. * Sets the create date of this commerce shipping option account entry rel.
  147. *
  148. * @param createDate the create date of this commerce shipping option account entry rel
  149. */
  150. @Override
  151. public void setCreateDate(Date createDate);
  152. /**
  153. * Returns the modified date of this commerce shipping option account entry rel.
  154. *
  155. * @return the modified date of this commerce shipping option account entry rel
  156. */
  157. @Override
  158. public Date getModifiedDate();
  159. /**
  160. * Sets the modified date of this commerce shipping option account entry rel.
  161. *
  162. * @param modifiedDate the modified date of this commerce shipping option account entry rel
  163. */
  164. @Override
  165. public void setModifiedDate(Date modifiedDate);
  166. /**
  167. * Returns the account entry ID of this commerce shipping option account entry rel.
  168. *
  169. * @return the account entry ID of this commerce shipping option account entry rel
  170. */
  171. public long getAccountEntryId();
  172. /**
  173. * Sets the account entry ID of this commerce shipping option account entry rel.
  174. *
  175. * @param accountEntryId the account entry ID of this commerce shipping option account entry rel
  176. */
  177. public void setAccountEntryId(long accountEntryId);
  178. /**
  179. * Returns the commerce channel ID of this commerce shipping option account entry rel.
  180. *
  181. * @return the commerce channel ID of this commerce shipping option account entry rel
  182. */
  183. public long getCommerceChannelId();
  184. /**
  185. * Sets the commerce channel ID of this commerce shipping option account entry rel.
  186. *
  187. * @param commerceChannelId the commerce channel ID of this commerce shipping option account entry rel
  188. */
  189. public void setCommerceChannelId(long commerceChannelId);
  190. /**
  191. * Returns the commerce shipping method key of this commerce shipping option account entry rel.
  192. *
  193. * @return the commerce shipping method key of this commerce shipping option account entry rel
  194. */
  195. @AutoEscape
  196. public String getCommerceShippingMethodKey();
  197. /**
  198. * Sets the commerce shipping method key of this commerce shipping option account entry rel.
  199. *
  200. * @param commerceShippingMethodKey the commerce shipping method key of this commerce shipping option account entry rel
  201. */
  202. public void setCommerceShippingMethodKey(String commerceShippingMethodKey);
  203. /**
  204. * Returns the commerce shipping option key of this commerce shipping option account entry rel.
  205. *
  206. * @return the commerce shipping option key of this commerce shipping option account entry rel
  207. */
  208. @AutoEscape
  209. public String getCommerceShippingOptionKey();
  210. /**
  211. * Sets the commerce shipping option key of this commerce shipping option account entry rel.
  212. *
  213. * @param commerceShippingOptionKey the commerce shipping option key of this commerce shipping option account entry rel
  214. */
  215. public void setCommerceShippingOptionKey(String commerceShippingOptionKey);
  216. @Override
  217. public CommerceShippingOptionAccountEntryRel cloneWithOriginalValues();
  218. }