Searched refs:pd (Results 151 - 175 of 412) sorted by relevance

1234567891011>>

/forgerock/opendj2-hg/src/server/org/opends/server/admin/client/spi/
H A DPropertySet.java78 * @param pd
85 public MyProperty(PropertyDefinition<T> pd, Collection<T> defaultValues, argument
87 this.d = pd;
89 SortedSet<T> sortedDefaultValues = new TreeSet<T>(pd);
94 this.activeValues = new TreeSet<T>(pd);
239 * @param pd
246 public <T> void addProperty(PropertyDefinition<T> pd, argument
248 MyProperty<T> p = new MyProperty<T>(pd, defaultValues, activeValues);
249 properties.put(pd, p);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/
H A DRelationDefinition.java116 * @param pd
123 protected AbstractBuilder(AbstractManagedObjectDefinition<?, ?> pd, argument
125 this.common = new Common<C, S>(pd, name, cd);
192 private final AbstractManagedObjectDefinition<?, ?> pd; field in class:RelationDefinition.Common
197 private Common(AbstractManagedObjectDefinition<?, ?> pd, String name, argument
200 this.pd = pd;
306 return common.pd;
H A DReference.java203 PropertyDefinition<?> pd = relation.getNamingPropertyDefinition();
204 return normalizeName(pd);
231 private <T> String normalizeName(PropertyDefinition<T> pd) { argument
232 if (pd != null) {
234 T tvalue = pd.decodeValue(name);
235 return pd.normalizeValue(tvalue);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/client/spi/
H A DPropertySet.java79 * @param pd
86 public MyProperty(PropertyDefinition<T> pd, Collection<T> defaultValues, argument
88 this.d = pd;
90 SortedSet<T> sortedDefaultValues = new TreeSet<T>(pd);
95 this.activeValues = new TreeSet<T>(pd);
240 * @param pd
247 public <T> void addProperty(PropertyDefinition<T> pd, argument
249 MyProperty<T> p = new MyProperty<T>(pd, defaultValues, activeValues);
250 properties.put(pd, p);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/client/spi/
H A DPropertySet.java72 * @param pd
79 public MyProperty(PropertyDefinition<T> pd, Collection<T> defaultValues, argument
81 this.d = pd;
83 SortedSet<T> sortedDefaultValues = new TreeSet<>(pd);
88 this.activeValues = new TreeSet<>(pd);
194 * @param pd
201 public <T> void addProperty(PropertyDefinition<T> pd, argument
203 MyProperty<T> p = new MyProperty<>(pd, defaultValues, activeValues);
204 properties.put(pd, p);
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/
H A DRelationDefinition.java105 * @param pd
112 protected AbstractBuilder(AbstractManagedObjectDefinition<?, ?> pd, String name, argument
114 this.common = new Common<>(pd, name, cd);
171 private final AbstractManagedObjectDefinition<?, ?> pd; field in class:RelationDefinition.Common
174 private Common(AbstractManagedObjectDefinition<?, ?> pd, String name, argument
177 this.pd = pd;
268 return common.pd;
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/client/spi/
H A DPropertySet.java71 * @param pd
78 public MyProperty(PropertyDefinition<T> pd, Collection<T> defaultValues, Collection<T> activeValues) { argument
79 this.d = pd;
81 SortedSet<T> sortedDefaultValues = new TreeSet<>(pd);
85 this.activeValues = new TreeSet<>(pd);
184 * @param pd
191 public <T> void addProperty(PropertyDefinition<T> pd, Collection<T> defaultValues, Collection<T> activeValues) { argument
192 MyProperty<T> p = new MyProperty<>(pd, defaultValues, activeValues);
193 properties.put(pd, p);
/forgerock/opendj-b2.6/src/server/org/opends/server/tools/dsconfig/
H A DHelpSubCommandHandler.java197 * @param pd
202 public <T> Message print(PropertyDefinition<T> pd) { argument
204 return pd.getDefaultBehaviorProvider().accept(v, pd);
357 * @param pd
360 public void print(PrintStream out, PropertyDefinition<?> pd) { argument
361 pd.accept(pimpl, out);
470 for (PropertyDefinition<?> pd : c) {
475 builder.appendCell(pd.getName());
478 builder.appendCell(getPropertyOptionSummary(pd));
654 getPropertyOptionSummary(PropertyDefinition<?> pd) argument
[all...]
H A DSetPropSubCommandHandler.java274 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
275 if (pd.hasOption(PropertyOption.HIDDEN)) {
278 if (!app.isAdvancedMode() && pd.hasOption(PropertyOption.ADVANCED)) {
281 properties.add(pd);
395 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
396 if (pd instanceof AggregationPropertyDefinition<?,?>) {
398 (AggregationPropertyDefinition<?, ?>)pd;
779 PropertyDefinition<?> pd;
781 pd = d.getPropertyDefinition(m);
788 if (pd
954 modifyPropertyValues(ManagedObject<?> mo, PropertyDefinition<T> pd, Map<PropertyDefinition, Set> changes, ModificationType modType, String s) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/tools/dsconfig/
H A DHelpSubCommandHandler.java197 * @param pd
202 public <T> Message print(PropertyDefinition<T> pd) { argument
204 return pd.getDefaultBehaviorProvider().accept(v, pd);
357 * @param pd
360 public void print(PrintStream out, PropertyDefinition<?> pd) { argument
361 pd.accept(pimpl, out);
477 for (PropertyDefinition<?> pd : c) {
482 builder.appendCell(pd.getName());
485 builder.appendCell(getPropertyOptionSummary(pd));
661 getPropertyOptionSummary(PropertyDefinition<?> pd) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/tools/dsconfig/
H A DHelpSubCommandHandler.java197 * @param pd
202 public <T> Message print(PropertyDefinition<T> pd) { argument
204 return pd.getDefaultBehaviorProvider().accept(v, pd);
357 * @param pd
360 public void print(PrintStream out, PropertyDefinition<?> pd) { argument
361 pd.accept(pimpl, out);
470 for (PropertyDefinition<?> pd : c) {
475 builder.appendCell(pd.getName());
478 builder.appendCell(getPropertyOptionSummary(pd));
654 getPropertyOptionSummary(PropertyDefinition<?> pd) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/tools/dsconfig/
H A DHelpSubCommandHandler.java197 * @param pd
202 public <T> Message print(PropertyDefinition<T> pd) { argument
204 return pd.getDefaultBehaviorProvider().accept(v, pd);
357 * @param pd
360 public void print(PrintStream out, PropertyDefinition<?> pd) { argument
361 pd.accept(pimpl, out);
470 for (PropertyDefinition<?> pd : c) {
475 builder.appendCell(pd.getName());
478 builder.appendCell(getPropertyOptionSummary(pd));
654 getPropertyOptionSummary(PropertyDefinition<?> pd) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/tools/dsconfig/
H A DHelpSubCommandHandler.java197 * @param pd
202 public <T> Message print(PropertyDefinition<T> pd) { argument
204 return pd.getDefaultBehaviorProvider().accept(v, pd);
357 * @param pd
360 public void print(PrintStream out, PropertyDefinition<?> pd) { argument
361 pd.accept(pimpl, out);
477 for (PropertyDefinition<?> pd : c) {
482 builder.appendCell(pd.getName());
485 builder.appendCell(getPropertyOptionSummary(pd));
661 getPropertyOptionSummary(PropertyDefinition<?> pd) argument
[all...]
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/dsconfig/
H A DHelpSubCommandHandler.java154 * @param pd
158 public <T> LocalizableMessage print(PropertyDefinition<T> pd) { argument
160 return pd.getDefaultBehaviorProvider().accept(v, pd);
282 * @param pd
285 public void print(PrintStream out, PropertyDefinition<?> pd) { argument
286 pd.accept(pimpl, out);
394 for (final PropertyDefinition<?> pd : c) {
399 builder.appendCell(pd.getName());
402 builder.appendCell(getPropertyOptionSummary(pd));
505 hasOptionYN(PropertyDefinition<?> pd, PropertyOption option) argument
509 getSynopsis(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
560 getPropertyOptionSummary(PropertyDefinition<?> pd) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/admin/
H A DReference.java202 PropertyDefinition<?> pd = relation.getNamingPropertyDefinition();
203 return normalizeName(pd);
230 private <T> String normalizeName(PropertyDefinition<T> pd) { argument
231 if (pd != null) {
233 T tvalue = pd.decodeValue(name);
234 return pd.normalizeValue(tvalue);
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/
H A DReference.java203 PropertyDefinition<?> pd = relation.getNamingPropertyDefinition();
204 return normalizeName(pd);
231 private <T> String normalizeName(PropertyDefinition<T> pd) { argument
232 if (pd != null) {
234 T tvalue = pd.decodeValue(name);
235 return pd.normalizeValue(tvalue);
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/
H A DReference.java203 PropertyDefinition<?> pd = relation.getNamingPropertyDefinition();
204 return normalizeName(pd);
231 private <T> String normalizeName(PropertyDefinition<T> pd) { argument
232 if (pd != null) {
234 T tvalue = pd.decodeValue(name);
235 return pd.normalizeValue(tvalue);
/forgerock/opendj2-hg/src/server/org/opends/server/admin/
H A DReference.java202 PropertyDefinition<?> pd = relation.getNamingPropertyDefinition();
203 return normalizeName(pd);
230 private <T> String normalizeName(PropertyDefinition<T> pd) { argument
231 if (pd != null) {
233 T tvalue = pd.decodeValue(name);
234 return pd.normalizeValue(tvalue);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/
H A DReference.java205 PropertyDefinition<?> pd = relation.getNamingPropertyDefinition();
206 return normalizeName(pd);
233 private <T> String normalizeName(PropertyDefinition<T> pd) { argument
234 if (pd != null) {
236 T tvalue = pd.decodeValue(name);
237 return pd.normalizeValue(tvalue);
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/service/
H A DScriptConfigurationQueryFilterVisitor.java194 for (PropertyDescriptor pd : BEAN_INFO.getPropertyDescriptors()) {
195 if (pd.getName().equals(field)) {
196 return pd;
202 private Object getValue(PropertyDescriptor pd, ScriptConfiguration configuration) { argument
204 Object result = pd.getReadMethod().invoke(configuration);
207 throw new IllegalArgumentException("Cannot get field: " + pd.getName(), e);
211 private String getStringValue(PropertyDescriptor pd, ScriptConfiguration configuration) { argument
212 Object result = getValue(pd, configuration);
214 throw new IllegalArgumentException("Field is not a string: " + pd.getName());
222 private Comparable getComparableValue(PropertyDescriptor pd, ScriptConfiguratio argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/admin/server/
H A DServerManagementContext.java206 PropertyDefinition<T> pd) throws DefaultBehaviorException {
208 nextProperty = pd;
217 if (values.size() > 1 && !pd.hasOption(PropertyOption.MULTI_VALUED)) {
218 throw new DefaultBehaviorException(pd,
219 new PropertyIsSingleValuedException(pd));
343 * @param pd
352 public static <PD> PD decode(PropertyDefinition<PD> pd, argument
355 return pd.castValue(pd.accept(new ValueDecoder(), s));
500 * @param pd
205 find(ManagedObjectPath<?, ?> p, PropertyDefinition<T> pd) argument
515 getPropertyValue(ManagedObjectPath<C, S> path, PropertyDefinition<PD> pd) argument
558 getPropertyValues(ManagedObjectPath<C, S> path, PropertyDefinition<PD> pd) argument
858 decodeProperty(ManagedObjectPath<?, ?> path, PropertyDefinition<T> pd, List<AttributeValue> values, ConfigEntry newConfigEntry) argument
907 getAttribute(ManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd, ConfigEntry configEntry) argument
936 getDefaultValues(ManagedObjectPath<?, ?> p, PropertyDefinition<T> pd, ConfigEntry newConfigEntry) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/server/
H A DServerManagementContext.java207 PropertyDefinition<T> pd) throws DefaultBehaviorException {
209 nextProperty = pd;
218 if (values.size() > 1 && !pd.hasOption(PropertyOption.MULTI_VALUED)) {
219 throw new DefaultBehaviorException(pd,
220 new PropertyIsSingleValuedException(pd));
344 * @param pd
353 public static <PD> PD decode(PropertyDefinition<PD> pd, argument
356 return pd.castValue(pd.accept(new ValueDecoder(), s));
501 * @param pd
206 find(ManagedObjectPath<?, ?> p, PropertyDefinition<T> pd) argument
516 getPropertyValue(ManagedObjectPath<C, S> path, PropertyDefinition<PD> pd) argument
559 getPropertyValues(ManagedObjectPath<C, S> path, PropertyDefinition<PD> pd) argument
859 decodeProperty(ManagedObjectPath<?, ?> path, PropertyDefinition<T> pd, List<AttributeValue> values, ConfigEntry newConfigEntry) argument
908 getAttribute(ManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd, ConfigEntry configEntry) argument
937 getDefaultValues(ManagedObjectPath<?, ?> p, PropertyDefinition<T> pd, ConfigEntry newConfigEntry) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/server/
H A DServerManagementContext.java207 PropertyDefinition<T> pd) throws DefaultBehaviorException {
209 nextProperty = pd;
218 if (values.size() > 1 && !pd.hasOption(PropertyOption.MULTI_VALUED)) {
219 throw new DefaultBehaviorException(pd,
220 new PropertyIsSingleValuedException(pd));
344 * @param pd
353 public static <PD> PD decode(PropertyDefinition<PD> pd, argument
356 return pd.castValue(pd.accept(new ValueDecoder(), s));
501 * @param pd
206 find(ManagedObjectPath<?, ?> p, PropertyDefinition<T> pd) argument
516 getPropertyValue(ManagedObjectPath<C, S> path, PropertyDefinition<PD> pd) argument
559 getPropertyValues(ManagedObjectPath<C, S> path, PropertyDefinition<PD> pd) argument
859 decodeProperty(ManagedObjectPath<?, ?> path, PropertyDefinition<T> pd, List<AttributeValue> values, ConfigEntry newConfigEntry) argument
908 getAttribute(ManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd, ConfigEntry configEntry) argument
937 getDefaultValues(ManagedObjectPath<?, ?> p, PropertyDefinition<T> pd, ConfigEntry newConfigEntry) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/admin/server/
H A DServerManagementContext.java206 PropertyDefinition<T> pd) throws DefaultBehaviorException {
208 nextProperty = pd;
217 if (values.size() > 1 && !pd.hasOption(PropertyOption.MULTI_VALUED)) {
218 throw new DefaultBehaviorException(pd,
219 new PropertyIsSingleValuedException(pd));
343 * @param pd
352 public static <PD> PD decode(PropertyDefinition<PD> pd, argument
355 return pd.castValue(pd.accept(new ValueDecoder(), s));
500 * @param pd
205 find(ManagedObjectPath<?, ?> p, PropertyDefinition<T> pd) argument
515 getPropertyValue(ManagedObjectPath<C, S> path, PropertyDefinition<PD> pd) argument
558 getPropertyValues(ManagedObjectPath<C, S> path, PropertyDefinition<PD> pd) argument
858 decodeProperty(ManagedObjectPath<?, ?> path, PropertyDefinition<T> pd, List<AttributeValue> values, ConfigEntry newConfigEntry) argument
907 getAttribute(ManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd, ConfigEntry configEntry) argument
936 getDefaultValues(ManagedObjectPath<?, ?> p, PropertyDefinition<T> pd, ConfigEntry newConfigEntry) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/server/
H A DServerManagementContext.java207 PropertyDefinition<T> pd) throws DefaultBehaviorException {
209 nextProperty = pd;
218 if (values.size() > 1 && !pd.hasOption(PropertyOption.MULTI_VALUED)) {
219 throw new DefaultBehaviorException(pd,
220 new PropertyIsSingleValuedException(pd));
344 * @param pd
353 public static <PD> PD decode(PropertyDefinition<PD> pd, argument
356 return pd.castValue(pd.accept(new ValueDecoder(), s));
501 * @param pd
206 find(ManagedObjectPath<?, ?> p, PropertyDefinition<T> pd) argument
516 getPropertyValue(ManagedObjectPath<C, S> path, PropertyDefinition<PD> pd) argument
559 getPropertyValues(ManagedObjectPath<C, S> path, PropertyDefinition<PD> pd) argument
859 decodeProperty(ManagedObjectPath<?, ?> path, PropertyDefinition<T> pd, List<AttributeValue> values, ConfigEntry newConfigEntry) argument
908 getAttribute(ManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd, ConfigEntry configEntry) argument
937 getDefaultValues(ManagedObjectPath<?, ?> p, PropertyDefinition<T> pd, ConfigEntry newConfigEntry) argument
[all...]

Completed in 83 milliseconds

1234567891011>>