Package org.rhq.plugins.jira.soapclient.jira

Examples of org.rhq.plugins.jira.soapclient.jira.RemoteProject


        JiraClient client = context.getParentResourceComponent().getClient();

        Map<String, RemoteProject> projectMap = client.getProjectMap();
        for (String key : projectMap.keySet()) {
            RemoteProject project = projectMap.get(key);

            Configuration c = new Configuration();
            c.put( new PropertySimple("projectKey", key));
            c.put( new PropertySimple("projectId", project.getId()));
            DiscoveredResourceDetails detail =
                    new DiscoveredResourceDetails(
                            context.getResourceType(),
                            project.getKey(),
                            project.getName(),
                            null,
                            project.getDescription(),
                            c,
                            null);

            details.add(detail);
View Full Code Here

TOP

Related Classes of org.rhq.plugins.jira.soapclient.jira.RemoteProject

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.