Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getCode (0.04 sec)

  1. AzureAdAuthenticator.java

    L208: } L209: final AuthenticationErrorResponse oidcResponse = (AuthenticationErrorResponse) authResponse; L210: throw new SsoLoginException(String.format("Request for auth code failed: %s - %s", oidcResponse.getErrorObject().getCode(), L211: oidcResponse.getErrorObject().getDescription())); L212: } L213: L214: protected AuthenticationResponse parseAuthenticationResponse(final String url, final Map<String, List<String>> params) { L215: if (logger.isDebugEnabled())...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      28.2K bytes
  2. ApiAdminRoleAction.java

    implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.api.admin.role; L17: L18:import static org.codelibs.fess.app.web.admin.role.AdminRoleAction.getRole; L19: L20:import java.util.List; L21:import java.util.stream.Collectors; L22: L23:import org.apache.logging.log4j.LogManager; L24:import org.apache.logging.log4j.Logger; L25:import org.codelibs.fess.app.pager.RolePager; L26:import org.codelibs.fe...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.2K bytes
  3. AdminRoleAction.java

    CrudMode.EDIT: L215: if (form instanceof EditForm) { L216: return ComponentUtil.getComponent(RoleService.class).getRole(((EditForm) form).id); L217: } L218: break; L219: default: L220: break; L221: } L222: return OptionalEntity.empty(); L223: } L224: L225: public static OptionalEntity<Role> getRole(final CreateForm form) { L226: return getEntity(form).map(entity -> { L227: copyMapToBean(form.attributes, entity,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      10.8K bytes
  4. RoleService.java

    rolePager.setPageNumberList(roleList.pageRange(op -> { L57: op.rangeSize(fessConfig.getPagingPageRangeSizeAsInteger()); L58: }).createPageNumberList()); L59: L60: return roleList; L61: } L62: L63: public OptionalEntity<Role> getRole(final String id) { L64: return roleBhv.selectByPK(id); L65: } L66: L67: public void store(final Role role) { L68: ComponentUtil.getLdapManager().insert(role); L69: L70: roleBhv.insertOrUpdate(role, op -> { L71: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.4K bytes
  5. CrawlTestBase.java

    HashMap<>(); L49: final String schedulerId = getSchedulerIds(namePrefix).get(0); L50: final Response response = checkMethodBase(requestBody).post("/api/admin/scheduler/" + schedulerId + "/start"); L51: if (response.getBody().jsonPath().getInt("response.status") == 0) { L52: logger.info("Start scheduler \"{}\"", schedulerId); L53: return; L54: } L55: ThreadUtil.sleep(1000L); L56: } L57: fail("could not...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
Back to top