Searched refs:convert (Results 1 - 25 of 92) sorted by relevance

1234

/forgerock/openam-v13/openam-tools/build-helper-plugin/src/main/java/org/forgerock/maven/plugins/inject/content/
H A DContentConverter.java29 * @param line The line to convert.
32 String convert(String line); method in interface:ContentConverter
H A DNoOpContentConverter.java32 public String convert(String line) { method in class:NoOpContentConverter
H A DXmlContentConverter.java34 public String convert(String line) { method in class:XmlContentConverter
/forgerock/openam/openam-tools/build-helper-plugin/src/main/java/org/forgerock/maven/plugins/inject/content/
H A DContentConverter.java29 * @param line The line to convert.
32 String convert(String line); method in interface:ContentConverter
H A DNoOpContentConverter.java32 public String convert(String line) { method in class:NoOpContentConverter
H A DXmlContentConverter.java34 public String convert(String line) { method in class:XmlContentConverter
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/impl/ldap/
H A DEntryConverter.java22 * An object to convert LDAP Entry objects to other types.
23 * @param <T> The type to convert to.
32 T convert(Entry entry, String[] requestedAttributes); method in interface:EntryConverter
H A DEntryStringConverter.java30 public String convert(Entry entry, String[] requestedAttributes) { method in class:EntryStringConverter
H A DLdapQueryFilterVisitor.java34 * A {@link org.forgerock.util.query.QueryFilterVisitor} that can convert from a {@code QueryFilter&lt;CoreTokenField>}
80 return Filter.equality(field.toString(), convert(field, value));
85 return Filter.greaterThan(field.toString(), convert(field, value));
90 return Filter.greaterOrEqual(field.toString(), convert(field, value));
95 return Filter.lessThan(field.toString(), convert(field, value));
100 return Filter.lessOrEqual(field.toString(), convert(field, value));
118 private Object convert(CoreTokenField field, Object value) { method in class:LdapQueryFilterVisitor
H A DEntryPartialTokenConverter.java27 * A converter to convert an LDAP entry to a PartialToken.
40 public PartialToken convert(Entry entry, String[] requestedAttributes) { method in class:EntryPartialTokenConverter
H A DEntryTokenConverter.java28 * A converter to convert an LDAP entry to a Token.
41 public Token convert(Entry entry, String[] requestedAttributes) { method in class:EntryTokenConverter
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/impl/ldap/
H A DEntryConverter.java22 * An object to convert LDAP Entry objects to other types.
23 * @param <T> The type to convert to.
32 T convert(Entry entry, String[] requestedAttributes); method in interface:EntryConverter
H A DEntryStringConverter.java30 public String convert(Entry entry, String[] requestedAttributes) { method in class:EntryStringConverter
H A DLdapQueryFilterVisitor.java34 * A {@link org.forgerock.util.query.QueryFilterVisitor} that can convert from a {@code QueryFilter&lt;CoreTokenField>}
80 return Filter.equality(field.toString(), convert(field, value));
85 return Filter.greaterThan(field.toString(), convert(field, value));
90 return Filter.greaterOrEqual(field.toString(), convert(field, value));
95 return Filter.lessThan(field.toString(), convert(field, value));
100 return Filter.lessOrEqual(field.toString(), convert(field, value));
118 private Object convert(CoreTokenField field, Object value) { method in class:LdapQueryFilterVisitor
H A DEntryPartialTokenConverter.java27 * A converter to convert an LDAP entry to a PartialToken.
40 public PartialToken convert(Entry entry, String[] requestedAttributes) { method in class:EntryPartialTokenConverter
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/file/
H A DFileSizeUnit.java28 public long convert(long sourceDuration, FileSizeUnit sourceUnit) {
57 public long convert(long sourceDuration, FileSizeUnit sourceUnit) {
86 public long convert(long sourceDuration, FileSizeUnit sourceUnit) {
115 public long convert(long sourceDuration, FileSizeUnit sourceUnit) {
147 public abstract long convert(long sourceDuration, FileSizeUnit sourceUnit); method in class:FileSizeUnit
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/file/
H A DFileSizeUnit.java28 public long convert(long sourceDuration, FileSizeUnit sourceUnit) {
57 public long convert(long sourceDuration, FileSizeUnit sourceUnit) {
86 public long convert(long sourceDuration, FileSizeUnit sourceUnit) {
115 public long convert(long sourceDuration, FileSizeUnit sourceUnit) {
147 public abstract long convert(long sourceDuration, FileSizeUnit sourceUnit); method in class:FileSizeUnit
/forgerock/openam-v13/openam-tools/build-helper-plugin/src/test/java/org/forgerock/maven/plugins/inject/content/
H A DNoOpContentConverterTest.java40 String convertedLine = contentConverter.convert(line);
H A DXmlContentConverterTest.java40 String convertedLine = contentConverter.convert(line);
/forgerock/openam/openam-tools/build-helper-plugin/src/test/java/org/forgerock/maven/plugins/inject/content/
H A DNoOpContentConverterTest.java40 String convertedLine = contentConverter.convert(line);
H A DXmlContentConverterTest.java40 String convertedLine = contentConverter.convert(line);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/core/
H A DCoreConfigManager.java141 setSyntaxEnforcementPolicy(convert(globalConfig.getInvalidAttributeSyntaxBehavior()));
143 setSingleStructuralObjectClassPolicy(convert(globalConfig.getSingleStructuralObjectclassBehavior()));
149 setWritabilityMode(convert(globalConfig.getWritabilityMode()));
156 setDisabledPrivileges(convert(globalConfig.getDisabledPrivilege()));
186 private static AcceptRejectWarn convert(InvalidAttributeSyntaxBehavior invalidAttributeSyntaxBehavior) method in class:CoreConfigManager
200 private static AcceptRejectWarn convert(SingleStructuralObjectclassBehavior singleStructuralObjectclassBehavior) method in class:CoreConfigManager
214 private static WritabilityMode convert(GlobalCfgDefn.WritabilityMode writabilityMode) method in class:CoreConfigManager
259 private static HashSet<Privilege> convert(Set<DisabledPrivilege> configuredDisabledPrivs) method in class:CoreConfigManager
266 final Privilege privilege = convert(p);
276 private static Privilege convert(DisabledPrivileg method in class:CoreConfigManager
[all...]
/forgerock/openam-v13/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/
H A DUserPasswordAttribute.java106 bytes = convert(password.getBytes(StandardCharsets.UTF_8), Direction.ENCRYPT, secret, ra);
133 private static final byte[] convert(byte[] value, Direction direction, String secret, Authenticator ra) method in class:UserPasswordAttribute
197 final byte[] clearText = UserPasswordAttribute.convert(cipherText, Direction.DECRYPT, secret, a);
/forgerock/openam/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/
H A DUserPasswordAttribute.java106 bytes = convert(password.getBytes(StandardCharsets.UTF_8), Direction.ENCRYPT, secret, ra);
133 private static final byte[] convert(byte[] value, Direction direction, String secret, Authenticator ra) method in class:UserPasswordAttribute
197 final byte[] clearText = UserPasswordAttribute.convert(cipherText, Direction.DECRYPT, secret, a);
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/timeouts/
H A DObservedContextFactory.java55 final long timeout = TimeUnit.MILLISECONDS.convert(manager.getConfiguration().getScriptExecutionTimeout(),

Completed in 68 milliseconds

1234