Exemplo n.º 1
0
  @Transient
  public String getValueTextRoles() {

    List<PickerItem> result = ValueTextBuilder.buildFromEntities(roles);
    String jsonResult = null;

    try {
      jsonResult = objectStringConverterImpl.convertToString(List.class, result);
    } catch (Exception e) {
      loggerImpl.logError(e, "security.error.convert.role.to.json");
    }

    return jsonResult;
  }