Searched refs:pd (Results 101 - 125 of 412) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DResourceResults.java89 PolicyDecision pd = rr.getPolicyDecision();
90 if (pd != null) {
91 pd.setResponseDecisions(responseDecisions);
93 rr.setPolicyDecision(pd);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/condition/
H A DIsPresentCondition.java55 private PropertyDefinition<?> pd; field in class:IsPresentCondition
76 SortedSet<?> values = managedObject.getPropertyValues(pd);
85 SortedSet<?> values = managedObject.getPropertyValues(pd);
95 this.pd = d.getPropertyDefinition(propertyName);
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/conditions/
H A DIsPresentCondition.java50 private PropertyDefinition<?> pd; field in class:IsPresentCondition
65 SortedSet<?> values = managedObject.getPropertyValues(pd);
71 SortedSet<?> values = managedObject.getPropertyValues(pd);
78 this.pd = d.getPropertyDefinition(propertyName);
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/workflow/
H A DProcessListView.js49 .map(function (pd) {
50 return _.pick(pd,"name","key");
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DProxyPolicyEvaluator.java121 PolicyDecision pd = policyEvaluator.getPolicyDecisionIgnoreSubjects(
125 String decision = pd.toString();
143 + " is " + pd);
146 return pd;
H A DResourceResults.java89 PolicyDecision pd = rr.getPolicyDecision();
90 if (pd != null) {
91 pd.setResponseDecisions(responseDecisions);
93 rr.setPolicyDecision(pd);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/
H A DRelationDefinition.java116 * @param pd
123 protected AbstractBuilder(AbstractManagedObjectDefinition<?, ?> pd, argument
125 this.common = new Common<>(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 DDefaultManagedObject.java151 * @param pd
161 public <T> SortedSet<T> getPropertyValues(PropertyDefinition<T> pd) argument
164 definition.getPropertyDefinition(pd.getName());
167 SortedSet<T> values = new TreeSet<>(pd);
168 List<String> stringValues = propertyStringValues.get(pd.getName());
171 values.add(pd.decodeValue(stringValue));
/forgerock/opendj2/src/server/org/opends/server/admin/
H A DDefaultManagedObject.java153 * @param pd
163 public <T> SortedSet<T> getPropertyValues(PropertyDefinition<T> pd) argument
166 definition.getPropertyDefinition(pd.getName());
169 SortedSet<T> values = new TreeSet<T>(pd);
170 List<String> stringValues = propertyStringValues.get(pd.getName());
173 values.add(pd.decodeValue(stringValue));
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/
H A DDefaultManagedObject.java154 * @param pd
164 public <T> SortedSet<T> getPropertyValues(PropertyDefinition<T> pd) argument
167 definition.getPropertyDefinition(pd.getName());
170 SortedSet<T> values = new TreeSet<T>(pd);
171 List<String> stringValues = propertyStringValues.get(pd.getName());
174 values.add(pd.decodeValue(stringValue));
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/
H A DDefaultManagedObject.java154 * @param pd
164 public <T> SortedSet<T> getPropertyValues(PropertyDefinition<T> pd) argument
167 definition.getPropertyDefinition(pd.getName());
170 SortedSet<T> values = new TreeSet<T>(pd);
171 List<String> stringValues = propertyStringValues.get(pd.getName());
174 values.add(pd.decodeValue(stringValue));
/forgerock/opendj2-hg/src/server/org/opends/server/admin/
H A DDefaultManagedObject.java153 * @param pd
163 public <T> SortedSet<T> getPropertyValues(PropertyDefinition<T> pd) argument
166 definition.getPropertyDefinition(pd.getName());
169 SortedSet<T> values = new TreeSet<T>(pd);
170 List<String> stringValues = propertyStringValues.get(pd.getName());
173 values.add(pd.decodeValue(stringValue));
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/
H A DDefaultManagedObject.java154 * @param pd
164 public <T> SortedSet<T> getPropertyValues(PropertyDefinition<T> pd) argument
167 definition.getPropertyDefinition(pd.getName());
170 SortedSet<T> values = new TreeSet<T>(pd);
171 List<String> stringValues = propertyStringValues.get(pd.getName());
174 values.add(pd.decodeValue(stringValue));
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/
H A DDefaultManagedObject.java132 * @param pd
141 public <T> SortedSet<T> getPropertyValues(PropertyDefinition<T> pd) { argument
143 definition.getPropertyDefinition(pd.getName());
146 SortedSet<T> values = new TreeSet<>(pd);
147 List<String> stringValues = propertyStringValues.get(pd.getName());
151 values.add(pd.decodeValue(stringValue));
/forgerock/opendj-b2.6/src/server/org/opends/server/tools/dsconfig/
H A DPropertyValueEditor.java107 private final AggregationPropertyDefinition<C, S> pd; field in class:PropertyValueEditor.CreateComponentCallback
113 private CreateComponentCallback(AggregationPropertyDefinition<C, S> pd) { argument
114 this.pd = pd;
126 InstantiableRelationDefinition<?, ?> rd = pd.getRelationDefinition();
127 ManagedObjectPath<?, ?> path = pd.getParentPath();
260 * @param pd
264 public static <T> DefaultBehaviorQuery<T> query(PropertyDefinition<T> pd) { argument
335 return pd.getDefaultBehaviorProvider().accept(visitor, pd);
436 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.MandatoryPropertyInitializer
441 MandatoryPropertyInitializer(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
693 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.MultiValuedPropertyEditor
698 MultiValuedPropertyEditor(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1150 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> oldValues, SortedSet<T> currentValues) argument
1246 getResetToDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> currentValues) argument
1455 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.PropertyHelpCallback
1460 PropertyHelpCallback(ManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
1495 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.ReadOnlyPropertyViewer
1500 ReadOnlyPropertyViewer(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1527 visitUnknown(PropertyDefinition<T> pd, Void p) argument
1596 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.SingleValuedPropertyEditor
1601 SingleValuedPropertyEditor(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1872 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd) argument
1911 getResetToDefaultValuesMenuOption( PropertyDefinition<T> pd) argument
2003 displayPropertyHeader(ConsoleApplication app, PropertyDefinition<?> pd) argument
2038 displayPropertyValues(ConsoleApplication app, PropertyDefinition<T> pd, Collection<T> values) argument
2085 getPropertyValues(PropertyDefinition<T> pd, Collection<T> values) argument
2118 getPropertyValues( PropertyDefinition<T> pd, ManagedObject<?> mo) argument
2128 readPropertyValues(ConsoleApplication app, ManagedObjectDefinition<?, ?> d, PropertyDefinition<T> pd) argument
2139 readPropertyValues(ConsoleApplication app, ManagedObjectDefinition<?, ?> d, PropertyDefinition<T> pd, SortedSet<T> values) argument
2393 registerModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2459 registerResetModification(PropertyDefinition<T> pd, SortedSet<T> previousValues) argument
2490 registerSetModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2520 registerAddModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2566 registerRemoveModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2659 getModification( PropertyDefinition<T> pd) argument
2689 castAndAddValues(Collection<T> destination, Collection<?> source, PropertyDefinition<T> pd) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/tools/dsconfig/
H A DPropertyValueEditor.java106 private final AggregationPropertyDefinition<C, S> pd; field in class:PropertyValueEditor.CreateComponentCallback
112 private CreateComponentCallback(AggregationPropertyDefinition<C, S> pd) { argument
113 this.pd = pd;
125 InstantiableRelationDefinition<?, ?> rd = pd.getRelationDefinition();
126 ManagedObjectPath<?, ?> path = pd.getParentPath();
258 * @param pd
262 public static <T> DefaultBehaviorQuery<T> query(PropertyDefinition<T> pd) { argument
333 return pd.getDefaultBehaviorProvider().accept(visitor, pd);
434 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.MandatoryPropertyInitializer
439 MandatoryPropertyInitializer(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
691 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.MultiValuedPropertyEditor
696 MultiValuedPropertyEditor(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1148 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> oldValues, SortedSet<T> currentValues) argument
1244 getResetToDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> currentValues) argument
1453 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.PropertyHelpCallback
1458 PropertyHelpCallback(ManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
1493 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.ReadOnlyPropertyViewer
1498 ReadOnlyPropertyViewer(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1525 visitUnknown(PropertyDefinition<T> pd, Void p) argument
1594 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.SingleValuedPropertyEditor
1599 SingleValuedPropertyEditor(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1870 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd) argument
1909 getResetToDefaultValuesMenuOption( PropertyDefinition<T> pd) argument
2006 displayPropertyHeader(ConsoleApplication app, PropertyDefinition<?> pd) argument
2041 displayPropertyValues(ConsoleApplication app, PropertyDefinition<T> pd, Collection<T> values) argument
2088 getPropertyValues(PropertyDefinition<T> pd, Collection<T> values) argument
2121 getPropertyValues( PropertyDefinition<T> pd, ManagedObject<?> mo) argument
2131 readPropertyValues(ConsoleApplication app, ManagedObjectDefinition<?, ?> d, PropertyDefinition<T> pd) argument
2142 readPropertyValues(ConsoleApplication app, ManagedObjectDefinition<?, ?> d, PropertyDefinition<T> pd, SortedSet<T> values) argument
2400 registerModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2466 registerResetModification(PropertyDefinition<T> pd, SortedSet<T> previousValues) argument
2497 registerSetModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2527 registerAddModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2573 registerRemoveModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2666 getModification( PropertyDefinition<T> pd) argument
2696 castAndAddValues(Collection<T> destination, Collection<?> source, PropertyDefinition<T> pd) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/tools/dsconfig/
H A DPropertyValueEditor.java107 private final AggregationPropertyDefinition<C, S> pd; field in class:PropertyValueEditor.CreateComponentCallback
113 private CreateComponentCallback(AggregationPropertyDefinition<C, S> pd) { argument
114 this.pd = pd;
126 InstantiableRelationDefinition<?, ?> rd = pd.getRelationDefinition();
127 ManagedObjectPath<?, ?> path = pd.getParentPath();
260 * @param pd
264 public static <T> DefaultBehaviorQuery<T> query(PropertyDefinition<T> pd) { argument
335 return pd.getDefaultBehaviorProvider().accept(visitor, pd);
436 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.MandatoryPropertyInitializer
441 MandatoryPropertyInitializer(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
693 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.MultiValuedPropertyEditor
698 MultiValuedPropertyEditor(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1150 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> oldValues, SortedSet<T> currentValues) argument
1246 getResetToDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> currentValues) argument
1455 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.PropertyHelpCallback
1460 PropertyHelpCallback(ManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
1495 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.ReadOnlyPropertyViewer
1500 ReadOnlyPropertyViewer(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1527 visitUnknown(PropertyDefinition<T> pd, Void p) argument
1596 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.SingleValuedPropertyEditor
1601 SingleValuedPropertyEditor(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1872 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd) argument
1911 getResetToDefaultValuesMenuOption( PropertyDefinition<T> pd) argument
2008 displayPropertyHeader(ConsoleApplication app, PropertyDefinition<?> pd) argument
2043 displayPropertyValues(ConsoleApplication app, PropertyDefinition<T> pd, Collection<T> values) argument
2090 getPropertyValues(PropertyDefinition<T> pd, Collection<T> values) argument
2123 getPropertyValues( PropertyDefinition<T> pd, ManagedObject<?> mo) argument
2133 readPropertyValues(ConsoleApplication app, ManagedObjectDefinition<?, ?> d, PropertyDefinition<T> pd) argument
2144 readPropertyValues(ConsoleApplication app, ManagedObjectDefinition<?, ?> d, PropertyDefinition<T> pd, SortedSet<T> values) argument
2398 registerModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2464 registerResetModification(PropertyDefinition<T> pd, SortedSet<T> previousValues) argument
2495 registerSetModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2525 registerAddModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2571 registerRemoveModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2664 getModification( PropertyDefinition<T> pd) argument
2694 castAndAddValues(Collection<T> destination, Collection<?> source, PropertyDefinition<T> pd) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/tools/dsconfig/
H A DPropertyValueEditor.java107 private final AggregationPropertyDefinition<C, S> pd; field in class:PropertyValueEditor.CreateComponentCallback
113 private CreateComponentCallback(AggregationPropertyDefinition<C, S> pd) { argument
114 this.pd = pd;
126 InstantiableRelationDefinition<?, ?> rd = pd.getRelationDefinition();
127 ManagedObjectPath<?, ?> path = pd.getParentPath();
260 * @param pd
264 public static <T> DefaultBehaviorQuery<T> query(PropertyDefinition<T> pd) { argument
335 return pd.getDefaultBehaviorProvider().accept(visitor, pd);
436 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.MandatoryPropertyInitializer
441 MandatoryPropertyInitializer(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
693 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.MultiValuedPropertyEditor
698 MultiValuedPropertyEditor(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1150 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> oldValues, SortedSet<T> currentValues) argument
1246 getResetToDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> currentValues) argument
1455 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.PropertyHelpCallback
1460 PropertyHelpCallback(ManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
1495 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.ReadOnlyPropertyViewer
1500 ReadOnlyPropertyViewer(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1527 visitUnknown(PropertyDefinition<T> pd, Void p) argument
1596 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.SingleValuedPropertyEditor
1601 SingleValuedPropertyEditor(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1872 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd) argument
1911 getResetToDefaultValuesMenuOption( PropertyDefinition<T> pd) argument
2003 displayPropertyHeader(ConsoleApplication app, PropertyDefinition<?> pd) argument
2038 displayPropertyValues(ConsoleApplication app, PropertyDefinition<T> pd, Collection<T> values) argument
2085 getPropertyValues(PropertyDefinition<T> pd, Collection<T> values) argument
2118 getPropertyValues( PropertyDefinition<T> pd, ManagedObject<?> mo) argument
2128 readPropertyValues(ConsoleApplication app, ManagedObjectDefinition<?, ?> d, PropertyDefinition<T> pd) argument
2139 readPropertyValues(ConsoleApplication app, ManagedObjectDefinition<?, ?> d, PropertyDefinition<T> pd, SortedSet<T> values) argument
2393 registerModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2459 registerResetModification(PropertyDefinition<T> pd, SortedSet<T> previousValues) argument
2490 registerSetModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2520 registerAddModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2566 registerRemoveModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2659 getModification( PropertyDefinition<T> pd) argument
2689 castAndAddValues(Collection<T> destination, Collection<?> source, PropertyDefinition<T> pd) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/tools/dsconfig/
H A DPropertyValueEditor.java106 private final AggregationPropertyDefinition<C, S> pd; field in class:PropertyValueEditor.CreateComponentCallback
112 private CreateComponentCallback(AggregationPropertyDefinition<C, S> pd) { argument
113 this.pd = pd;
125 InstantiableRelationDefinition<?, ?> rd = pd.getRelationDefinition();
126 ManagedObjectPath<?, ?> path = pd.getParentPath();
258 * @param pd
262 public static <T> DefaultBehaviorQuery<T> query(PropertyDefinition<T> pd) { argument
333 return pd.getDefaultBehaviorProvider().accept(visitor, pd);
434 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.MandatoryPropertyInitializer
439 MandatoryPropertyInitializer(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
691 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.MultiValuedPropertyEditor
696 MultiValuedPropertyEditor(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1148 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> oldValues, SortedSet<T> currentValues) argument
1244 getResetToDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> currentValues) argument
1453 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.PropertyHelpCallback
1458 PropertyHelpCallback(ManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
1493 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.ReadOnlyPropertyViewer
1498 ReadOnlyPropertyViewer(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1525 visitUnknown(PropertyDefinition<T> pd, Void p) argument
1594 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.SingleValuedPropertyEditor
1599 SingleValuedPropertyEditor(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1870 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd) argument
1909 getResetToDefaultValuesMenuOption( PropertyDefinition<T> pd) argument
2006 displayPropertyHeader(ConsoleApplication app, PropertyDefinition<?> pd) argument
2041 displayPropertyValues(ConsoleApplication app, PropertyDefinition<T> pd, Collection<T> values) argument
2088 getPropertyValues(PropertyDefinition<T> pd, Collection<T> values) argument
2121 getPropertyValues( PropertyDefinition<T> pd, ManagedObject<?> mo) argument
2131 readPropertyValues(ConsoleApplication app, ManagedObjectDefinition<?, ?> d, PropertyDefinition<T> pd) argument
2142 readPropertyValues(ConsoleApplication app, ManagedObjectDefinition<?, ?> d, PropertyDefinition<T> pd, SortedSet<T> values) argument
2400 registerModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2466 registerResetModification(PropertyDefinition<T> pd, SortedSet<T> previousValues) argument
2497 registerSetModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2527 registerAddModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2573 registerRemoveModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2666 getModification( PropertyDefinition<T> pd) argument
2696 castAndAddValues(Collection<T> destination, Collection<?> source, PropertyDefinition<T> pd) argument
[all...]
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/dsconfig/
H A DPropertyValueEditor.java99 private final AggregationPropertyDefinition<C, S> pd; field in class:PropertyValueEditor.CreateComponentCallback
104 private CreateComponentCallback(AggregationPropertyDefinition<C, S> pd) { argument
105 this.pd = pd;
113 InstantiableRelationDefinition<?, ?> rd = pd.getRelationDefinition();
114 ManagedObjectPath<?, ?> path = pd.getParentPath();
219 * @param pd
223 public static <T> DefaultBehaviorQuery<T> query(PropertyDefinition<T> pd) { argument
273 return pd.getDefaultBehaviorProvider().accept(visitor, pd);
352 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.MandatoryPropertyInitializer
355 MandatoryPropertyInitializer(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
567 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.MultiValuedPropertyEditor
570 MultiValuedPropertyEditor(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
980 getKeepDefaultValuesMenuOption(PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> oldValues, SortedSet<T> currentValues) argument
1066 getResetToDefaultValuesMenuOption(PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> currentValues) argument
1250 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.PropertyHelpCallback
1253 PropertyHelpCallback(ManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
1281 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.ReadOnlyPropertyViewer
1284 ReadOnlyPropertyViewer(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1301 visitUnknown(PropertyDefinition<T> pd, Void p) argument
1362 private final PropertyDefinition<?> pd; field in class:PropertyValueEditor.SingleValuedPropertyEditor
1365 SingleValuedPropertyEditor(ManagedObject<?> mo, PropertyDefinition<?> pd) argument
1600 getKeepDefaultValuesMenuOption(PropertyDefinition<T> pd) argument
1633 getResetToDefaultValuesMenuOption(PropertyDefinition<T> pd) argument
1710 displayPropertyHeader(ConsoleApplication app, PropertyDefinition<?> pd) argument
1739 displayPropertyValues(ConsoleApplication app, PropertyDefinition<T> pd, Collection<T> values) argument
1782 getPropertyValues(PropertyDefinition<T> pd, Collection<T> values) argument
1810 getPropertyValues(PropertyDefinition<T> pd, ManagedObject<?> mo) argument
1816 readPropertyValues(ConsoleApplication app, ManagedObjectDefinition<?, ?> d, PropertyDefinition<T> pd) argument
1824 readPropertyValues(ConsoleApplication app, ManagedObjectDefinition<?, ?> d, PropertyDefinition<T> pd, SortedSet<T> values) argument
2046 registerModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2095 registerResetModification(PropertyDefinition<T> pd, SortedSet<T> previousValues) argument
2122 registerSetModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2149 registerAddModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2188 registerRemoveModification(PropertyDefinition<T> pd, SortedSet<T> newValues, SortedSet<T> previousValues) argument
2268 getModification(PropertyDefinition<T> pd) argument
2297 castAndAddValues(Collection<T> destination, Collection<?> source, PropertyDefinition<T> pd) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/admin/client/ldap/
H A DLDAPManagedObject.java100 AggregationPropertyDefinition<C, S> pd, String v, Void p) {
103 Reference<C, S> reference = Reference.parseName(pd.getParentPath(), pd
114 public <PD> Object visitUnknown(PropertyDefinition<PD> pd, PD v, Void p) argument
116 return pd.encodeValue(v);
250 for (PropertyDefinition<?> pd : definition.getAllPropertyDefinitions()) {
251 String attrID = driver.getLDAPProfile().getAttributeName(definition, pd);
253 encodeProperty(attribute, pd);
301 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
302 Property<?> p = getProperty(pd);
99 visitAggregation( AggregationPropertyDefinition<C, S> pd, String v, Void p) argument
353 encodeProperty(Attribute attribute, PropertyDefinition<PD> pd) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/client/ldap/
H A DLDAPManagedObject.java101 AggregationPropertyDefinition<C, S> pd, String v, Void p) {
104 Reference<C, S> reference = Reference.parseName(pd.getParentPath(), pd
115 public <PD> Object visitUnknown(PropertyDefinition<PD> pd, PD v, Void p) argument
117 return pd.encodeValue(v);
251 for (PropertyDefinition<?> pd : definition.getAllPropertyDefinitions()) {
252 String attrID = driver.getLDAPProfile().getAttributeName(definition, pd);
254 encodeProperty(attribute, pd);
302 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
303 Property<?> p = getProperty(pd);
100 visitAggregation( AggregationPropertyDefinition<C, S> pd, String v, Void p) argument
354 encodeProperty(Attribute attribute, PropertyDefinition<PD> pd) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/client/ldap/
H A DLDAPManagedObject.java101 AggregationPropertyDefinition<C, S> pd, String v, Void p) {
104 Reference<C, S> reference = Reference.parseName(pd.getParentPath(), pd
115 public <PD> Object visitUnknown(PropertyDefinition<PD> pd, PD v, Void p) argument
117 return pd.encodeValue(v);
251 for (PropertyDefinition<?> pd : definition.getAllPropertyDefinitions()) {
252 String attrID = driver.getLDAPProfile().getAttributeName(definition, pd);
254 encodeProperty(attribute, pd);
302 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
303 Property<?> p = getProperty(pd);
100 visitAggregation( AggregationPropertyDefinition<C, S> pd, String v, Void p) argument
354 encodeProperty(Attribute attribute, PropertyDefinition<PD> pd) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/admin/client/ldap/
H A DLDAPManagedObject.java100 AggregationPropertyDefinition<C, S> pd, String v, Void p) {
103 Reference<C, S> reference = Reference.parseName(pd.getParentPath(), pd
114 public <PD> Object visitUnknown(PropertyDefinition<PD> pd, PD v, Void p) argument
116 return pd.encodeValue(v);
250 for (PropertyDefinition<?> pd : definition.getAllPropertyDefinitions()) {
251 String attrID = driver.getLDAPProfile().getAttributeName(definition, pd);
253 encodeProperty(attribute, pd);
301 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
302 Property<?> p = getProperty(pd);
99 visitAggregation( AggregationPropertyDefinition<C, S> pd, String v, Void p) argument
353 encodeProperty(Attribute attribute, PropertyDefinition<PD> pd) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/client/ldap/
H A DLDAPManagedObject.java101 AggregationPropertyDefinition<C, S> pd, String v, Void p) {
104 Reference<C, S> reference = Reference.parseName(pd.getParentPath(), pd
115 public <PD> Object visitUnknown(PropertyDefinition<PD> pd, PD v, Void p) argument
117 return pd.encodeValue(v);
251 for (PropertyDefinition<?> pd : definition.getAllPropertyDefinitions()) {
252 String attrID = driver.getLDAPProfile().getAttributeName(definition, pd);
254 encodeProperty(attribute, pd);
302 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
303 Property<?> p = getProperty(pd);
100 visitAggregation( AggregationPropertyDefinition<C, S> pd, String v, Void p) argument
354 encodeProperty(Attribute attribute, PropertyDefinition<PD> pd) argument
[all...]

Completed in 54 milliseconds

1234567891011>>