- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 177 for fileauth (0.1 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
}); return asJson(new ApiUpdateResponse().id(fileAuth.getId()).created(true).status(Status.OK).result()); } // POST /api/admin/fileauth/setting @Execute public JsonResponse<ApiResult> post$setting(final EditBody body) { validateApi(body, messages -> {}); body.crudMode = CrudMode.EDIT; final FileAuthentication fileAuth = getFileAuthentication(body).map(entity -> { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java
smb1Auth.setServer(fileAuth.getHostname()); smb1Auth.setPort(fileAuth.getPort() == null ? -1 : fileAuth.getPort()); smb1Auth.setUsername(fileAuth.getUsername()); smb1Auth.setPassword(fileAuth.getPassword()); smb1AuthList.add(smb1Auth); } else if (Constants.FTP.equals(fileAuth.getProtocolScheme())) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/CreateBody.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.fileauth; import org.codelibs.fess.app.web.admin.fileauth.CreateForm; public class CreateBody extends CreateForm {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 785 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/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.fileauth; import org.codelibs.fess.app.web.admin.fileauth.EditForm; public class EditBody extends EditForm {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 779 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/SearchBody.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.api.admin.fileauth; import org.codelibs.fess.app.web.api.admin.BaseSearchBody; public class SearchBody extends BaseSearchBody { public String id;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 810 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/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.fileauth; import org.codelibs.fess.app.web.CrudMode; import org.codelibs.fess.util.ComponentUtil; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth.jsp
<tr data-href="${contextPath}/admin/fileauth/details/4/${f:u(data.id)}"> <td><c:if test="${data.hostname==null||data.hostname==''}">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 27 06:24:23 UTC 2020 - 6.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp
<p><la:message key="labels.menu_web_authentication" /></p> </a></li></c:if> <c:if test="${fe:permission('admin-fileauth-view')}"> <li class="nav-item"> <a href="${fe:url('/admin/fileauth/')}" class="nav-link <c:if test="${param.menuType=='fileAuthentication'}">active</c:if>"> <em class='fa fa-genderless nav-icon'>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Apr 15 20:55:28 UTC 2021 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java
/** The path of the HTML: /admin/fileauth/admin_fileauth.jsp */ HtmlNext path_AdminFileauth_AdminFileauthJsp = new HtmlNext("/admin/fileauth/admin_fileauth.jsp"); /** The path of the HTML: /admin/fileauth/admin_fileauth_details.jsp */ HtmlNext path_AdminFileauth_AdminFileauthDetailsJsp = new HtmlNext("/admin/fileauth/admin_fileauth_details.jsp");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 26.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.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.fileauth; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import org.apache.logging.log4j.LogManager;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.5K bytes - Viewed (0)