Use try with resource
This commit is contained in:
parent
10ff5787f0
commit
db3de0d933
2 changed files with 3 additions and 5 deletions
|
@ -28,7 +28,7 @@ import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
|
||||||
public class ScimClient {
|
public class ScimClient implements AutoCloseable {
|
||||||
|
|
||||||
private static final Logger LOGGER = Logger.getLogger(ScimClient.class);
|
private static final Logger LOGGER = Logger.getLogger(ScimClient.class);
|
||||||
|
|
||||||
|
@ -299,6 +299,7 @@ public class ScimClient {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public void close() {
|
public void close() {
|
||||||
scimRequestBuilder.close();
|
scimRequestBuilder.close();
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,13 +33,10 @@ public class ScimDispatcher {
|
||||||
|
|
||||||
public void runOne(ComponentModel m, Consumer<ScimClient> f) {
|
public void runOne(ComponentModel m, Consumer<ScimClient> f) {
|
||||||
LOGGER.infof("%s %s %s %s", m.getId(), m.getName(), m.getProviderId(), m.getProviderType());
|
LOGGER.infof("%s %s %s %s", m.getId(), m.getName(), m.getProviderId(), m.getProviderType());
|
||||||
ScimClient client = ScimClient.newScimClient(m, session);
|
try (ScimClient client = ScimClient.newScimClient(m, session)) {
|
||||||
try {
|
|
||||||
f.accept(client);
|
f.accept(client);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LOGGER.error(e);
|
LOGGER.error(e);
|
||||||
} finally {
|
|
||||||
client.close();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue