Searched refs:getConnection (Results 1 - 25 of 272) sorted by relevance

1234567891011

/forgerock/openidm-v4/openidm-router/src/test/java/org/forgerock/openidm/router/
H A DIDMConnectionFactoryWrapper.java35 return getConnection();
49 public Connection getConnection() throws ResourceException { method in class:IDMConnectionFactoryWrapper
50 return connectionFactory.getConnection();
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/ldap/
H A DCTSDataLayer.java67 public Connection getConnection() { method in class:CTSDataLayer
68 return sharedSMDataLayer.getConnection();
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/ldap/
H A DCTSDataLayer.java67 public Connection getConnection() { method in class:CTSDataLayer
68 return sharedSMDataLayer.getConnection();
/forgerock/openam-v13/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/
H A DOpenAMHttpURLConnectionFactory.java31 return HttpURLConnectionManager.getConnection(url);
/forgerock/openam/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/
H A DOpenAMHttpURLConnectionFactory.java31 return HttpURLConnectionManager.getConnection(url);
/forgerock/openidm-v4/openidm-repo-jdbc/src/test/java/org/forgerock/openidm/repo/jdbc/internal/
H A DDBUnitUtils.java54 public IDatabaseConnection getConnection() throws Exception { method in class:DBUnitUtils
57 connection = new DatabaseConnection(DriverManager.getConnection("jdbc:hsqldb:mem:openidmtestdb"));
85 DatabaseOperation.INSERT.execute(getConnection(), ds);
89 DatabaseOperation.CLEAN_INSERT.execute(getConnection(), ds);
93 DatabaseOperation.UPDATE.execute(getConnection(), ds);
97 DatabaseOperation.DELETE.execute(getConnection(), ds);
101 DatabaseOperation.DELETE_ALL.execute(getConnection(), ds);
122 Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/openidm", "root", "");
H A DJDBCRepoServiceTest.java50 DatabaseOperation.CLEAN_INSERT.execute(utils.getConnection(), ds);
60 DatabaseOperation.DELETE_ALL.execute(utils.getConnection(), ds);
/forgerock/openidm-v4/openidm-workflow-activiti/src/main/java/org/forgerock/openidm/workflow/activiti/impl/
H A DSharedIdentityService.java99 private Connection getConnection() throws ResourceException { method in class:SharedIdentityService
100 return connectionFactory.getConnection();
104 return getConnection().query(context, request, handler);
109 return getConnection().query(context, request, result);
137 getConnection().update(context, request);
140 getConnection().create(context, request);
163 getConnection().delete(context, request);
202 getConnection().update(context, request);
205 getConnection().create(context, request);
222 getConnection()
[all...]
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/datasource/jdbc/impl/
H A DNonPoolingDataSourceFactory.java75 public Connection getConnection() throws SQLException {
76 return DriverManager.getConnection(config.getJdbcUrl(), properties);
80 public Connection getConnection(String username, String password) throws SQLException {
81 return DriverManager.getConnection(config.getJdbcUrl(), username, password);
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/
H A DElevatedConnectionFactoryWrapper.java56 public Connection getConnection() throws ResourceException { method in class:ElevatedConnectionFactoryWrapper
57 Connection connection = connectionFactory.getConnection();
65 return newResultPromise(getConnection());
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/
H A DElevatedConnectionFactoryWrapper.java61 public Connection getConnection() throws ResourceException { method in class:ElevatedConnectionFactoryWrapper
62 Connection connection = connectionFactory.getConnection();
70 return newResultPromise(getConnection());
/forgerock/opendj-v3/opendj-server/src/main/java/org/forgerock/opendj/server/core/
H A DOperation.java78 Connection getConnection(); method in interface:Operation
/forgerock/openidm-v4/custom-scripted-connector-bundler/src/main/resources/
H A DScriptedSQLConnector.template53 .getDataSource().getConnection();
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/forgerock/opendj/adapter/server3x/
H A DAdaptersTestCase.java233 connection = factory.getConnection();
255 Connection connection = factory.getConnection();
296 final Connection connection = factory.getConnection();
398 final Connection connection = factory.getConnection();
480 final Connection connection = factory.getConnection();
500 final Connection connection = factory.getConnection();
520 final Connection connection = factory.getConnection();
547 final Connection connection = factory.getConnection();
579 final Connection connection = factory.getConnection();
599 final Connection connection = factory.getConnection();
[all...]
/forgerock/openidm-v4/openidm-router/src/main/java/org/forgerock/openidm/router/impl/
H A DJsonResourceRouterService.java66 * As a traditional {@link ConnectionFactory}, the {@link ConnectionFactory#getConnection()}
124 public Connection getConnection() throws ResourceException { method in class:JsonResourceRouterService
125 return internal.getConnection();
146 public Connection getConnection() throws ResourceException {
147 return new AbstractConnectionWrapper<Connection>(connectionFactory.getConnection()) {
158 return Promises.newResultPromise(getConnection());
171 return connectionFactory.getConnection();
/forgerock/openidm-v4/openidm-audit/src/main/java/org/forgerock/openidm/audit/impl/
H A DRouterAuditEventHandler.java89 return newResultPromise(connectionFactory.getConnection().create(new AuditingContext(context),
103 return newResultPromise(connectionFactory.getConnection().read(new AuditingContext(context),
118 connectionFactory.getConnection().query(new AuditingContext(context), newRequest,
/forgerock/openam-v13/openam-rest/src/test/java/org/forgerock/openam/rest/
H A DElevatedConnectionFactoryWrapperTest.java80 given(internalConnectionFactory.getConnection()).willReturn(connection);
86 try (Connection connection = connectionFactory.getConnection()) {
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/rest/
H A DRestCommand.java69 HttpURLConnection conn = HttpURLConnectionManager.getConnection(url);
72 conn = HttpURLConnectionManager.getConnection(url);
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/rest/
H A DRestCommand.java69 HttpURLConnection conn = HttpURLConnectionManager.getConnection(url);
72 conn = HttpURLConnectionManager.getConnection(url);
/forgerock/openidm-v4/openidm-authnfilter/src/main/java/org/forgerock/openidm/auth/
H A DPassthroughAuthenticator.java68 final ActionResponse result = connectionFactory.getConnection().action(context,
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/managed/
H A DRelationshipValidator.java93 validateSuccessfulReadResponse(relationshipField, relationshipProvider.getConnection()
/forgerock/openidm-v4/openidm-maintenance/src/main/java/org/forgerock/openidm/maintenance/impl/
H A DUpdateLogServiceImpl.java127 QueryResponse result = connectionFactory.getConnection().query(
148 return connectionFactory.getConnection().read(context, newRequest).asPromise();
167 ResourceResponse response = connectionFactory.getConnection().create(ContextUtil.createInternalContext(),
177 connectionFactory.getConnection().update(ContextUtil.createInternalContext(),
/forgerock/openidm-v4/openidm-provisioner-openicf/src/main/java/org/forgerock/openidm/provisioner/openicf/syncfailure/
H A DDeadLetterQueueHandler.java73 connectionFactory.getConnection().create(context, request);
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/resources/labels/
H A DUmaLabelsStore.java93 try (Connection connection = getConnection()) {
99 try (Connection connection = getConnection()) {
154 try (Connection connection = getConnection()) {
182 try (Connection connection = getConnection()) {
207 try (Connection connection = getConnection()) {
257 try (Connection connection = getConnection()) {
302 private Connection getConnection() throws InternalServerErrorException { method in class:UmaLabelsStore
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/resources/labels/
H A DUmaLabelsStore.java93 try (Connection connection = getConnection()) {
99 try (Connection connection = getConnection()) {
154 try (Connection connection = getConnection()) {
182 try (Connection connection = getConnection()) {
207 try (Connection connection = getConnection()) {
257 try (Connection connection = getConnection()) {
302 private Connection getConnection() throws InternalServerErrorException { method in class:UmaLabelsStore

Completed in 166 milliseconds

1234567891011