Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 288 for delete (0.06 sec)

  1. GroupService.java

    pManager().insert(group); L72: L73: groupBhv.insertOrUpdate(group, op -> { L74: op.setRefreshPolicy(Constants.TRUE); L75: }); L76: L77: } L78: L79: public void delete(final Group group) { L80: ComponentUtil.getLdapManager().delete(group); L81: L82: groupBhv.delete(group, op -> { L83: op.setRefreshPolicy(Constants.TRUE); L84: }); L85: L86: userBhv.selectCursor(cb -> cb.query().setGroups_Equal(group.getId()), entity -> { L87: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.6K bytes
  2. RoleService.java

    ComponentUtil.getLdapManager().insert(role); L69: L70: roleBhv.insertOrUpdate(role, op -> { L71: op.setRefreshPolicy(Constants.TRUE); L72: }); L73: L74: } L75: L76: public void delete(final Role role) { L77: ComponentUtil.getLdapManager().delete(role); L78: L79: roleBhv.delete(role, op -> { L80: op.setRefreshPolicy(Constants.TRUE); L81: }); L82: L83: userBhv.selectCursor(cb -> cb.query().setRoles_Equal(role.getId()), entity -> { L84: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.4K bytes
  3. CharMappingFile.java

    L296: if (isCommit) { L297: try { L298: dictionaryManager.store(CharMappingFile.this, newFile); L299: } finally { L300: newFile.delete(); L301: } L302: } else { L303: newFile.delete(); L304: } L305: } L306: } L307: L308:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      10.2K bytes
  4. plugin.xml

    value="https://oss.sonatype.org/content/repositories/snapshots" /> L8: <property name="maven.release.repo.url" value="https://oss.sonatype.org/content/repositories/releases" /> L9: L10: <target name="install.plugins"> L11: <mkdir dir="${target.dir}" /> L12: <delete dir="${plugins.dir}" /> L13: <mkdir dir="${plugins.dir}" /> L14: <!-- analysis-extension --> L15: <antcall target="install.plugin"> L16: <param name="repo.url" value="${maven.release.repo.url}" /> L17: <param name="plugin.groupId" value="o...
    github.com/codelibs/fess/plugin.xml
    Fri Oct 25 23:33:43 UTC 2024
      3.5K bytes
  5. ApiAdminUserAction.java

    buildThrowableMessage(e))); L103: } L104: return asJson(new ApiResult.ApiUpdateResponse().id(entity.getId()).created(false).status(ApiResult.Status.OK).result()); L105: } L106: L107: // DELETE /api/admin/user/setting/{id} L108: @Execute L109: public JsonResponse<ApiResult> delete$setting(final String id) { L110: final User entity = userService.getUser(id).orElseGet(() -> { L111: throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.8K bytes
  6. admin_searchlist.jsp

    rmation"/> L206: </p> L207: <p> L208: <strong id="delete-doc-title"></strong><br/> <span L209: id="delete-doc-url"></span> L210: </p> L211: </div> L212: <div class="modal-footer...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu Sep 24 13:09:22 UTC 2020
      20K bytes
  7. AdminEsreqAction.java

    response.getContentAsStream()) { L100: CopyUtil.copy(in, tempFile); L101: } catch (final Exception e1) { L102: if (tempFile != null && tempFile.exists() && !tempFile.delete()) { L103: logger.warn("Failed to delete {}", tempFile.getAbsolutePath()); L104: } L105: throw e1; L106: } L107: return asStream("es_" + ComponentUtil.getSystemHelper().getCurrentTimeAsLong()...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.2K bytes
  8. ApiAdminRelatedqueryAction.java

    ApiUpdateResponse().id(relatedQuery.getId()).created(false).status(Status.OK).result()); L117: } L118: L119: // DELETE /api/admin/relatedquery/setting/{id} L120: @Execute L121: public JsonResponse<ApiResult> delete$setting(final String id) { L122: relatedQueryService.getRelatedQuery(id).ifPresent(entity -> { L123: try { L124: relatedQueryService.delete(entity); L125: saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL)); L126: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.6K bytes
  9. ApiAdminDictProtwordsAction.java

    lueOf(entity.getId())).created(false).status(ApiResult.Status.OK).result()); L104: } L105: L106: // DELETE /api/admin/dict/protwords/setting/{dictId}/{id} L107: @Execute L108: public JsonResponse<ApiResult> delete$setting(final String dictId, final long id) { L109: protwordsService.getProtwordsItem(dictId, id).ifPresent(entity -> { L110: protwordsService.delete(dictId, entity); L111: saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL)); L112:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.2K bytes
  10. AdminPluginAction.java

    final OutputStream os = new FileOutputStream(tempFile)) { L98: CopyUtil.copy(is, os); L99: } catch (final Exception e) { L100: if (tempFile.exists() && !tempFile.delete()) { L101: logger.warn("Failed to delete {}.", tempFile.getAbsolutePath()); L102: } L103: logger.debug("Failed to copy {}", filename, e); L104: throwValidationError(messages -> messages.addErrorsFai...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
Back to top