Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/github/internal/LabelService.java')
-rw-r--r--org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/github/internal/LabelService.java59
1 files changed, 59 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/github/internal/LabelService.java b/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/github/internal/LabelService.java
new file mode 100644
index 00000000..6740b661
--- /dev/null
+++ b/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/github/internal/LabelService.java
@@ -0,0 +1,59 @@
+/*******************************************************************************
+ * Copyright (c) 2011 GitHub Inc.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Kevin Sawicki (GitHub Inc.) - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.mylyn.github.internal;
+
+import com.google.gson.reflect.TypeToken;
+
+import java.io.IOException;
+import java.util.List;
+
+import org.eclipse.core.runtime.Assert;
+
+/**
+ * Label service class for listing {@link Label} objects in use for a given user
+ * and repository.
+ *
+ * @author Kevin Sawicki (kevin@github.com)
+ */
+public class LabelService {
+
+ private GitHubClient client;
+
+ /**
+ * Create label service for client
+ *
+ * @param client
+ */
+ public LabelService(GitHubClient client) {
+ Assert.isNotNull(client, "Client cannot be null"); //$NON-NLS-1$
+ this.client = client;
+ }
+
+ /**
+ * Get labels
+ *
+ * @param user
+ * @param repository
+ * @return list of labels
+ * @throws IOException
+ */
+ public List<Label> getLabels(String user, String repository)
+ throws IOException {
+ StringBuilder uri = new StringBuilder(IGitHubConstants.SEGMENT_REPOS);
+ uri.append('/').append(user).append('/').append(repository);
+ uri.append(IGitHubConstants.SEGMENT_LABELS).append(
+ IGitHubConstants.SUFFIX_JSON);
+ TypeToken<List<Label>> labelToken = new TypeToken<List<Label>>() {
+ };
+ return this.client.get(uri.toString(), labelToken.getType());
+ }
+
+}

Back to the top