- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 61 for labelType (0.09 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/EditBody.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.labeltype; import org.codelibs.fess.app.web.admin.labeltype.EditForm; /** * Request body class for label type edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp
<p><la:message key="labels.menu_data_store" /></p> </a></li></c:if> <c:if test="${fe:permission('admin-labeltype-view')}"> <li class="nav-item"> <a href="${fe:url('/admin/labeltype/')}" class="nav-link <c:if test="${param.menuType=='labelType'}">active</c:if>"> <em class='fa fa-genderless nav-icon'> <p><la:message key="labels.menu_label_type" /></p> </a></li></c:if>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Apr 15 20:55:28 UTC 2021 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java
* @return optional label type entity */ public static OptionalEntity<LabelType> getEntity(final CreateForm form, final String username, final long currentTime) { switch (form.crudMode) { case CrudMode.CREATE: return OptionalEntity.of(new LabelType()).map(entity -> { entity.setCreatedBy(username); entity.setCreatedTime(currentTime);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java
}).orElse(() -> fail()); parser.getFileConfig().ifPresent(c -> { logger.debug(c.toString()); }).orElse(() -> fail()); LabelType[] labelTypes = parser.getLabelTypes(); assertEquals(3, labelTypes.length); } public void test_escape() { // https://www.google.com/support/enterprise/static/gsa/docs/admin/70/gsa_doc_set/admin_crawl/url_patterns.html#1076127
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype.jsp
<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp"> <jsp:param name="menuCategoryType" value="crawl"/> <jsp:param name="menuType" value="labelType"/> </jsp:include> <div class="content-wrapper"> <div class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-sm-6">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Mar 31 05:47:05 UTC 2020 - 10.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype_details.jsp
<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp"> <jsp:param name="menuCategoryType" value="crawl"/> <jsp:param name="menuType" value="labelType"/> </jsp:include> <div class="content-wrapper"> <div class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-sm-6">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.labeltype; import org.codelibs.fess.app.web.CrudMode; import org.codelibs.fess.util.ComponentUtil; import org.codelibs.fess.validation.CustomSize; import org.lastaflute.web.validation.Required;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java
/** The path of the HTML: /admin/labeltype/admin_labeltype.jsp */ HtmlNext path_AdminLabeltype_AdminLabeltypeJsp = new HtmlNext("/admin/labeltype/admin_labeltype.jsp"); /** The path of the HTML: /admin/labeltype/admin_labeltype_details.jsp */ HtmlNext path_AdminLabeltype_AdminLabeltypeDetailsJsp = new HtmlNext("/admin/labeltype/admin_labeltype_details.jsp");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.java
labelBody.put("name", TEST_LABEL); labelBody.put("value", TEST_LABEL); labelBody.put("included_paths", ".*tools.*"); Response response = checkMethodBase(labelBody).post("/api/admin/labeltype/setting"); JsonPath jsonPath = JsonPath.from(response.asString()); assertTrue(jsonPath.getBoolean("response.created")); assertEquals(0, jsonPath.getInt("response.status"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/LabelTypeTests.java
import org.junit.jupiter.api.Test; @Tag("it") public class LabelTypeTests extends CrudTestBase { private static final String NAME_PREFIX = "labelTypeTest_"; private static final String API_PATH = "/api/admin/labeltype"; private static final String LIST_ENDPOINT_SUFFIX = "settings"; private static final String ITEM_ENDPOINT_SUFFIX = "setting"; private static final String KEY_PROPERTY = "name"; @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 2.3K bytes - Viewed (0)