public void setRepresentative()

in src/main/java/com/epam/digital/data/platform/starter/security/dto/JwtClaimsDto.java [70:78]


  public void setRepresentative(Object representative) {
    if (List.class.isInstance(representative)) {
      this.representative = Boolean.parseBoolean(((List<String>) representative).get(0));
    } else if (Boolean.class.isInstance(representative)) {
      this.representative = (Boolean) representative;
    } else {
      this.representative = false;
    }
  }