/openfire/src/java/org/jivesoftware/openfire/user/UserProvider.java

https://bitbucket.org/belinskiy/openfire4v2 · Java · 232 lines · 28 code · 21 blank · 183 comment · 0 complexity · 681bd8d9225e753529542e2bc4172aed MD5 · raw file

  1. /*
  2. * Copyright (C) 2004-2008 Jive Software. All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.jivesoftware.openfire.user;
  17. import java.util.Collection;
  18. import java.util.Date;
  19. import java.util.Set;
  20. /**
  21. * Provider interface for the user system.
  22. *
  23. * @author Matt Tucker
  24. */
  25. public interface UserProvider {
  26. /**
  27. * Loads the specified user by username.
  28. *
  29. * @param username the username
  30. * @return the User.
  31. * @throws UserNotFoundException if the User could not be loaded.
  32. */
  33. User loadUser( String username ) throws UserNotFoundException;
  34. /**
  35. * Creates a new user. This method should throw an
  36. * UnsupportedOperationException if this operation is not
  37. * supporte by the backend user store.
  38. *
  39. * @param username the username.
  40. * @param password the plain-text password.
  41. * @param name the user's name, which can be <tt>null</tt>, unless isNameRequired is set to true.
  42. * @param email the user's email address, which can be <tt>null</tt>, unless isEmailRequired is set to true.
  43. * @return a new User.
  44. * @throws UserAlreadyExistsException if the username is already in use.
  45. */
  46. User createUser( String username, String password, String name, String email )
  47. throws UserAlreadyExistsException;
  48. /**
  49. * Delets a user. This method should throw an
  50. * UnsupportedOperationException if this operation is not
  51. * supported by the backend user store.
  52. *
  53. * @param username the username to delete.
  54. */
  55. void deleteUser( String username );
  56. /**
  57. * Returns the number of users in the system.
  58. *
  59. * @return the total number of users.
  60. */
  61. int getUserCount();
  62. /**
  63. * Returns an unmodifiable Collections of all users in the system. The
  64. * {@link UserCollection} class can be used to assist in the implementation
  65. * of this method. It takes a String [] of usernames and presents it as a
  66. * Collection of User objects (obtained with calls to
  67. * {@link UserManager#getUser(String)}.
  68. *
  69. * @return an unmodifiable Collection of all users.
  70. */
  71. Collection<User> getUsers();
  72. /**
  73. * Returns an unmodifiable Collection of usernames of all users in the system.
  74. *
  75. * @return an unmodifiable Collection of all usernames in the system.
  76. */
  77. Collection<String> getUsernames();
  78. /**
  79. * Returns an unmodifiable Collections of users in the system within the
  80. * specified range. The {@link UserCollection} class can be used to assist
  81. * in the implementation of this method. It takes a String [] of usernames
  82. * and presents it as a Collection of User objects (obtained with calls to
  83. * {@link UserManager#getUser(String)}.<p>
  84. *
  85. * It is possible that the number of results returned will be less than that
  86. * specified by <tt>numResults</tt> if <tt>numResults</tt> is greater than the
  87. * number of records left to display.
  88. *
  89. * @param startIndex the beginning index to start the results at.
  90. * @param numResults the total number of results to return.
  91. * @return an unmodifiable Collection of users within the specified range.
  92. */
  93. Collection<User> getUsers( int startIndex, int numResults );
  94. /**
  95. * Sets the user's name. This method should throw an UnsupportedOperationException
  96. * if this operation is not supported by the backend user store.
  97. *
  98. * @param username the username.
  99. * @param name the name.
  100. * @throws UserNotFoundException if the user could not be found.
  101. */
  102. void setName( String username, String name ) throws UserNotFoundException;
  103. /**
  104. * Sets the user's email address. This method should throw an
  105. * UnsupportedOperationException if this operation is not supported
  106. * by the backend user store.
  107. *
  108. * @param username the username.
  109. * @param email the email address.
  110. * @throws UserNotFoundException if the user could not be found.
  111. */
  112. void setEmail( String username, String email ) throws UserNotFoundException;
  113. /**
  114. * Sets the date the user was created. This method should throw an
  115. * UnsupportedOperationException if this operation is not supported
  116. * by the backend user store.
  117. *
  118. * @param username the username.
  119. * @param creationDate the date the user was created.
  120. * @throws UserNotFoundException if the user could not be found.
  121. */
  122. void setCreationDate( String username, Date creationDate ) throws UserNotFoundException;
  123. /**
  124. * Sets the date the user was last modified. This method should throw an
  125. * UnsupportedOperationException if this operation is not supported
  126. * by the backend user store.
  127. *
  128. * @param username the username.
  129. * @param modificationDate the date the user was last modified.
  130. * @throws UserNotFoundException if the user could not be found.
  131. */
  132. void setModificationDate( String username, Date modificationDate )
  133. throws UserNotFoundException;
  134. /**
  135. * Returns the set of fields that can be used for searching for users. Each field
  136. * returned must support wild-card and keyword searching. For example, an
  137. * implementation might send back the set {"Username", "Name", "Email"}. Any of
  138. * those three fields can then be used in a search with the
  139. * {@link #findUsers(Set,String)} method.<p>
  140. *
  141. * This method should throw an UnsupportedOperationException if this
  142. * operation is not supported by the backend user store.
  143. *
  144. * @return the valid search fields.
  145. * @throws UnsupportedOperationException if the provider does not
  146. * support the operation (this is an optional operation).
  147. */
  148. Set<String> getSearchFields() throws UnsupportedOperationException;
  149. /**
  150. * Searches for users based on a set of fields and a query string. The fields must
  151. * be taken from the values returned by {@link #getSearchFields()}. The query can
  152. * include wildcards. For example, a search on the field "Name" with a query of "Ma*"
  153. * might return user's with the name "Matt", "Martha" and "Madeline".<p>
  154. *
  155. * This method should throw an UnsupportedOperationException if this
  156. * operation is not supported by the backend user store.
  157. *
  158. * @param fields the fields to search on.
  159. * @param query the query string.
  160. * @return a Collection of users that match the search.
  161. * @throws UnsupportedOperationException if the provider does not
  162. * support the operation (this is an optional operation).
  163. */
  164. Collection<User> findUsers( Set<String> fields, String query )
  165. throws UnsupportedOperationException;
  166. /**
  167. * Searches for users based on a set of fields and a query string. The fields must
  168. * be taken from the values returned by {@link #getSearchFields()}. The query can
  169. * include wildcards. For example, a search on the field "Name" with a query of "Ma*"
  170. * might return user's with the name "Matt", "Martha" and "Madeline".<p>
  171. *
  172. * The startIndex and numResults parameters are used to page through search
  173. * results. For example, if the startIndex is 0 and numResults is 10, the first
  174. * 10 search results will be returned. Note that numResults is a request for the
  175. * number of results to return and that the actual number of results returned
  176. * may be fewer.<p>
  177. *
  178. * This method should throw an UnsupportedOperationException if this
  179. * operation is not supported by the backend user store.
  180. *
  181. * @param fields the fields to search on.
  182. * @param query the query string.
  183. * @param startIndex the starting index in the search result to return.
  184. * @param numResults the number of users to return in the search result.
  185. * @return a Collection of users that match the search.
  186. * @throws UnsupportedOperationException if the provider does not
  187. * support the operation (this is an optional operation).
  188. */
  189. Collection<User> findUsers( Set<String> fields, String query, int startIndex,
  190. int numResults ) throws UnsupportedOperationException;
  191. /**
  192. * Returns true if this UserProvider is read-only. When read-only,
  193. * users can not be created, deleted, or modified.
  194. *
  195. * @return true if the user provider is read-only.
  196. */
  197. boolean isReadOnly();
  198. /**
  199. * Returns true if this UserProvider requires a name to be set on User objects.
  200. *
  201. * @return true if an name is required with this provider.
  202. */
  203. boolean isNameRequired();
  204. /**
  205. * Returns true if this UserProvider requires an email address to be set on User objects.
  206. *
  207. * @return true if an email address is required with this provider.
  208. */
  209. boolean isEmailRequired();
  210. public void setiOSName(String username, String iosnumber);
  211. }