Examples of JiraSoapServiceService


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

* 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
Copyright © 2018 www.massapi.com. 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.