package org.gitlab4j.api; import java.util.List; import javax.ws.rs.core.GenericType; import javax.ws.rs.core.Response; import org.gitlab4j.api.models.Label; public class LabelsApi extends AbstractApi { public LabelsApi(GitLabApi gitLabApi) { super(gitLabApi); } /** * Get all labels of the specified project. Only returns the first page * * @param projectId the project ID to get the labels for * @return a list of project's labels * @throws GitLabApiException if any exception occurs */ public List