Searched defs:registry (Results 1 - 25 of 46) sorted by relevance

12

/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/entitlement/
H A DEntitlementModule.java32 * @param registry the entitlement component registry to register components with.
34 void registerCustomTypes(EntitlementRegistry registry); argument
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/
H A DPolicyEntitlementModule.java30 public void registerCustomTypes(EntitlementRegistry registry) { argument
32 registry.registerConditionType(PolicyCondition.class);
33 registry.registerSubjectType(PolicySubject.class);
34 registry.registerAttributeType("Policy", PolicyResponseProvider.class);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/entitlement/
H A DEntitlementModule.java32 * @param registry the entitlement component registry to register components with.
34 void registerCustomTypes(EntitlementRegistry registry); argument
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/
H A DPolicyEntitlementModule.java30 public void registerCustomTypes(EntitlementRegistry registry) { argument
32 registry.registerConditionType(PolicyCondition.class);
33 registry.registerSubjectType(PolicySubject.class);
34 registry.registerAttributeType("Policy", PolicyResponseProvider.class);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DListenerManager.java46 private static IEntitlementListenerRegistry registry; field in class:ListenerManager
53 registry = (IEntitlementListenerRegistry)clazz.newInstance();
80 if (registry != null) {
81 registry.addListener(adminSubject, listener);
125 return (registry != null) ?
126 registry.getListeners(adminSubject) : Collections.EMPTY_SET;
139 if (registry != null) {
140 return registry.removeListener(adminSubject, url);
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/model/json/
H A DEntitlementConditionTypeIdResolver.java23 * Maps string names to fully-qualified class names based on a name registry. Used to allow short names for conditions
30 protected String getShortName(EntitlementRegistry registry, EntitlementCondition value) { argument
31 return registry.getConditionName(value);
35 protected Class<? extends EntitlementCondition> getType(EntitlementRegistry registry, String shortName) { argument
36 return registry.getConditionType(shortName);
H A DEntitlementSubjectTypeIdResolver.java23 * Maps string names to fully-qualified class names based on a name registry. Used to allow short names for subjects
30 protected String getShortName(EntitlementRegistry registry, EntitlementSubject value) { argument
31 return registry.getSubjectName(value);
35 protected Class<? extends EntitlementSubject> getType(EntitlementRegistry registry, String shortName) { argument
36 return registry.getSubjectType(shortName);
H A DResourceAttributeTypeIdResolver.java30 protected String getShortName(EntitlementRegistry registry, ResourceAttribute value) { argument
31 return registry.getAttributeName(value);
35 protected Class<? extends ResourceAttribute> getType(EntitlementRegistry registry, String shortName) { argument
36 return registry.getAttributeType(shortName);
H A DEntitlementsRegistryTypeIdResolver.java32 private final EntitlementRegistry registry = EntitlementRegistry.load(); field in class:EntitlementsRegistryTypeIdResolver
44 * @param registry the registry to lookup the short name in.
48 protected abstract String getShortName(EntitlementRegistry registry, T value); argument
52 * @param registry the registry to use to lookup the type.
56 protected abstract Class<? extends T> getType(EntitlementRegistry registry, String shortName); argument
61 return getShortName(registry, (T) value);
71 Class<? extends T> subType = getType(registry, id);
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DScripts.java36 private final ScriptRegistry registry; field in class:Scripts
54 static void init(ScriptRegistry registry) { argument
55 instance = new Scripts(registry);
58 private Scripts(ScriptRegistry registry) { argument
59 this.registry = registry;
67 return new Script(instance.registry.takeScript(config));
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DListenerManager.java46 private static IEntitlementListenerRegistry registry; field in class:ListenerManager
53 registry = (IEntitlementListenerRegistry)clazz.newInstance();
80 if (registry != null) {
81 registry.addListener(adminSubject, listener);
125 return (registry != null) ?
126 registry.getListeners(adminSubject) : Collections.EMPTY_SET;
139 if (registry != null) {
140 return registry.removeListener(adminSubject, url);
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/model/json/
H A DEntitlementConditionTypeIdResolver.java23 * Maps string names to fully-qualified class names based on a name registry. Used to allow short names for conditions
30 protected String getShortName(EntitlementRegistry registry, EntitlementCondition value) { argument
31 return registry.getConditionName(value);
35 protected Class<? extends EntitlementCondition> getType(EntitlementRegistry registry, String shortName) { argument
36 return registry.getConditionType(shortName);
H A DEntitlementSubjectTypeIdResolver.java23 * Maps string names to fully-qualified class names based on a name registry. Used to allow short names for subjects
30 protected String getShortName(EntitlementRegistry registry, EntitlementSubject value) { argument
31 return registry.getSubjectName(value);
35 protected Class<? extends EntitlementSubject> getType(EntitlementRegistry registry, String shortName) { argument
36 return registry.getSubjectType(shortName);
H A DResourceAttributeTypeIdResolver.java30 protected String getShortName(EntitlementRegistry registry, ResourceAttribute value) { argument
31 return registry.getAttributeName(value);
35 protected Class<? extends ResourceAttribute> getType(EntitlementRegistry registry, String shortName) { argument
36 return registry.getAttributeType(shortName);
H A DEntitlementsRegistryTypeIdResolver.java33 private final EntitlementRegistry registry = EntitlementRegistry.load(); field in class:EntitlementsRegistryTypeIdResolver
45 * @param registry the registry to lookup the short name in.
49 protected abstract String getShortName(EntitlementRegistry registry, T value); argument
53 * @param registry the registry to use to lookup the type.
57 protected abstract Class<? extends T> getType(EntitlementRegistry registry, String shortName); argument
62 return getShortName(registry, (T) value);
72 Class<? extends T> subType = getType(registry, id);
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/jmx/
H A DRmiConnector.java31 import java.rmi.registry.LocateRegistry;
32 import java.rmi.registry.Registry;
86 * the client address to connect to the common registry. Note that a
120 * The reference to the created RMI registry.
122 private Registry registry = null; field in class:RmiConnector
169 // start the common registry
200 * Starts the common RMI registry. In order to provide RMI stub for
202 * registry. Each server will maintain its own private one.
205 * if the registry cannot be started
212 // create our local RMI registry i
[all...]
/forgerock/opendj2/src/server/org/opends/server/protocols/jmx/
H A DRmiConnector.java31 import java.rmi.registry.LocateRegistry;
32 import java.rmi.registry.Registry;
86 * the client address to connect to the common registry. Note that a
120 * The reference to the created RMI registry.
122 private Registry registry = null; field in class:RmiConnector
169 // start the common registry
200 * Starts the common RMI registry. In order to provide RMI stub for
202 * registry. Each server will maintain its own private one.
205 * if the registry cannot be started
212 // create our local RMI registry i
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/jmx/
H A DRmiConnector.java31 import java.rmi.registry.LocateRegistry;
32 import java.rmi.registry.Registry;
86 * the client address to connect to the common registry. Note that a
120 * The reference to the created RMI registry.
122 private Registry registry = null; field in class:RmiConnector
169 // start the common registry
200 * Starts the common RMI registry. In order to provide RMI stub for
202 * registry. Each server will maintain its own private one.
205 * if the registry cannot be started
212 // create our local RMI registry i
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/jmx/
H A DRmiConnector.java31 import java.rmi.registry.LocateRegistry;
32 import java.rmi.registry.Registry;
86 * the client address to connect to the common registry. Note that a
120 * The reference to the created RMI registry.
122 private Registry registry = null; field in class:RmiConnector
169 // start the common registry
200 * Starts the common RMI registry. In order to provide RMI stub for
202 * registry. Each server will maintain its own private one.
205 * if the registry cannot be started
212 // create our local RMI registry i
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/jmx/
H A DRmiConnector.java31 import java.rmi.registry.LocateRegistry;
32 import java.rmi.registry.Registry;
86 * the client address to connect to the common registry. Note that a
120 * The reference to the created RMI registry.
122 private Registry registry = null; field in class:RmiConnector
169 // start the common registry
200 * Starts the common RMI registry. In order to provide RMI stub for
202 * registry. Each server will maintain its own private one.
205 * if the registry cannot be started
212 // create our local RMI registry i
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/protocols/jmx/
H A DRmiConnector.java32 import java.rmi.registry.LocateRegistry;
33 import java.rmi.registry.Registry;
111 * The reference to the created RMI registry.
113 private Registry registry; field in class:RmiConnector
183 * Starts the common RMI registry. In order to provide RMI stub for
185 * registry. Each server will maintain its own private one.
188 * if the registry cannot be started
195 // create our local RMI registry if it does not exist already
198 logger.trace("start or reach an RMI registry on port %d",
204 if (registry
[all...]
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-base/src/main/java/com/sun/identity/diagnostic/base/core/service/
H A DToolRegistry.java50 * This class represents the registry where all the services
52 * of registry in the application.
57 private static ToolRegistry registry = null; field in class:ToolRegistry
74 if (registry != null) {
75 return registry;
78 if (registry == null) {
79 registry = new ToolRegistry();
82 return registry;
90 * registry.
141 * registry
[all...]
H A DToolServiceManager.java59 private ToolRegistry registry = null; field in class:ToolServiceManager
87 * Returns the registry with which the services are registered.
89 * @return registry that is used to registered the services.
104 this.registry = getRegistry();
109 * register them with the registry. This method just publishes
110 * the services in the registry and it doesn't load or activate
115 registry.registerServices(discoveredServicesMap);
196 registry.getAllRegisteredServices();
198 if (registry.isCoreService(service) ||
199 registry
[all...]
/forgerock/jee-agents-v3.5/jee-agents-websphere/jee-agents-websphere-common/src/main/java/com/sun/identity/agents/websphere/
H A DAmWebsphereManager.java62 private void setRealmUserRegistry(IAmRealmUserRegistry registry) { argument
63 _realmUserRegistry = registry;
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/entitlement/utils/
H A DEntitlementUtils.java57 private static final EntitlementRegistry registry = EntitlementRegistry.load(); field in class:EntitlementUtils
403 Class<? extends EntitlementCombiner> combinerClass = registry.getCombinerType(name);

Completed in 55 milliseconds

12