/modules/dxp/apps/saml/saml-persistence-api/src/main/java/com/liferay/saml/persistence/model/SamlIdpSpConnectionModel.java

http://github.com/liferay/liferay-portal · Java · 393 lines · 80 code · 54 blank · 259 comment · 0 complexity · d608b540688d406e1f2f5986b9fc43a3 MD5 · raw file

  1. /**
  2. * Copyright (c) 2000-present 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. package com.liferay.saml.persistence.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.ShardedModel;
  19. import java.util.Date;
  20. import org.osgi.annotation.versioning.ProviderType;
  21. /**
  22. * The base model interface for the SamlIdpSpConnection service. Represents a row in the "SamlIdpSpConnection" database table, with each column mapped to a property of this class.
  23. *
  24. * <p>
  25. * This interface and its corresponding implementation <code>com.liferay.saml.persistence.model.impl.SamlIdpSpConnectionModelImpl</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.saml.persistence.model.impl.SamlIdpSpConnectionImpl</code>.
  26. * </p>
  27. *
  28. * @author Mika Koivisto
  29. * @see SamlIdpSpConnection
  30. * @generated
  31. */
  32. @ProviderType
  33. public interface SamlIdpSpConnectionModel
  34. extends AuditedModel, BaseModel<SamlIdpSpConnection>, ShardedModel {
  35. /*
  36. * NOTE FOR DEVELOPERS:
  37. *
  38. * Never modify or reference this interface directly. All methods that expect a saml idp sp connection model instance should use the {@link SamlIdpSpConnection} interface instead.
  39. */
  40. /**
  41. * Returns the primary key of this saml idp sp connection.
  42. *
  43. * @return the primary key of this saml idp sp connection
  44. */
  45. public long getPrimaryKey();
  46. /**
  47. * Sets the primary key of this saml idp sp connection.
  48. *
  49. * @param primaryKey the primary key of this saml idp sp connection
  50. */
  51. public void setPrimaryKey(long primaryKey);
  52. /**
  53. * Returns the saml idp sp connection ID of this saml idp sp connection.
  54. *
  55. * @return the saml idp sp connection ID of this saml idp sp connection
  56. */
  57. public long getSamlIdpSpConnectionId();
  58. /**
  59. * Sets the saml idp sp connection ID of this saml idp sp connection.
  60. *
  61. * @param samlIdpSpConnectionId the saml idp sp connection ID of this saml idp sp connection
  62. */
  63. public void setSamlIdpSpConnectionId(long samlIdpSpConnectionId);
  64. /**
  65. * Returns the company ID of this saml idp sp connection.
  66. *
  67. * @return the company ID of this saml idp sp connection
  68. */
  69. @Override
  70. public long getCompanyId();
  71. /**
  72. * Sets the company ID of this saml idp sp connection.
  73. *
  74. * @param companyId the company ID of this saml idp sp connection
  75. */
  76. @Override
  77. public void setCompanyId(long companyId);
  78. /**
  79. * Returns the user ID of this saml idp sp connection.
  80. *
  81. * @return the user ID of this saml idp sp connection
  82. */
  83. @Override
  84. public long getUserId();
  85. /**
  86. * Sets the user ID of this saml idp sp connection.
  87. *
  88. * @param userId the user ID of this saml idp sp connection
  89. */
  90. @Override
  91. public void setUserId(long userId);
  92. /**
  93. * Returns the user uuid of this saml idp sp connection.
  94. *
  95. * @return the user uuid of this saml idp sp connection
  96. */
  97. @Override
  98. public String getUserUuid();
  99. /**
  100. * Sets the user uuid of this saml idp sp connection.
  101. *
  102. * @param userUuid the user uuid of this saml idp sp connection
  103. */
  104. @Override
  105. public void setUserUuid(String userUuid);
  106. /**
  107. * Returns the user name of this saml idp sp connection.
  108. *
  109. * @return the user name of this saml idp sp connection
  110. */
  111. @AutoEscape
  112. @Override
  113. public String getUserName();
  114. /**
  115. * Sets the user name of this saml idp sp connection.
  116. *
  117. * @param userName the user name of this saml idp sp connection
  118. */
  119. @Override
  120. public void setUserName(String userName);
  121. /**
  122. * Returns the create date of this saml idp sp connection.
  123. *
  124. * @return the create date of this saml idp sp connection
  125. */
  126. @Override
  127. public Date getCreateDate();
  128. /**
  129. * Sets the create date of this saml idp sp connection.
  130. *
  131. * @param createDate the create date of this saml idp sp connection
  132. */
  133. @Override
  134. public void setCreateDate(Date createDate);
  135. /**
  136. * Returns the modified date of this saml idp sp connection.
  137. *
  138. * @return the modified date of this saml idp sp connection
  139. */
  140. @Override
  141. public Date getModifiedDate();
  142. /**
  143. * Sets the modified date of this saml idp sp connection.
  144. *
  145. * @param modifiedDate the modified date of this saml idp sp connection
  146. */
  147. @Override
  148. public void setModifiedDate(Date modifiedDate);
  149. /**
  150. * Returns the assertion lifetime of this saml idp sp connection.
  151. *
  152. * @return the assertion lifetime of this saml idp sp connection
  153. */
  154. public int getAssertionLifetime();
  155. /**
  156. * Sets the assertion lifetime of this saml idp sp connection.
  157. *
  158. * @param assertionLifetime the assertion lifetime of this saml idp sp connection
  159. */
  160. public void setAssertionLifetime(int assertionLifetime);
  161. /**
  162. * Returns the attribute names of this saml idp sp connection.
  163. *
  164. * @return the attribute names of this saml idp sp connection
  165. */
  166. @AutoEscape
  167. public String getAttributeNames();
  168. /**
  169. * Sets the attribute names of this saml idp sp connection.
  170. *
  171. * @param attributeNames the attribute names of this saml idp sp connection
  172. */
  173. public void setAttributeNames(String attributeNames);
  174. /**
  175. * Returns the attributes enabled of this saml idp sp connection.
  176. *
  177. * @return the attributes enabled of this saml idp sp connection
  178. */
  179. public boolean getAttributesEnabled();
  180. /**
  181. * Returns <code>true</code> if this saml idp sp connection is attributes enabled.
  182. *
  183. * @return <code>true</code> if this saml idp sp connection is attributes enabled; <code>false</code> otherwise
  184. */
  185. public boolean isAttributesEnabled();
  186. /**
  187. * Sets whether this saml idp sp connection is attributes enabled.
  188. *
  189. * @param attributesEnabled the attributes enabled of this saml idp sp connection
  190. */
  191. public void setAttributesEnabled(boolean attributesEnabled);
  192. /**
  193. * Returns the attributes namespace enabled of this saml idp sp connection.
  194. *
  195. * @return the attributes namespace enabled of this saml idp sp connection
  196. */
  197. public boolean getAttributesNamespaceEnabled();
  198. /**
  199. * Returns <code>true</code> if this saml idp sp connection is attributes namespace enabled.
  200. *
  201. * @return <code>true</code> if this saml idp sp connection is attributes namespace enabled; <code>false</code> otherwise
  202. */
  203. public boolean isAttributesNamespaceEnabled();
  204. /**
  205. * Sets whether this saml idp sp connection is attributes namespace enabled.
  206. *
  207. * @param attributesNamespaceEnabled the attributes namespace enabled of this saml idp sp connection
  208. */
  209. public void setAttributesNamespaceEnabled(
  210. boolean attributesNamespaceEnabled);
  211. /**
  212. * Returns the enabled of this saml idp sp connection.
  213. *
  214. * @return the enabled of this saml idp sp connection
  215. */
  216. public boolean getEnabled();
  217. /**
  218. * Returns <code>true</code> if this saml idp sp connection is enabled.
  219. *
  220. * @return <code>true</code> if this saml idp sp connection is enabled; <code>false</code> otherwise
  221. */
  222. public boolean isEnabled();
  223. /**
  224. * Sets whether this saml idp sp connection is enabled.
  225. *
  226. * @param enabled the enabled of this saml idp sp connection
  227. */
  228. public void setEnabled(boolean enabled);
  229. /**
  230. * Returns the encryption forced of this saml idp sp connection.
  231. *
  232. * @return the encryption forced of this saml idp sp connection
  233. */
  234. public boolean getEncryptionForced();
  235. /**
  236. * Returns <code>true</code> if this saml idp sp connection is encryption forced.
  237. *
  238. * @return <code>true</code> if this saml idp sp connection is encryption forced; <code>false</code> otherwise
  239. */
  240. public boolean isEncryptionForced();
  241. /**
  242. * Sets whether this saml idp sp connection is encryption forced.
  243. *
  244. * @param encryptionForced the encryption forced of this saml idp sp connection
  245. */
  246. public void setEncryptionForced(boolean encryptionForced);
  247. /**
  248. * Returns the metadata url of this saml idp sp connection.
  249. *
  250. * @return the metadata url of this saml idp sp connection
  251. */
  252. @AutoEscape
  253. public String getMetadataUrl();
  254. /**
  255. * Sets the metadata url of this saml idp sp connection.
  256. *
  257. * @param metadataUrl the metadata url of this saml idp sp connection
  258. */
  259. public void setMetadataUrl(String metadataUrl);
  260. /**
  261. * Returns the metadata xml of this saml idp sp connection.
  262. *
  263. * @return the metadata xml of this saml idp sp connection
  264. */
  265. @AutoEscape
  266. public String getMetadataXml();
  267. /**
  268. * Sets the metadata xml of this saml idp sp connection.
  269. *
  270. * @param metadataXml the metadata xml of this saml idp sp connection
  271. */
  272. public void setMetadataXml(String metadataXml);
  273. /**
  274. * Returns the metadata updated date of this saml idp sp connection.
  275. *
  276. * @return the metadata updated date of this saml idp sp connection
  277. */
  278. public Date getMetadataUpdatedDate();
  279. /**
  280. * Sets the metadata updated date of this saml idp sp connection.
  281. *
  282. * @param metadataUpdatedDate the metadata updated date of this saml idp sp connection
  283. */
  284. public void setMetadataUpdatedDate(Date metadataUpdatedDate);
  285. /**
  286. * Returns the name of this saml idp sp connection.
  287. *
  288. * @return the name of this saml idp sp connection
  289. */
  290. @AutoEscape
  291. public String getName();
  292. /**
  293. * Sets the name of this saml idp sp connection.
  294. *
  295. * @param name the name of this saml idp sp connection
  296. */
  297. public void setName(String name);
  298. /**
  299. * Returns the name ID attribute of this saml idp sp connection.
  300. *
  301. * @return the name ID attribute of this saml idp sp connection
  302. */
  303. @AutoEscape
  304. public String getNameIdAttribute();
  305. /**
  306. * Sets the name ID attribute of this saml idp sp connection.
  307. *
  308. * @param nameIdAttribute the name ID attribute of this saml idp sp connection
  309. */
  310. public void setNameIdAttribute(String nameIdAttribute);
  311. /**
  312. * Returns the name ID format of this saml idp sp connection.
  313. *
  314. * @return the name ID format of this saml idp sp connection
  315. */
  316. @AutoEscape
  317. public String getNameIdFormat();
  318. /**
  319. * Sets the name ID format of this saml idp sp connection.
  320. *
  321. * @param nameIdFormat the name ID format of this saml idp sp connection
  322. */
  323. public void setNameIdFormat(String nameIdFormat);
  324. /**
  325. * Returns the saml sp entity ID of this saml idp sp connection.
  326. *
  327. * @return the saml sp entity ID of this saml idp sp connection
  328. */
  329. @AutoEscape
  330. public String getSamlSpEntityId();
  331. /**
  332. * Sets the saml sp entity ID of this saml idp sp connection.
  333. *
  334. * @param samlSpEntityId the saml sp entity ID of this saml idp sp connection
  335. */
  336. public void setSamlSpEntityId(String samlSpEntityId);
  337. @Override
  338. public SamlIdpSpConnection cloneWithOriginalValues();
  339. }