Searched refs:pd (Results 201 - 225 of 412) sorted by relevance

1234567891011>>

/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/admin/
H A DTestCfg.java222 * @param pd
227 public static void initializePropertyDefinition(PropertyDefinition<?> pd) argument
229 pd.initialize();
230 pd.getDefaultBehaviorProvider().initialize();
252 * @param pd
255 public static void addPropertyDefinition(PropertyDefinition<?> pd) { argument
256 TestChildCfgDefn.getInstance().registerPropertyDefinition(pd);
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/admin/
H A DTestCfg.java222 * @param pd
227 public static void initializePropertyDefinition(PropertyDefinition<?> pd) argument
229 pd.initialize();
230 pd.getDefaultBehaviorProvider().initialize();
252 * @param pd
255 public static void addPropertyDefinition(PropertyDefinition<?> pd) { argument
256 TestChildCfgDefn.getInstance().registerPropertyDefinition(pd);
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/dsconfig/
H A DSetPropSubCommandHandler.java250 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
251 if (cannotDisplay(app, pd)) {
254 properties.add(pd);
346 private static boolean cannotDisplay(ConsoleApplication app, PropertyDefinition<?> pd) { argument
347 return pd.hasOption(PropertyOption.HIDDEN)
348 || (!app.isAdvancedMode() && pd.hasOption(PropertyOption.ADVANCED));
360 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
361 if (pd instanceof AggregationPropertyDefinition<?, ?>) {
362 AggregationPropertyDefinition<?, ?> apd = (AggregationPropertyDefinition<?, ?>) pd;
694 PropertyDefinition<?> pd
824 modifyPropertyValues(ManagedObject<?> mo, PropertyDefinition<T> pd, Map<PropertyDefinition, Set> changes, ModificationType modType, String s) argument
[all...]
H A DGetPropSubCommandHandler.java274 for (PropertyDefinition<?> pd : pdList) {
275 if (cannotDisplay(app, pd, propertyNames)) {
279 displayProperty(app, builder, child, pd, valuePrinter);
299 PropertyDefinition<T> pd, PropertyValuePrinter valuePrinter) {
300 SortedSet<T> values = mo.getPropertyValues(pd);
340 builder.appendCell(pd.getName());
342 LocalizableMessage content = pd.getDefaultBehaviorProvider().accept(visitor, null);
355 builder.appendCell(pd.getName());
356 builder.appendCell(valuePrinter.print(pd, value));
360 builder.appendCell(pd
298 displayProperty(final ConsoleApplication app, TableBuilder builder, ManagedObject<?> mo, PropertyDefinition<T> pd, PropertyValuePrinter valuePrinter) argument
[all...]
H A DCreateSubCommandHandler.java151 PropertyDefinition<?> pd;
153 pd = d.getPropertyDefinition(propertyName);
159 if (pd.equals(namingPropertyDefinition)) {
160 throw ArgumentExceptionFactory.unableToSetNamingProperty(d, pd);
164 addPropertyValue(d, pd, value);
190 private <T> void addPropertyValue(ManagedObjectDefinition<?, ?> d, PropertyDefinition<T> pd, String s) argument
194 value = pd.decodeValue(s);
199 Collection<T> values = (Collection<T>) properties.get(pd);
205 if (values.size() > 1 && !pd.hasOption(PropertyOption.MULTI_VALUED)) {
206 PropertyException e = PropertyException.propertyIsSingleValuedException(pd);
706 cannotDisplay(ConsoleApplication app, PropertyDefinition<?> pd) argument
898 CreateSubCommandHandler(SubCommandArgumentParser parser, ManagedObjectPath<?, ?> p, RelationDefinition<C, S> r, PropertyDefinition<?> pd, ManagedObjectPath<?, ?> c) argument
1227 setProperty(ManagedObject<?> mo, MyPropertyProvider provider, PropertyDefinition<T> pd) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/tools/dsconfig/
H A DSetPropSubCommandHandler.java271 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
272 if (pd.hasOption(PropertyOption.HIDDEN)) {
275 if (!app.isAdvancedMode() && pd.hasOption(PropertyOption.ADVANCED)) {
278 properties.add(pd);
393 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
394 if (pd instanceof AggregationPropertyDefinition<?,?>) {
396 (AggregationPropertyDefinition<?, ?>)pd;
780 PropertyDefinition<?> pd = getPropertyDefinition(d, m);
783 if (pd.hasOption(PropertyOption.MANDATORY)
784 && pd
922 modifyPropertyValues(ManagedObject<?> mo, PropertyDefinition<T> pd, Map<PropertyDefinition, Set> changes, ModificationType modType, String s) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/tools/dsconfig/
H A DSetPropSubCommandHandler.java271 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
272 if (pd.hasOption(PropertyOption.HIDDEN)) {
275 if (!app.isAdvancedMode() && pd.hasOption(PropertyOption.ADVANCED)) {
278 properties.add(pd);
393 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
394 if (pd instanceof AggregationPropertyDefinition<?,?>) {
396 (AggregationPropertyDefinition<?, ?>)pd;
780 PropertyDefinition<?> pd = getPropertyDefinition(d, m);
783 if (pd.hasOption(PropertyOption.MANDATORY)
784 && pd
922 modifyPropertyValues(ManagedObject<?> mo, PropertyDefinition<T> pd, Map<PropertyDefinition, Set> changes, ModificationType modType, String s) argument
[all...]
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/client/ldap/
H A DLDAPManagedObject.java89 AggregationPropertyDefinition<C, S> pd, String v, Void p) {
92 Reference<C, S> reference = Reference.parseName(pd.getParentPath(), pd.getRelationDefinition(), v);
251 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
252 Property<?> p = getProperty(pd);
254 String attrID = driver.getLDAPProfile().getAttributeName(d, pd);
256 encodeProperty(attribute, pd);
307 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
308 Property<?> p = getProperty(pd);
88 visitAggregation( AggregationPropertyDefinition<C, S> pd, String v, Void p) argument
/forgerock/opendj2/src/server/org/opends/server/admin/
H A DLDAPProfile.java78 * @param pd
86 PropertyDefinition<?> pd) {
206 * @param pd
215 PropertyDefinition<?> pd) throws MissingResourceException {
217 String attributeName = profile.getAttributeName(d, pd);
222 return resource.getString(d, "attribute." + pd.getName());
85 getAttributeName(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
214 getAttributeName(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
/forgerock/opendj2/src/server/org/opends/server/admin/client/
H A DManagementContext.java259 * @param pd
284 PropertyDefinition<PD> pd) throws IllegalArgumentException,
288 Set<PD> values = getPropertyValues(path, pd);
306 * @param pd
331 ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd)
335 return getDriver().getPropertyValues(path, pd);
283 getPropertyValue(ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd) argument
330 getPropertyValues( ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/
H A DLDAPProfile.java79 * @param pd
87 PropertyDefinition<?> pd) {
207 * @param pd
216 PropertyDefinition<?> pd) throws MissingResourceException {
218 String attributeName = profile.getAttributeName(d, pd);
223 return resource.getString(d, "attribute." + pd.getName());
86 getAttributeName(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
215 getAttributeName(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/client/
H A DManagementContext.java260 * @param pd
285 PropertyDefinition<PD> pd) throws IllegalArgumentException,
289 Set<PD> values = getPropertyValues(path, pd);
307 * @param pd
332 ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd)
336 return getDriver().getPropertyValues(path, pd);
284 getPropertyValue(ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd) argument
331 getPropertyValues( ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/
H A DLDAPProfile.java79 * @param pd
87 PropertyDefinition<?> pd) {
207 * @param pd
216 PropertyDefinition<?> pd) throws MissingResourceException {
218 String attributeName = profile.getAttributeName(d, pd);
223 return resource.getString(d, "attribute." + pd.getName());
86 getAttributeName(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
215 getAttributeName(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/client/
H A DManagementContext.java260 * @param pd
285 PropertyDefinition<PD> pd) throws IllegalArgumentException,
289 Set<PD> values = getPropertyValues(path, pd);
307 * @param pd
332 ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd)
336 return getDriver().getPropertyValues(path, pd);
284 getPropertyValue(ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd) argument
331 getPropertyValues( ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd) argument
/forgerock/opendj2-hg/src/server/org/opends/server/admin/
H A DLDAPProfile.java78 * @param pd
86 PropertyDefinition<?> pd) {
206 * @param pd
215 PropertyDefinition<?> pd) throws MissingResourceException {
217 String attributeName = profile.getAttributeName(d, pd);
222 return resource.getString(d, "attribute." + pd.getName());
85 getAttributeName(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
214 getAttributeName(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
/forgerock/opendj2-hg/src/server/org/opends/server/admin/client/
H A DManagementContext.java259 * @param pd
284 PropertyDefinition<PD> pd) throws IllegalArgumentException,
288 Set<PD> values = getPropertyValues(path, pd);
306 * @param pd
331 ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd)
335 return getDriver().getPropertyValues(path, pd);
283 getPropertyValue(ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd) argument
330 getPropertyValues( ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd) argument
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/
H A DLDAPProfile.java79 * @param pd
87 PropertyDefinition<?> pd) {
207 * @param pd
216 PropertyDefinition<?> pd) throws MissingResourceException {
218 String attributeName = profile.getAttributeName(d, pd);
223 return resource.getString(d, "attribute." + pd.getName());
86 getAttributeName(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
215 getAttributeName(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/client/
H A DManagementContext.java260 * @param pd
285 PropertyDefinition<PD> pd) throws IllegalArgumentException,
289 Set<PD> values = getPropertyValues(path, pd);
307 * @param pd
332 ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd)
336 return getDriver().getPropertyValues(path, pd);
284 getPropertyValue(ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd) argument
331 getPropertyValues( ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/
H A DLDAPProfile.java79 * @param pd
87 PropertyDefinition<?> pd) {
207 * @param pd
216 PropertyDefinition<?> pd) throws MissingResourceException {
218 String attributeName = profile.getAttributeName(d, pd);
223 return resource.getString(d, "attribute." + pd.getName());
86 getAttributeName(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
215 getAttributeName(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/client/
H A DManagementContext.java256 * @param pd
281 PropertyDefinition<PD> pd) throws IllegalArgumentException,
285 Set<PD> values = getPropertyValues(path, pd);
303 * @param pd
328 ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd)
332 return getDriver().getPropertyValues(path, pd);
280 getPropertyValue(ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd) argument
327 getPropertyValues( ManagedObjectPath<?, ?> path, PropertyDefinition<PD> pd) argument
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/
H A DLDAPProfile.java67 * @param pd
74 public String getAttributeName(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) { argument
177 * @param pd
185 public String getAttributeName(AbstractManagedObjectDefinition<?, ?> d, PropertyDefinition<?> pd) { argument
187 String attributeName = profile.getAttributeName(d, pd);
192 return resource.getString(d, "attribute." + pd.getName());
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/client/
H A DDriverBasedManagementContext.java94 public final <P> P getPropertyValue(ManagedObjectPath<?, ?> path, PropertyDefinition<P> pd) argument
96 Set<P> values = getPropertyValues(path, pd);
105 public final <P> SortedSet<P> getPropertyValues(ManagedObjectPath<?, ?> path, PropertyDefinition<P> pd) argument
107 return getDriver().getPropertyValues(path, pd);
/forgerock/opendj-b2.6/src/server/org/opends/server/tools/dsconfig/
H A DCreateSubCommandHandler.java162 PropertyDefinition<?> pd;
164 pd = d.getPropertyDefinition(propertyName);
171 if (pd.equals(namingPropertyDefinition)) {
172 throw ArgumentExceptionFactory.unableToSetNamingProperty(d, pd);
176 addPropertyValue(d, pd, value);
214 PropertyDefinition<T> pd, String s) throws ArgumentException {
217 value = pd.decodeValue(s);
222 Collection<T> values = (Collection<T>) properties.get(pd);
228 if (values.size() > 1 && !pd.hasOption(PropertyOption.MULTI_VALUED)) {
229 PropertyException e = new PropertyIsSingleValuedException(pd);
213 addPropertyValue(ManagedObjectDefinition<?, ?> d, PropertyDefinition<T> pd, String s) argument
1067 CreateSubCommandHandler( SubCommandArgumentParser parser, ManagedObjectPath<?, ?> p, RelationDefinition<C, S> r, PropertyDefinition<?> pd, ManagedObjectPath<?, ?> c) argument
1483 setProperty(ManagedObject<?> mo, MyPropertyProvider provider, PropertyDefinition<T> pd) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/admin/server/
H A DConfigChangeListenerAdaptor.java100 * @param pd
106 PropertyDefinition<T> pd, Collection<DN> dependencies) {
108 DefaultBehaviorProvider<T> db = pd.getDefaultBehaviorProvider();
138 PropertyDefinition<?> pd = mod.getPropertyDefinition(propertyName);
139 find(next, pd, dependencies);
180 PropertyDefinition<?> pd = mod.getPropertyDefinition(propertyName);
181 find(next, pd, dependencies);
279 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
280 Visitor.find(path, pd, dependencies);
105 find(ManagedObjectPath<?, ?> path, PropertyDefinition<T> pd, Collection<DN> dependencies) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/server/
H A DConfigChangeListenerAdaptor.java101 * @param pd
107 PropertyDefinition<T> pd, Collection<DN> dependencies) {
109 DefaultBehaviorProvider<T> db = pd.getDefaultBehaviorProvider();
139 PropertyDefinition<?> pd = mod.getPropertyDefinition(propertyName);
140 find(next, pd, dependencies);
181 PropertyDefinition<?> pd = mod.getPropertyDefinition(propertyName);
182 find(next, pd, dependencies);
280 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
281 Visitor.find(path, pd, dependencies);
106 find(ManagedObjectPath<?, ?> path, PropertyDefinition<T> pd, Collection<DN> dependencies) argument

Completed in 81 milliseconds

1234567891011>>