Interface TeamQuery

All Superinterfaces:
QueryBuilder<Team>

public interface TeamQuery extends QueryBuilder<Team>
  • Method Details

    • id

      TeamQuery id(String id)
      Sets the id of the Team in the query
      Parameters:
      id - team id
      Returns:
      the current TeamQuery instance for method chaining
    • name

      TeamQuery name(String name)
      Sets the name of the Team in the query
      Parameters:
      name - team name
      Returns:
      the current TeamQuery instance for method chaining
    • login

      TeamQuery login(String login)
      Sets the login of the Team in the query
      Parameters:
      login - login name
      Returns:
      the current TeamQuery instance for method chaining
    • personId

      TeamQuery personId(String personId)
      Sets the person id of the Team in the query
      Parameters:
      personId - person id
      Returns:
      the current TeamQuery instance for method chaining
    • withPersons

      TeamQuery withPersons(boolean withUsers)
      Sets the withPersons in the query Decides if result contains field with persons of the team
      Parameters:
      withUsers - true - team persons attached to the result
      Returns:
      the current TeamQuery instance for method chaining