Search in sources :

Example 1 with UserEntities

use of org.jivesoftware.openfire.entity.UserEntities in project Openfire by igniterealtime.

the class UserServicePluginNG method getUserEntitiesByProperty.

/**
	 * Gets the user entities by property key and or value.
	 *
	 * @param propertyKey
	 *            the property key
	 * @param propertyValue
	 *            the property value (can be null)
	 * @return the user entities by property
	 * @throws ServiceException
	 *             the service exception
	 */
public UserEntities getUserEntitiesByProperty(String propertyKey, String propertyValue) throws ServiceException {
    List<String> usernames = PropertyDAO.getUsernameByProperty(propertyKey, propertyValue);
    List<UserEntity> users = new ArrayList<UserEntity>();
    UserEntities userEntities = new UserEntities();
    for (String username : usernames) {
        users.add(getUserEntity(username));
    }
    userEntities.setUsers(users);
    return userEntities;
}
Also used : UserEntities(org.jivesoftware.openfire.entity.UserEntities) ArrayList(java.util.ArrayList) UserEntity(org.jivesoftware.openfire.entity.UserEntity)

Example 2 with UserEntities

use of org.jivesoftware.openfire.entity.UserEntities in project Openfire by igniterealtime.

the class UserServicePluginNG method getUserEntities.

/**
	 * Gets the user entities.
	 *
	 * @param userSearch
	 *            the user search
	 * @return the user entities
	 */
public UserEntities getUserEntities(String userSearch) {
    UserEntities userEntities = new UserEntities();
    userEntities.setUsers(UserUtils.convertUsersToUserEntities(userManager.getUsers(), userSearch));
    return userEntities;
}
Also used : UserEntities(org.jivesoftware.openfire.entity.UserEntities)

Aggregations

UserEntities (org.jivesoftware.openfire.entity.UserEntities)2 ArrayList (java.util.ArrayList)1 UserEntity (org.jivesoftware.openfire.entity.UserEntity)1