Searched refs:bundle (Results 1 - 25 of 763) sorted by relevance

1234567891011>>

/forgerock/openidm-v4/openidm-maintenance/src/test/java/org/forgerock/openidm/maintenance/upgrade/
H A DBundleHandlerTest.java38 // Path to the helloworld bundle jar
46 for (Bundle bundle : service.getSystemBundle().getBundleContext().getBundles()) {
47 installedBundles.put(bundle.getLocation(), bundle);
52 for (Bundle bundle : service.getSystemBundle().getBundleContext().getBundles()) {
53 installedBundles.put(bundle.getLocation(), bundle);
95 bundlePath = Paths.get(service.getProjectURI().resolve("bundle/HelloWorld-1.0-SNAPSHOT.jar"));
103 private void stopBundle(Bundle bundle) throws Exception{ argument
104 bundleHandler.stopBundle(bundle);
109 uninstallBundle(Bundle bundle) argument
120 startBundle(Bundle bundle) argument
[all...]
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DBundleUtils.java28 * Try to get a value from the bundle, and if it doesn't exist, return a default.
29 * @param bundle The bundle.
32 * @return The bundle's value for the given key, or {@code defaultValue} if there is no value.
34 public static String getStringWithDefault(ResourceBundle bundle, String key, String defaultValue) { argument
36 return bundle.getString(key);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/delegation/
H A DResBundleUtils.java41 * resource bundle name
46 * Resource bundle to be used to get messages from, using the default
51 public static ResourceBundle bundle = Locale field in class:ResBundleUtils
63 String localizedStr = Locale.getString(bundle, key);
81 String localizedStr = Locale.getString(bundle, key, params);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DResBundleUtils.java37 * Class to model resource bundle to be used to get messages from,
42 /** resource bundle name */
46 public static ResourceBundle bundle = Locale.getInstallResourceBundle( field in class:ResBundleUtils
57 String localizedStr = Locale.getString(bundle, key);
74 String localizedStr = Locale.getString(bundle, key, params);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/delegation/
H A DResBundleUtils.java41 * resource bundle name
46 * Resource bundle to be used to get messages from, using the default
51 public static ResourceBundle bundle = Locale field in class:ResBundleUtils
63 String localizedStr = Locale.getString(bundle, key);
81 String localizedStr = Locale.getString(bundle, key, params);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DResBundleUtils.java37 * Class to model resource bundle to be used to get messages from,
42 /** resource bundle name */
46 public static ResourceBundle bundle = Locale.getInstallResourceBundle( field in class:ResBundleUtils
57 String localizedStr = Locale.getString(bundle, key);
74 String localizedStr = Locale.getString(bundle, key, params);
/forgerock/openidm-v4/openidm-maintenance/src/main/java/org/forgerock/openidm/maintenance/upgrade/
H A DBundleHandler.java48 * @param systemBundleContext the {@link BundleContext} of the system bundle
50 * @param updateLogger the logger used to record bundle changes
69 // check to see if the bundle is installed in the list of bundles
72 // replace the current bundle with the new bundle in the directory
75 // install new bundle
81 * Returns the absolute path to the installed bundle
84 * @param bundle Location where the Bundle is installed.
87 private Path getBundlePath(Bundle bundle) throws UpdateException { argument
89 return Paths.get(new URI(bundle
167 updateBundle(Bundle bundle) argument
180 stopBundle(Bundle bundle) argument
193 uninstallBundle(Bundle bundle) argument
220 startBundle(Bundle bundle) argument
[all...]
/forgerock/openidm-v4/openidm-crypto/src/main/java/org/forgerock/openidm/crypto/impl/
H A DActivator.java40 * Crypto bundle activator
50 logger.debug("Crypto bundle starting");
68 logger.debug("Crypto bundle started");
78 logger.debug("Crypto bundle stopped");
82 * Ensures the Jetty Fragment bundle gets resolved and attached to the Jetty
83 * bundle. This is a work-around for the felix issue not consistently
89 for (org.osgi.framework.Bundle bundle : bundles) {
90 if ("org.ops4j.pax.web.pax-web-jetty-bundle".equals(bundle.getSymbolicName())) {
91 jettyBundle = bundle;
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/tools/bundles/
H A DMain.java45 ResourceBundle bundle = ResourceBundle.getBundle(System.getProperty(
50 SetupUtils.printUsage(bundle);
72 System.out.println(bundle.getString("message.error.license"));
91 configPath = SetupUtils.getUserInput(bundle.getString(
95 System.out.println(bundle.getString(
101 debugPath = SetupUtils.getUserInput(bundle.getString(
106 System.out.println(bundle.getString(
111 System.out.println(bundle.getString(
117 logPath = SetupUtils.getUserInput(bundle.getString(
122 System.out.println(bundle
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/tools/bundles/
H A DMain.java45 ResourceBundle bundle = ResourceBundle.getBundle(System.getProperty(
50 SetupUtils.printUsage(bundle);
72 System.out.println(bundle.getString("message.error.license"));
91 configPath = SetupUtils.getUserInput(bundle.getString(
95 System.out.println(bundle.getString(
101 debugPath = SetupUtils.getUserInput(bundle.getString(
106 System.out.println(bundle.getString(
111 System.out.println(bundle.getString(
117 logPath = SetupUtils.getUserInput(bundle.getString(
122 System.out.println(bundle
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DNameIDInfoKey.java76 throw new SAML2Exception(SAML2Utils.bundle.getString(
81 throw new SAML2Exception(SAML2Utils.bundle.getString(
86 throw new SAML2Exception(SAML2Utils.bundle.getString(
144 throw new SAML2Exception(SAML2Utils.bundle.getString(
150 throw new SAML2Exception(SAML2Utils.bundle.getString(
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DNameIDInfoKey.java76 throw new SAML2Exception(SAML2Utils.bundle.getString(
81 throw new SAML2Exception(SAML2Utils.bundle.getString(
86 throw new SAML2Exception(SAML2Utils.bundle.getString(
144 throw new SAML2Exception(SAML2Utils.bundle.getString(
150 throw new SAML2Exception(SAML2Utils.bundle.getString(
/forgerock/openidm-v4/openidm-router/src/main/java/org/forgerock/openidm/router/
H A DRouterRegistryImpl.java149 public RouterRegistry getService(Bundle bundle, argument
151 logger.debug("getService RouterRegistryService {}", bundle);
152 return new RouterRegistryServiceImpl(bundle, this);
156 public void ungetService(Bundle bundle, argument
158 logger.debug("ungetService RouterRegistryService {}", bundle);
232 protected Bundle bundle; field in class:RouterRegistryImpl.RouterRegistryServiceImpl
235 public RouterRegistryServiceImpl(Bundle bundle, RouterRegistryImpl registry) { argument
236 this.bundle = bundle;
242 bundle
259 protected Bundle bundle; field in class:RouteServiceImpl
263 RouteServiceImpl(Bundle bundle, final AtomicReference<Router> router) argument
278 RouteEntryImpl(BundleContext parent, Bundle bundle, final AtomicReference<Router> router, RouteBuilder builder) argument
333 getService(Bundle bundle, ServiceRegistration<RouteService> registration) argument
338 ungetService(Bundle bundle, ServiceRegistration<RouteService> registration, RouteService service) argument
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-ldap/src/main/java/com/sun/identity/authentication/modules/ldap/
H A DLDAPCallbacks.java51 private ResourceBundle bundle; field in class:LDAPCallbacks
61 ResourceBundle bundle) {
63 this.bundle = bundle;
124 throw new LoginException(bundle.getString("NoCallbackHandler"));
139 throw new LoginException(bundle.getString("NoCallbackHandler"));
149 throw new LoginException(bundle.getString("NoCallbackHandler"));
170 throw new LoginException(bundle.getString("NoCallbackHandler"));
189 throw new LoginException(bundle.getString("NoCallbackHandler"));
198 throw new LoginException(bundle
59 LDAPCallbacks( CallbackHandler callbackHandler, ResourceBundle bundle) argument
[all...]
/forgerock/openam/openam-authentication/openam-auth-ldap/src/main/java/com/sun/identity/authentication/modules/ldap/
H A DLDAPCallbacks.java51 private ResourceBundle bundle; field in class:LDAPCallbacks
61 ResourceBundle bundle) {
63 this.bundle = bundle;
124 throw new LoginException(bundle.getString("NoCallbackHandler"));
139 throw new LoginException(bundle.getString("NoCallbackHandler"));
149 throw new LoginException(bundle.getString("NoCallbackHandler"));
170 throw new LoginException(bundle.getString("NoCallbackHandler"));
189 throw new LoginException(bundle.getString("NoCallbackHandler"));
198 throw new LoginException(bundle
59 LDAPCallbacks( CallbackHandler callbackHandler, ResourceBundle bundle) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DAuthorizationDecisionStatementBase.java114 SAMLUtilsCommon.bundle.getString("nullInput"));
126 SAMLUtilsCommon.bundle.getString("wrongInput"));
143 SAMLUtilsCommon.bundle.getString("nullInput"));
154 SAMLUtilsCommon.bundle.getString(
166 SAMLUtilsCommon.bundle.getString(
182 SAMLUtilsCommon.bundle.getString("wrongInput"));
196 SAMLUtilsCommon.bundle.getString("missingAttribute"));
206 SAMLUtilsCommon.bundle.getString("missingAttribute"));
226 SAMLUtilsCommon.bundle.getString("nullInput"));
237 SAMLUtilsCommon.bundle
[all...]
H A DAttributeStatement.java65 SAMLUtilsCommon.bundle.getString("nullInput"));
74 SAMLUtilsCommon.bundle.getString("wrongInput"));
95 SAMLUtilsCommon.bundle.getString("nullInput"));
106 SAMLUtilsCommon.bundle.getString(
126 SAMLUtilsCommon.bundle.getString(
136 SAMLUtilsCommon.bundle.getString("wrongInput"));
149 SAMLUtilsCommon.bundle.getString("missingElement"));
158 SAMLUtilsCommon.bundle.getString("missingElement"));
178 SAMLUtilsCommon.bundle.getString("missingElement"));
189 SAMLUtilsCommon.bundle
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DAuthorizationDecisionStatementBase.java114 SAMLUtilsCommon.bundle.getString("nullInput"));
126 SAMLUtilsCommon.bundle.getString("wrongInput"));
143 SAMLUtilsCommon.bundle.getString("nullInput"));
154 SAMLUtilsCommon.bundle.getString(
166 SAMLUtilsCommon.bundle.getString(
182 SAMLUtilsCommon.bundle.getString("wrongInput"));
196 SAMLUtilsCommon.bundle.getString("missingAttribute"));
206 SAMLUtilsCommon.bundle.getString("missingAttribute"));
226 SAMLUtilsCommon.bundle.getString("nullInput"));
237 SAMLUtilsCommon.bundle
[all...]
H A DAttributeStatement.java65 SAMLUtilsCommon.bundle.getString("nullInput"));
74 SAMLUtilsCommon.bundle.getString("wrongInput"));
95 SAMLUtilsCommon.bundle.getString("nullInput"));
106 SAMLUtilsCommon.bundle.getString(
126 SAMLUtilsCommon.bundle.getString(
136 SAMLUtilsCommon.bundle.getString("wrongInput"));
149 SAMLUtilsCommon.bundle.getString("missingElement"));
158 SAMLUtilsCommon.bundle.getString("missingElement"));
178 SAMLUtilsCommon.bundle.getString("missingElement"));
189 SAMLUtilsCommon.bundle
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/xmlenc/
H A DFMEncProvider.java182 SAML2SDKUtils.bundle.getString("nullInput"));
189 throw new SAML2Exception(SAML2SDKUtils.bundle.getString(
204 throw new SAML2Exception(SAML2SDKUtils.bundle.getString(
211 SAML2SDKUtils.bundle.getString("errorObtainingElement"));
220 SAML2SDKUtils.bundle.getString("emptyDoc"));
238 throw new SAML2Exception(SAML2SDKUtils.bundle.getString(
262 SAML2SDKUtils.bundle.getString("unsupportedKeyAlg"));
269 SAML2SDKUtils.bundle.getString("noCipherForPublicKeyAlg"));
278 SAML2SDKUtils.bundle.getString(
289 SAML2SDKUtils.bundle
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xmlenc/
H A DEncryptionUtils.java39 public static ResourceBundle bundle = field in class:EncryptionUtils
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xmlenc/
H A DEncryptionUtils.java39 public static ResourceBundle bundle = field in class:EncryptionUtils
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAssertionIDRefImpl.java88 throw new SAML2Exception(SAML2Utils.bundle.getString(
115 throw new SAML2Exception(SAML2Utils.bundle.getString(
167 throw new SAML2Exception(SAML2Utils.bundle.getString(
190 throw new SAML2Exception(SAML2Utils.bundle.getString(
198 throw new SAML2Exception(SAML2Utils.bundle.getString("wrongInput"));
212 throw new SAML2Exception(SAML2Utils.bundle.getString(
224 throw new SAML2Exception(SAML2Utils.bundle.getString(
H A DActionImpl.java75 SAML2SDKUtils.bundle.getString("nullInput"));
83 SAML2SDKUtils.bundle.getString("wrongInput"));
100 SAML2SDKUtils.bundle.getString("missingAttribute"));
115 SAML2SDKUtils.bundle.getString("wrongInput"));
127 SAML2SDKUtils.bundle.getString("missingElementValue"));
159 SAML2SDKUtils.bundle.getString("errorObtainingElement"));
202 SAML2SDKUtils.bundle.getString("objectImmutable"));
229 SAML2SDKUtils.bundle.getString("objectImmutable"));
267 SAML2SDKUtils.bundle.getString("emptyElementValue"));
276 SAML2SDKUtils.bundle
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAssertionIDRefImpl.java88 throw new SAML2Exception(SAML2Utils.bundle.getString(
115 throw new SAML2Exception(SAML2Utils.bundle.getString(
167 throw new SAML2Exception(SAML2Utils.bundle.getString(
190 throw new SAML2Exception(SAML2Utils.bundle.getString(
198 throw new SAML2Exception(SAML2Utils.bundle.getString("wrongInput"));
212 throw new SAML2Exception(SAML2Utils.bundle.getString(
224 throw new SAML2Exception(SAML2Utils.bundle.getString(

Completed in 38 milliseconds

1234567891011>>