Package org.openengsb.connector.userprojects.jira.internal.jira

Examples of org.openengsb.connector.userprojects.jira.internal.jira.JiraClient


            public void run() {
                String oldContext = ContextHolder.get().getCurrentContextId();
                ContextHolder.get().setCurrentContextId("userprojects-jira");
                try {
                    LOG.info("Trying to authenticate to the JIRA server on {}", new Object[] { ServerConfig.uri });
                    JiraClient jiraClient = JiraClientFactory.create();
                    synchronizationService.syncFromJiraServerToOpenEngSB(jiraClient);
                } catch (Exception e) {
                    LOG.error("Could not sync from JIRA server to OpenEngSB", e);
                }
                ContextHolder.get().setCurrentContextId(oldContext);
View Full Code Here

TOP

Related Classes of org.openengsb.connector.userprojects.jira.internal.jira.JiraClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.