All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arangodb.entity.UsersEntity Maven / Gradle / Ivy

There is a newer version: 7.15.0
Show newest version
package com.arangodb.entity;

import java.util.List;
import java.util.Map;

/**
 * @author a-brandt
 * @author gschwab
 * 
 */
public class UsersEntity extends BaseEntity {

  /**
   * List of users.
   */
  private List users;

  /**
   * Map of users.
   */
  private Map names;

  public List getUsers() {
    return users;
  }

  public void setUsers(List users) {
    this.users = users;
  }

  public Map getNames() {
    return names;
  }

  public void setNames(Map names) {
    this.names = names;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy