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

http://github.com/liferay/liferay-portal · Java · 435 lines · 86 code · 60 blank · 289 comment · 0 complexity · 79780b1d10155be1a783fe38638d6303 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 SamlSpIdpConnection service. Represents a row in the "SamlSpIdpConnection" 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.SamlSpIdpConnectionModelImpl</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.SamlSpIdpConnectionImpl</code>.
  26. * </p>
  27. *
  28. * @author Mika Koivisto
  29. * @see SamlSpIdpConnection
  30. * @generated
  31. */
  32. @ProviderType
  33. public interface SamlSpIdpConnectionModel
  34. extends AuditedModel, BaseModel<SamlSpIdpConnection>, ShardedModel {
  35. /*
  36. * NOTE FOR DEVELOPERS:
  37. *
  38. * Never modify or reference this interface directly. All methods that expect a saml sp idp connection model instance should use the {@link SamlSpIdpConnection} interface instead.
  39. */
  40. /**
  41. * Returns the primary key of this saml sp idp connection.
  42. *
  43. * @return the primary key of this saml sp idp connection
  44. */
  45. public long getPrimaryKey();
  46. /**
  47. * Sets the primary key of this saml sp idp connection.
  48. *
  49. * @param primaryKey the primary key of this saml sp idp connection
  50. */
  51. public void setPrimaryKey(long primaryKey);
  52. /**
  53. * Returns the saml sp idp connection ID of this saml sp idp connection.
  54. *
  55. * @return the saml sp idp connection ID of this saml sp idp connection
  56. */
  57. public long getSamlSpIdpConnectionId();
  58. /**
  59. * Sets the saml sp idp connection ID of this saml sp idp connection.
  60. *
  61. * @param samlSpIdpConnectionId the saml sp idp connection ID of this saml sp idp connection
  62. */
  63. public void setSamlSpIdpConnectionId(long samlSpIdpConnectionId);
  64. /**
  65. * Returns the company ID of this saml sp idp connection.
  66. *
  67. * @return the company ID of this saml sp idp connection
  68. */
  69. @Override
  70. public long getCompanyId();
  71. /**
  72. * Sets the company ID of this saml sp idp connection.
  73. *
  74. * @param companyId the company ID of this saml sp idp connection
  75. */
  76. @Override
  77. public void setCompanyId(long companyId);
  78. /**
  79. * Returns the user ID of this saml sp idp connection.
  80. *
  81. * @return the user ID of this saml sp idp connection
  82. */
  83. @Override
  84. public long getUserId();
  85. /**
  86. * Sets the user ID of this saml sp idp connection.
  87. *
  88. * @param userId the user ID of this saml sp idp connection
  89. */
  90. @Override
  91. public void setUserId(long userId);
  92. /**
  93. * Returns the user uuid of this saml sp idp connection.
  94. *
  95. * @return the user uuid of this saml sp idp connection
  96. */
  97. @Override
  98. public String getUserUuid();
  99. /**
  100. * Sets the user uuid of this saml sp idp connection.
  101. *
  102. * @param userUuid the user uuid of this saml sp idp connection
  103. */
  104. @Override
  105. public void setUserUuid(String userUuid);
  106. /**
  107. * Returns the user name of this saml sp idp connection.
  108. *
  109. * @return the user name of this saml sp idp connection
  110. */
  111. @AutoEscape
  112. @Override
  113. public String getUserName();
  114. /**
  115. * Sets the user name of this saml sp idp connection.
  116. *
  117. * @param userName the user name of this saml sp idp connection
  118. */
  119. @Override
  120. public void setUserName(String userName);
  121. /**
  122. * Returns the create date of this saml sp idp connection.
  123. *
  124. * @return the create date of this saml sp idp connection
  125. */
  126. @Override
  127. public Date getCreateDate();
  128. /**
  129. * Sets the create date of this saml sp idp connection.
  130. *
  131. * @param createDate the create date of this saml sp idp connection
  132. */
  133. @Override
  134. public void setCreateDate(Date createDate);
  135. /**
  136. * Returns the modified date of this saml sp idp connection.
  137. *
  138. * @return the modified date of this saml sp idp connection
  139. */
  140. @Override
  141. public Date getModifiedDate();
  142. /**
  143. * Sets the modified date of this saml sp idp connection.
  144. *
  145. * @param modifiedDate the modified date of this saml sp idp connection
  146. */
  147. @Override
  148. public void setModifiedDate(Date modifiedDate);
  149. /**
  150. * Returns the assertion signature required of this saml sp idp connection.
  151. *
  152. * @return the assertion signature required of this saml sp idp connection
  153. */
  154. public boolean getAssertionSignatureRequired();
  155. /**
  156. * Returns <code>true</code> if this saml sp idp connection is assertion signature required.
  157. *
  158. * @return <code>true</code> if this saml sp idp connection is assertion signature required; <code>false</code> otherwise
  159. */
  160. public boolean isAssertionSignatureRequired();
  161. /**
  162. * Sets whether this saml sp idp connection is assertion signature required.
  163. *
  164. * @param assertionSignatureRequired the assertion signature required of this saml sp idp connection
  165. */
  166. public void setAssertionSignatureRequired(
  167. boolean assertionSignatureRequired);
  168. /**
  169. * Returns the clock skew of this saml sp idp connection.
  170. *
  171. * @return the clock skew of this saml sp idp connection
  172. */
  173. public long getClockSkew();
  174. /**
  175. * Sets the clock skew of this saml sp idp connection.
  176. *
  177. * @param clockSkew the clock skew of this saml sp idp connection
  178. */
  179. public void setClockSkew(long clockSkew);
  180. /**
  181. * Returns the enabled of this saml sp idp connection.
  182. *
  183. * @return the enabled of this saml sp idp connection
  184. */
  185. public boolean getEnabled();
  186. /**
  187. * Returns <code>true</code> if this saml sp idp connection is enabled.
  188. *
  189. * @return <code>true</code> if this saml sp idp connection is enabled; <code>false</code> otherwise
  190. */
  191. public boolean isEnabled();
  192. /**
  193. * Sets whether this saml sp idp connection is enabled.
  194. *
  195. * @param enabled the enabled of this saml sp idp connection
  196. */
  197. public void setEnabled(boolean enabled);
  198. /**
  199. * Returns the force authn of this saml sp idp connection.
  200. *
  201. * @return the force authn of this saml sp idp connection
  202. */
  203. public boolean getForceAuthn();
  204. /**
  205. * Returns <code>true</code> if this saml sp idp connection is force authn.
  206. *
  207. * @return <code>true</code> if this saml sp idp connection is force authn; <code>false</code> otherwise
  208. */
  209. public boolean isForceAuthn();
  210. /**
  211. * Sets whether this saml sp idp connection is force authn.
  212. *
  213. * @param forceAuthn the force authn of this saml sp idp connection
  214. */
  215. public void setForceAuthn(boolean forceAuthn);
  216. /**
  217. * Returns the ldap import enabled of this saml sp idp connection.
  218. *
  219. * @return the ldap import enabled of this saml sp idp connection
  220. */
  221. public boolean getLdapImportEnabled();
  222. /**
  223. * Returns <code>true</code> if this saml sp idp connection is ldap import enabled.
  224. *
  225. * @return <code>true</code> if this saml sp idp connection is ldap import enabled; <code>false</code> otherwise
  226. */
  227. public boolean isLdapImportEnabled();
  228. /**
  229. * Sets whether this saml sp idp connection is ldap import enabled.
  230. *
  231. * @param ldapImportEnabled the ldap import enabled of this saml sp idp connection
  232. */
  233. public void setLdapImportEnabled(boolean ldapImportEnabled);
  234. /**
  235. * Returns the metadata updated date of this saml sp idp connection.
  236. *
  237. * @return the metadata updated date of this saml sp idp connection
  238. */
  239. public Date getMetadataUpdatedDate();
  240. /**
  241. * Sets the metadata updated date of this saml sp idp connection.
  242. *
  243. * @param metadataUpdatedDate the metadata updated date of this saml sp idp connection
  244. */
  245. public void setMetadataUpdatedDate(Date metadataUpdatedDate);
  246. /**
  247. * Returns the metadata url of this saml sp idp connection.
  248. *
  249. * @return the metadata url of this saml sp idp connection
  250. */
  251. @AutoEscape
  252. public String getMetadataUrl();
  253. /**
  254. * Sets the metadata url of this saml sp idp connection.
  255. *
  256. * @param metadataUrl the metadata url of this saml sp idp connection
  257. */
  258. public void setMetadataUrl(String metadataUrl);
  259. /**
  260. * Returns the metadata xml of this saml sp idp connection.
  261. *
  262. * @return the metadata xml of this saml sp idp connection
  263. */
  264. @AutoEscape
  265. public String getMetadataXml();
  266. /**
  267. * Sets the metadata xml of this saml sp idp connection.
  268. *
  269. * @param metadataXml the metadata xml of this saml sp idp connection
  270. */
  271. public void setMetadataXml(String metadataXml);
  272. /**
  273. * Returns the name of this saml sp idp connection.
  274. *
  275. * @return the name of this saml sp idp connection
  276. */
  277. @AutoEscape
  278. public String getName();
  279. /**
  280. * Sets the name of this saml sp idp connection.
  281. *
  282. * @param name the name of this saml sp idp connection
  283. */
  284. public void setName(String name);
  285. /**
  286. * Returns the name ID format of this saml sp idp connection.
  287. *
  288. * @return the name ID format of this saml sp idp connection
  289. */
  290. @AutoEscape
  291. public String getNameIdFormat();
  292. /**
  293. * Sets the name ID format of this saml sp idp connection.
  294. *
  295. * @param nameIdFormat the name ID format of this saml sp idp connection
  296. */
  297. public void setNameIdFormat(String nameIdFormat);
  298. /**
  299. * Returns the saml idp entity ID of this saml sp idp connection.
  300. *
  301. * @return the saml idp entity ID of this saml sp idp connection
  302. */
  303. @AutoEscape
  304. public String getSamlIdpEntityId();
  305. /**
  306. * Sets the saml idp entity ID of this saml sp idp connection.
  307. *
  308. * @param samlIdpEntityId the saml idp entity ID of this saml sp idp connection
  309. */
  310. public void setSamlIdpEntityId(String samlIdpEntityId);
  311. /**
  312. * Returns the sign authn request of this saml sp idp connection.
  313. *
  314. * @return the sign authn request of this saml sp idp connection
  315. */
  316. public boolean getSignAuthnRequest();
  317. /**
  318. * Returns <code>true</code> if this saml sp idp connection is sign authn request.
  319. *
  320. * @return <code>true</code> if this saml sp idp connection is sign authn request; <code>false</code> otherwise
  321. */
  322. public boolean isSignAuthnRequest();
  323. /**
  324. * Sets whether this saml sp idp connection is sign authn request.
  325. *
  326. * @param signAuthnRequest the sign authn request of this saml sp idp connection
  327. */
  328. public void setSignAuthnRequest(boolean signAuthnRequest);
  329. /**
  330. * Returns the unknown users are strangers of this saml sp idp connection.
  331. *
  332. * @return the unknown users are strangers of this saml sp idp connection
  333. */
  334. public boolean getUnknownUsersAreStrangers();
  335. /**
  336. * Returns <code>true</code> if this saml sp idp connection is unknown users are strangers.
  337. *
  338. * @return <code>true</code> if this saml sp idp connection is unknown users are strangers; <code>false</code> otherwise
  339. */
  340. public boolean isUnknownUsersAreStrangers();
  341. /**
  342. * Sets whether this saml sp idp connection is unknown users are strangers.
  343. *
  344. * @param unknownUsersAreStrangers the unknown users are strangers of this saml sp idp connection
  345. */
  346. public void setUnknownUsersAreStrangers(boolean unknownUsersAreStrangers);
  347. /**
  348. * Returns the user attribute mappings of this saml sp idp connection.
  349. *
  350. * @return the user attribute mappings of this saml sp idp connection
  351. */
  352. @AutoEscape
  353. public String getUserAttributeMappings();
  354. /**
  355. * Sets the user attribute mappings of this saml sp idp connection.
  356. *
  357. * @param userAttributeMappings the user attribute mappings of this saml sp idp connection
  358. */
  359. public void setUserAttributeMappings(String userAttributeMappings);
  360. /**
  361. * Returns the user identifier expression of this saml sp idp connection.
  362. *
  363. * @return the user identifier expression of this saml sp idp connection
  364. */
  365. @AutoEscape
  366. public String getUserIdentifierExpression();
  367. /**
  368. * Sets the user identifier expression of this saml sp idp connection.
  369. *
  370. * @param userIdentifierExpression the user identifier expression of this saml sp idp connection
  371. */
  372. public void setUserIdentifierExpression(String userIdentifierExpression);
  373. @Override
  374. public SamlSpIdpConnection cloneWithOriginalValues();
  375. }