- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 288 for delete (0.04 sec)
-
AdminPathmapAction.java
L225: @Secured({ ROLE }) L226: public HtmlResponse delete(final EditForm form) { L227: verifyCrudMode(form.crudMode, CrudMode.DETAILS); L228: validate(form, messages -> {}, this::asDetailsHtml); L229: verifyToken(this::asDetailsHtml); L230: final String id = form.id; L231: pathMappingService.getPathMapping(id).ifPresent(entity -> { L232: try { L233: pathMappingService.delete(entity); L234: saveInfo(messages -> messa...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 13K bytes -
GenerateThumbnailJob.java
Process terminated.", e); L251: } finally { L252: try { L253: processHelper.destroyProcess(sessionId); L254: } finally { L255: if (propFile != null && !propFile.delete()) { L256: logger.warn("Failed to delete {}.", propFile.getAbsolutePath()); L257: } L258: deleteTempDir(ownTmpDir); L259: } L260: } L261: } L262: L263: @Override L264: protected String getExecuteType()...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 10.6K bytes -
SuggestJob.java
Process terminated.", e); L233: } finally { L234: try { L235: processHelper.destroyProcess(sessionId); L236: } finally { L237: if (propFile != null && !propFile.delete()) { L238: logger.warn("Failed to delete {}.", propFile.getAbsolutePath()); L239: } L240: deleteTempDir(ownTmpDir); L241: } L242: } L243: } L244: L245: @Override L246: protected String getExecuteType()...github.com/codelibs/fess/src/main/java/org/code...Sun Jun 23 04:13:47 UTC 2024 10K bytes -
EsAbstractEntity.java
L23:import org.dbflute.FunCustodial; L24:import org.dbflute.dbmeta.accessory.EntityModifiedProperties; L25:import org.dbflute.dbmeta.accessory.EntityUniqueDrivenProperties; L26:import org.dbflute.util.DfCollectionUtil; L27:import org.opensearch.action.delete.DeleteRequestBuilder; L28:import org.opensearch.action.index.IndexRequestBuilder; L29: L30:/** L31: * @author ESFlute (using FreeGen) L32: */ L33:public abstract class EsAbstractEntity implements Entity, Serializable, Cloneable { L34: L35: // ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 10.9K bytes -
BsLabelType.java
L147: sb.append(dm).append(updatedBy); L148: sb.append(dm).append(updatedTime); L149: sb.append(dm).append(value); L150: sb.append(dm).append(virtualHost); L151: if (sb.length() > dm.length()) { L152: sb.delete(0, dm.length()); L153: } L154: sb.insert(0, "{").append("}"); L155: return sb.toString(); L156: } L157: L158: // =================================================================================== L159: // ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 8.5K bytes -
BsWebAuthentication.java
sb.append(dm).append(updatedBy); L155: sb.append(dm).append(updatedTime); L156: sb.append(dm).append(username); L157: sb.append(dm).append(webConfigId); L158: if (sb.length() > dm.length()) { L159: sb.delete(0, dm.length()); L160: } L161: sb.insert(0, "{").append("}"); L162: return sb.toString(); L163: } L164: L165: // =================================================================================== L166: // ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9K bytes -
BadWordService.java
badWordBhv.selectByPK(id); L78: } L79: L80: public void store(final BadWord badWord) { L81: L82: badWordBhv.insertOrUpdate(badWord, op -> op.setRefreshPolicy(Constants.TRUE)); L83: L84: } L85: L86: public void delete(final BadWord badWord) { L87: L88: badWordBhv.delete(badWord, op -> op.setRefreshPolicy(Constants.TRUE)); L89: L90: } L91: L92: protected void setupListCondition(final BadWordCB cb, final BadWordPager badWordPager) { L93: if (badWordPager.id != null) { L94:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 7.3K bytes -
CrudMode.java
L16:package org.codelibs.fess.app.web; L17: L18:public class CrudMode { L19: public static final int LIST = 0; L20: L21: public static final int CREATE = 1; L22: L23: public static final int EDIT = 2; L24: L25: public static final int DELETE = 3; L26: L27: public static final int DETAILS = 4; L28: L29: protected CrudMode() { L30: // nothing L31: } L32:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 937 bytes -
AdminRelatedqueryAction.java
L239: @Secured({ ROLE }) L240: public HtmlResponse delete(final EditForm form) { L241: verifyCrudMode(form.crudMode, CrudMode.DETAILS); L242: validate(form, messages -> {}, this::asDetailsHtml); L243: verifyToken(this::asDetailsHtml); L244: final String id = form.id; L245: relatedQueryService.getRelatedQuery(id).ifPresent(entity -> { L246: try { L247: relatedQueryService.delete(entity); L248: saveInfo(messages -> mes...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 14.1K bytes -
CurlHelper.java
"application/json"); L89: } L90: L91: public CurlRequest put(final String path) { L92: return request(Method.PUT, path).header("Content-Type", "application/json"); L93: } L94: L95: public CurlRequest delete(final String path) { L96: return request(Method.DELETE, path).header("Content-Type", "application/json"); L97: } L98: L99: public CurlRequest request(final Method method, final String path) { L100: return request(new FesenRequest(new CurlRequest(method, null),...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 4.8K bytes