Package com.atlassian.jira.rpc.soap.client

Examples of com.atlassian.jira.rpc.soap.client.JiraSoapServiceServiceLocator


* class to represent SOAP session with a JIRA
*/
public class JiraSoapServiceFactory {

    public static JiraSoapService getJiraSoapService(URL url) {
        JiraSoapServiceService serviceLocator = new JiraSoapServiceServiceLocator();
        try {
            return (url != null) ?
                    serviceLocator.getJirasoapserviceV2(url) :
                    serviceLocator.getJirasoapserviceV2();
        } catch (ServiceException e) {
            throw new RuntimeException("Unable to construct SOAP client to " + url, e);
        }
    }
View Full Code Here

TOP

Related Classes of com.atlassian.jira.rpc.soap.client.JiraSoapServiceServiceLocator

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.