Searched refs:priority (Results 1 - 25 of 108) sorted by relevance

12345

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DTreePreloadComparator.java31 /** This comparator is used to sort trees in order of priority for preloading into the cache. */
35 * Calculate the relative priority of a tree for preloading.
40 private static int priority(Tree tree) method in class:TreePreloadComparator
71 return priority(tree1) - priority(tree2);
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DDbPreloadComparator.java34 * This comparator is used to sort databases in order of priority
47 * Calculate the relative priority of a database for preloading.
52 static private int priority(DatabaseContainer database) method in class:DbPreloadComparator
82 return priority(database1) - priority(database2);
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DDbPreloadComparator.java35 * This comparator is used to sort databases in order of priority
48 * Calculate the relative priority of a database for preloading.
53 static private int priority(DatabaseContainer database) method in class:DbPreloadComparator
83 return priority(database1) - priority(database2);
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DDbPreloadComparator.java35 * This comparator is used to sort databases in order of priority
48 * Calculate the relative priority of a database for preloading.
53 static private int priority(DatabaseContainer database) method in class:DbPreloadComparator
83 return priority(database1) - priority(database2);
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DDbPreloadComparator.java34 * This comparator is used to sort databases in order of priority
47 * Calculate the relative priority of a database for preloading.
52 static private int priority(DatabaseContainer database) method in class:DbPreloadComparator
82 return priority(database1) - priority(database2);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DDbPreloadComparator.java35 * This comparator is used to sort databases in order of priority
48 * Calculate the relative priority of a database for preloading.
53 static private int priority(DatabaseContainer database) method in class:DbPreloadComparator
83 return priority(database1) - priority(database2);
/forgerock/opendj-b2.6/src/server/org/opends/server/util/args/
H A DArgumentGroup.java53 private Integer priority; field in class:ArgumentGroup
60 * @param priority number governing the position of this group within
61 * the usage statement. Groups with higher priority values appear
62 * before groups with lower priority.
64 public ArgumentGroup(Message description, int priority) { argument
66 this.priority = priority;
102 // Groups with higher priority numbers appear before
103 // those with lower priority in the usage output
104 return -1 * priority
[all...]
/forgerock/opendj2/src/server/org/opends/server/util/args/
H A DArgumentGroup.java52 private Integer priority; field in class:ArgumentGroup
59 * @param priority number governing the position of this group within
60 * the usage statement. Groups with higher priority values appear
61 * before groups with lower priority.
63 public ArgumentGroup(Message description, int priority) { argument
65 this.priority = priority;
101 // Groups with higher priority numbers appear before
102 // those with lower priority in the usage output
103 return -1 * priority
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/util/args/
H A DArgumentGroup.java53 private Integer priority; field in class:ArgumentGroup
60 * @param priority number governing the position of this group within
61 * the usage statement. Groups with higher priority values appear
62 * before groups with lower priority.
64 public ArgumentGroup(Message description, int priority) { argument
66 this.priority = priority;
102 // Groups with higher priority numbers appear before
103 // those with lower priority in the usage output
104 return -1 * priority
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/args/
H A DArgumentGroup.java53 private Integer priority; field in class:ArgumentGroup
60 * @param priority number governing the position of this group within
61 * the usage statement. Groups with higher priority values appear
62 * before groups with lower priority.
64 public ArgumentGroup(Message description, int priority) { argument
66 this.priority = priority;
102 // Groups with higher priority numbers appear before
103 // those with lower priority in the usage output
104 return -1 * priority
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/util/args/
H A DArgumentGroup.java52 private Integer priority; field in class:ArgumentGroup
59 * @param priority number governing the position of this group within
60 * the usage statement. Groups with higher priority values appear
61 * before groups with lower priority.
63 public ArgumentGroup(Message description, int priority) { argument
65 this.priority = priority;
101 // Groups with higher priority numbers appear before
102 // those with lower priority in the usage output
103 return -1 * priority
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/
H A DShutdownManager.java132 * @param priority The priority to shutdown for the shutdown listener
135 public void addShutdownListener(ShutdownListener listener, ShutdownPriority priority) argument
140 listeners[priority.getIntValue() - 1].add(listener);
154 * @param priority Replacement listeners priority. If null default addShutdownListener method will be used.
157 ShutdownPriority priority) {
162 if (priority == null) {
165 addShutdownListener(newListener, priority);
186 for (ShutdownPriority priority
156 replaceShutdownListener(ShutdownListener oldListener, ShutdownListener newListener, ShutdownPriority priority) argument
[all...]
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DShutdownManager.java132 * @param priority The priority to shutdown for the shutdown listener
135 public void addShutdownListener(ShutdownListener listener, ShutdownPriority priority) argument
140 listeners[priority.getIntValue() - 1].add(listener);
154 * @param priority Replacement listeners priority. If null default addShutdownListener method will be used.
157 ShutdownPriority priority) {
162 if (priority == null) {
165 addShutdownListener(newListener, priority);
186 for (ShutdownPriority priority
156 replaceShutdownListener(ShutdownListener oldListener, ShutdownListener newListener, ShutdownPriority priority) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMTemplate.java52 * priorities. In this priority scheme, zero is the highest possible priority
55 * priorities. Templates which do not have an explicitly assigned priority are
56 * considered to have the lowest priority possible, or no priority. In the case
58 * attribute value, and they have the same (or no) priority, the result is
107 * Represents the priority of a template whose priority is not explicitly
136 * Returns the priority of this template in the DIT.
138 * @return priority
155 setPriority(int priority) argument
[all...]
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DTokenIntrospectionHandler.java41 * The priority of the handler. A lower value will be used first.
43 Integer priority(); method in interface:TokenIntrospectionHandler
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DTokenIntrospectionHandler.java41 * The priority of the handler. A lower value will be used first.
43 Integer priority(); method in interface:TokenIntrospectionHandler
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMTemplate.java52 * priorities. In this priority scheme, zero is the highest possible priority
55 * priorities. Templates which do not have an explicitly assigned priority are
56 * considered to have the lowest priority possible, or no priority. In the case
58 * attribute value, and they have the same (or no) priority, the result is
107 * Represents the priority of a template whose priority is not explicitly
136 * Returns the priority of this template in the DIT.
138 * @return priority
155 setPriority(int priority) argument
[all...]
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/schema/
H A DAddSubConfiguration.java55 private static final String OPTION_PRIORITY = "priority";
83 int priority = 0;
87 priority = Integer.parseInt(strPriority);
90 "add-sub-configuration-priority-no-integer"),
101 attributeValues, priority);
104 subConfigId, attributeValues, priority);
114 int priority
131 addSubConfig(sc, subConfigName, subConfigId, attrValues, priority);
159 int priority
186 addSubConfig(sc, subConfigName, subConfigId, attrValues, priority);
[all...]
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/schema/
H A DAddSubConfiguration.java55 private static final String OPTION_PRIORITY = "priority";
83 int priority = 0;
87 priority = Integer.parseInt(strPriority);
90 "add-sub-configuration-priority-no-integer"),
101 attributeValues, priority);
104 subConfigId, attributeValues, priority);
114 int priority
131 addSubConfig(sc, subConfigName, subConfigId, attrValues, priority);
159 int priority
186 addSubConfig(sc, subConfigName, subConfigId, attrValues, priority);
[all...]
/forgerock/opendj2/ext/ant/lib/
H A Dant-commons-logging.jar ... .apache.commons.logging.Log log int priority String message org.apache.tools.ant. ...
/forgerock/opendj-b2.6/ext/ant/lib/
H A Dant-commons-logging.jar ... .apache.commons.logging.Log log int priority String message org.apache.tools.ant. ...
/forgerock/opendj2.6.2/ext/ant/lib/
H A Dant-commons-logging.jar ... .apache.commons.logging.Log log int priority String message org.apache.tools.ant. ...
/forgerock/opendj2-hg/ext/ant/lib/
H A Dant-commons-logging.jar ... .apache.commons.logging.Log log int priority String message org.apache.tools.ant. ...
/forgerock/opendj-v3/opendj-server-legacy/ext/ant/lib/
H A Dant-commons-logging.jar ... .apache.commons.logging.Log log int priority String message org.apache.tools.ant. ...
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/ums/cos/
H A DCOSTemplate.java88 * Sets the priority for this template. The priority determines which COS
90 * templates. A priority of "0" is the highest priority.
92 * @param priority Priority for this template.
95 public void setPriority(int priority) { argument
96 setAttribute(new Attr("cosPriority", new Integer(priority).toString()));

Completed in 91 milliseconds

12345