Searched defs:fields (Results 1 - 25 of 117) sorted by relevance

12345

/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/api/fields/
H A Dpackage-info.java13 * Header, with the fields enclosed by brackets [] replaced by your own identifying
25 package org.forgerock.openam.cts.api.fields;
H A DCoreTokenFieldTypes.java13 * Header, with the fields enclosed by brackets [] replaced by your own identifying
16 package org.forgerock.openam.cts.api.fields;
31 * - Manipulating a Token via its generic fields.
H A DResourceSetTokenField.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
17 package org.forgerock.openam.cts.api.fields;
20 * The ResourceSetTokenField provides a mapping between known ResourceSetDescription fields and the LDAP Attributes
23 * This class, like all other Token Field classes references the CoreTokenField fields. It goes
H A DSAMLTokenField.java13 * Header, with the fields enclosed by brackets [] replaced by your own identifying
16 package org.forgerock.openam.cts.api.fields;
21 * SAMLTokenField defines a mapping between additional fields needed to service the requirements of
22 * the SAML token. These fields are mapped to existing CoreTokenField fields.
H A DSessionTokenField.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
16 package org.forgerock.openam.cts.api.fields;
21 * Responsible for describing specific fields of interest in Session Tokens.
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/api/fields/
H A Dpackage-info.java13 * Header, with the fields enclosed by brackets [] replaced by your own identifying
25 package org.forgerock.openam.cts.api.fields;
H A DResourceSetTokenField.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
17 package org.forgerock.openam.cts.api.fields;
20 * The ResourceSetTokenField provides a mapping between known ResourceSetDescription fields and the LDAP Attributes
23 * This class, like all other Token Field classes references the CoreTokenField fields. It goes
H A DSAMLTokenField.java13 * Header, with the fields enclosed by brackets [] replaced by your own identifying
16 package org.forgerock.openam.cts.api.fields;
21 * SAMLTokenField defines a mapping between additional fields needed to service the requirements of
22 * the SAML token. These fields are mapped to existing CoreTokenField fields.
H A DCoreTokenFieldTypes.java13 * Header, with the fields enclosed by brackets [] replaced by your own identifying
16 package org.forgerock.openam.cts.api.fields;
31 * - Manipulating a Token via its generic fields.
H A DSessionTokenField.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
16 package org.forgerock.openam.cts.api.fields;
21 * Responsible for describing specific fields of interest in Session Tokens.
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/cts/api/fields/
H A DCoreTokenFieldTest.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
16 package org.forgerock.openam.cts.api.fields;
H A DOAuthTokenFieldTest.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
16 package org.forgerock.openam.cts.api.fields;
H A DSessionTokenFieldTest.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
16 package org.forgerock.openam.cts.api.fields;
H A DCoreTokenFieldTypesTest.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
16 package org.forgerock.openam.cts.api.fields;
81 // Ignore read only fields.
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/cts/api/fields/
H A DCoreTokenFieldTest.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
16 package org.forgerock.openam.cts.api.fields;
H A DOAuthTokenFieldTest.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
16 package org.forgerock.openam.cts.api.fields;
H A DSessionTokenFieldTest.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
16 package org.forgerock.openam.cts.api.fields;
H A DCoreTokenFieldTypesTest.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
17 package org.forgerock.openam.cts.api.fields;
84 // Ignore read only fields.
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/audit/
H A DRestletBodyAuditor.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
42 private final String[] fields; field in class:RestletBodyAuditor
45 * Creates a body auditor with the specified fields
46 * @param fields Fields to audit
48 RestletBodyAuditor(String... fields) { argument
49 this.fields = fields;
54 for (String field : fields) {
67 * @param fields The fields tha
70 jsonAuditor(String... fields) argument
99 jacksonAuditor(String... fields) argument
126 formAuditor(String... fields) argument
[all...]
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/audit/
H A DRestletBodyAuditor.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
42 private final String[] fields; field in class:RestletBodyAuditor
45 * Creates a body auditor with the specified fields
46 * @param fields Fields to audit
48 RestletBodyAuditor(String... fields) { argument
49 this.fields = fields;
54 for (String field : fields) {
67 * @param fields The fields tha
70 jsonAuditor(String... fields) argument
99 jacksonAuditor(String... fields) argument
126 formAuditor(String... fields) argument
[all...]
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DCrestQuery.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
34 private final List<JsonPointer> fields; field in class:CrestQuery
59 * @param fields The fields to return in the query results.
61 public CrestQuery(String queryId, QueryFilter<JsonPointer> queryFilter, List<JsonPointer> fields) { argument
64 this.fields = fields;
89 * Gets the list of CREST fields that should be returned in the query result.
91 * @return The fields to return.
94 return fields;
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/impl/
H A DDeletePreReadOptionFunction.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
32 * If the {@link Options} contains a non-{@code null} {@code CoreTokenField[]} of fields to read
52 private Set<String> convertToString(Set<CoreTokenField> fields) { argument
54 for (CoreTokenField field : fields) {
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/api/query/
H A DQueryBuilder.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
115 * @throws IllegalArgumentException If the requested fields were null or empty.
120 Set<String> fields = new HashSet<String>();
122 fields.add(field.toString());
124 return setReturnAttributes(fields);
127 private QueryBuilder<C, F> setReturnAttributes(Set<String> fields) { argument
128 requestedAttributes = fields.toArray(new String[fields.size()]);
/forgerock/openidm-v4/openidm-workflow-activiti/src/main/java/org/forgerock/openidm/workflow/activiti/impl/
H A DProcessDefinitionResource.java11 * Header, with the fields enclosed by brackets [] replaced by your own identifying
272 * @param fields the list of requested fields
276 private ResourceResponse convertInstance(ProcessDefinitionEntity processDefinition, List<JsonPointer> fields) argument
297 if (fields.contains(ActivitiConstants.ACTIVITI_DIAGRAM)
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/managed/
H A DManagedObjectSchema.java20 * with the fields enclosed by brackets [] replaced by
54 private final Map<JsonPointer, SchemaField> fields; field in class:ManagedObjectSchema
69 fields = new LinkedHashMap<>();
76 fields.put(new JsonPointer(propertyKey), schemaField);
91 * @return a map of the schema fields.
94 return fields;
104 return fields.get(field);
113 return fields.containsKey(field);
117 * Returns a {@link List} of the relationship fields.
119 * @return a list of relationship fields
[all...]

Completed in 102 milliseconds

12345