119120121122123124125126127128129
authenticatedScope.push(); try { filterChain.doFilter(servletRequest, servletResponse); } finally { authenticatedScope.pop(); } } @Override public void destroy() {
7677787980818283848586
188189190191192193194195196197198
scope.put(ProjectAuthorization.class, activeJob.getProjectAuthorization()); try { scope.push(); return doOperation(); } finally { scope.pop(); } } public ActiveJobExecution getActiveJob() { return activeJob;
96979899100101102103104105106
Utils.safeClose(opsContext); } catch (Exception e) { log.error("Error while closing OpsContext"); } scope.pop(); } } public Configuration getConfiguration() { return getOpsSystem().getConfiguration();