api/src/main/java/org/apache/fineract/cn/group/api/v1/domain/GroupDefinition.java [48:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public String getIdentifier() {
    return this.identifier;
  }

  public void setIdentifier(final String identifier) {
    this.identifier = identifier;
  }

  public String getDescription() {
    return this.description;
  }

  public void setDescription(final String description) {
    this.description = description;
  }

  public Integer getMinimalSize() {
    return this.minimalSize;
  }

  public void setMinimalSize(final Integer minimalSize) {
    this.minimalSize = minimalSize;
  }

  public Integer getMaximalSize() {
    return this.maximalSize;
  }

  public void setMaximalSize(final Integer maximalSize) {
    this.maximalSize = maximalSize;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



service/src/main/java/org/apache/fineract/cn/group/internal/repository/GroupDefinitionEntity.java [76:105]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public String getIdentifier() {
    return this.identifier;
  }

  public void setIdentifier(final String identifier) {
    this.identifier = identifier;
  }

  public String getDescription() {
    return this.description;
  }

  public void setDescription(final String description) {
    this.description = description;
  }

  public Integer getMinimalSize() {
    return this.minimalSize;
  }

  public void setMinimalSize(final Integer minimalSize) {
    this.minimalSize = minimalSize;
  }

  public Integer getMaximalSize() {
    return this.maximalSize;
  }

  public void setMaximalSize(final Integer maximalSize) {
    this.maximalSize = maximalSize;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



