- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 556 for attributes (0.19 sec)
-
src/main/java/org/codelibs/fess/es/user/exentity/Group.java
public String toString() { return "Group [name=" + name + "]"; } public Map<String, String> getAttributes() { return attributes; } public void setAttributes(final Map<String, String> attributes) { this.attributes = attributes; } @Override public Map<String, Object> toSource() { final Map<String, Object> sourceMap = new HashMap<>();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacGroup.java
public class PacGroup { private SID id; private int attributes; public PacGroup ( SID id, int attributes ) { super(); this.id = id; this.attributes = attributes; } public SID getId () { return this.id; } public int getAttributes () { return this.attributes; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.1K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java
public boolean onStartElement(String elementName, Map<String, String> attributes) { if (!elementName.equals("a") || !attributes.containsKey("name")) { return false; } Element element = document.createElement("anchor"); String id = String.format("%s.%s", classMetaData.getClassName(), attributes.get("name")); element.setAttribute("id", id);
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 29.3K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/40_contributor_documentation.yml
- type: dropdown id: issue-type attributes: label: Issue type options: - Wrong or misleading information - Missing information - Styling or Accessibility - Typo (please open a PR instead) validations: required: true - type: textarea id: description attributes: label: Problem description description: |
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jan 15 10:01:01 UTC 2024 - 1.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/GroupTests.java
final String keyProp = NAME_PREFIX + id; requestBody.put(KEY_PROPERTY, keyProp); final Map<String, String> attributes = new HashMap<>(); attributes.put("gidNumber", new Integer(id).toString()); requestBody.put("attributes", attributes); return requestBody; } @Override protected Map<String, Object> getUpdateMap() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.2K bytes - Viewed (0) -
.github/DISCUSSION_TEMPLATE/questions.yml
required: true - type: dropdown id: os attributes: label: Operating System description: What operating system are you on? multiple: true options: - Linux - Windows - macOS - Other validations: required: true - type: textarea id: os-details attributes: label: Operating System Details
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Aug 03 15:59:41 UTC 2023 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacSidAttributes.java
public class PacSidAttributes { private SID id; private int attributes; public PacSidAttributes ( SID id, int attributes ) { super(); this.id = id; this.attributes = attributes; } public SID getId () { return this.id; } public int getAttributes () { return this.attributes; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java
} } public static void validateAttributes(final Map<String, String> attributes, final Consumer<VaMessenger<FessMessages>> throwError) { ComponentUtil.getLdapManager().validateGroupAttributes(Long.class, attributes, s -> throwError.accept(messages -> messages.addErrorsPropertyTypeLong("attributes." + s, "attributes." + s))); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 13.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java
final Map<String, Object> attributes = new HashMap<>(); String jwtClaim = "{\"email\":\"******@****.***\",\"sub\":\"1234567890\",\"name\":\"John Doe\",\"groups\":[\"group1\",\"group2\"]}"; // Execute authenticator.parseJwtClaim(jwtClaim, attributes); // Verify assertEquals("1234567890", attributes.get("sub"));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java
private final Map<String, Object> attributes; public OpenIdConnectCredential(final Map<String, Object> attributes) { this.attributes = attributes; } @Override public String toString() { return "{" + getUserId() + "}"; } @Override public String getUserId() { return DocumentUtil.getValue(attributes, "email", String.class); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 4.2K bytes - Viewed (0)