Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*********************************************************************************
* *
* The MIT License (MIT) *
* *
* Copyright (c) 2015-2022 aoju.org Greg Messner and other contributors. *
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy *
* of this software and associated documentation files (the "Software"), to deal *
* in the Software without restriction, including without limitation the rights *
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell *
* copies of the Software, and to permit persons to whom the Software is *
* furnished to do so, subject to the following conditions: *
* *
* The above copyright notice and this permission notice shall be included in *
* all copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, *
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN *
* THE SOFTWARE. *
* *
********************************************************************************/
package org.aoju.bus.gitlab;
import org.aoju.bus.gitlab.models.Namespace;
import javax.ws.rs.core.GenericType;
import javax.ws.rs.core.Response;
import java.util.List;
import java.util.stream.Stream;
/**
* This class implements the client side API for the GitLab namespace calls.
*/
public class NamespaceApi extends AbstractApi {
public NamespaceApi(GitLabApi gitLabApi) {
super(gitLabApi);
}
/**
* Get a list of the namespaces of the authenticated user. If the user is an administrator,
* a list of all namespaces in the GitLab instance is created.
*
*
GitLab Endpoint: GET /namespaces
*
* @return a List of Namespace instances
* @throws GitLabApiException if any exception occurs
*/
public List getNamespaces() throws GitLabApiException {
return (getNamespaces(getDefaultPerPage()).all());
}
/**
* Get a list of the namespaces of the authenticated user. If the user is an administrator,
* a list of all namespaces in the GitLab instance is returned.
*
*
GitLab Endpoint: GET /namespaces
*
* @param page the page to get
* @param perPage the number of Namespace instances per page
* @return a List of Namespace instances in the specified page range
* @throws GitLabApiException if any exception occurs
*/
public List getNamespaces(int page, int perPage) throws GitLabApiException {
Response response = get(Response.Status.OK, getPageQueryParams(page, perPage), "namespaces");
return (response.readEntity(new GenericType>() {
}));
}
/**
* Get a Pager of the namespaces of the authenticated user. If the user is an administrator,
* a Pager of all namespaces in the GitLab instance is returned.
*
*
GitLab Endpoint: GET /namespaces
*
* @param itemsPerPage the number of Project instances that will be fetched per page
* @return a Pager of Namespace instances
* @throws GitLabApiException if any exception occurs
*/
public Pager getNamespaces(int itemsPerPage) throws GitLabApiException {
return (new Pager(this, Namespace.class, itemsPerPage, null, "namespaces"));
}
/**
* Get a Stream of the namespaces of the authenticated user. If the user is an administrator,
* a Stream of all namespaces in the GitLab instance is returned.
*
*
GitLab Endpoint: GET /namespaces
*
* @return a Stream of Namespace instances
* @throws GitLabApiException if any exception occurs
*/
public Stream getNamespacesStream() throws GitLabApiException {
return (getNamespaces(getDefaultPerPage()).stream());
}
/**
* Get all namespaces that match a string in their name or path.
*
*
GitLab Endpoint: GET /namespaces?search=:query
*
* @param query the search string
* @return the Namespace List with the matching namespaces
* @throws GitLabApiException if any exception occurs
*/
public List findNamespaces(String query) throws GitLabApiException {
return (findNamespaces(query, getDefaultPerPage()).all());
}
/**
* Get all namespaces that match a string in their name or path in the specified page range.
*
*
GitLab Endpoint: GET /namespaces?search=:query
*
* @param query the search string
* @param page the page to get
* @param perPage the number of Namespace instances per page
* @return the Namespace List with the matching namespaces
* @throws GitLabApiException if any exception occurs
*/
public List findNamespaces(String query, int page, int perPage) throws GitLabApiException {
GitLabApiForm formData = new GitLabApiForm().withParam("search", query, true).withParam(PAGE_PARAM, page).withParam(PER_PAGE_PARAM, perPage);
Response response = get(Response.Status.OK, formData.asMap(), "namespaces");
return (response.readEntity(new GenericType>() {
}));
}
/**
* Get a Pager of all namespaces that match a string in their name or path.
*
*
GitLab Endpoint: GET /namespaces?search=:query
*
* @param query the search string
* @param itemsPerPage the number of Project instances that will be fetched per page
* @return a Pager of Namespace instances with the matching namespaces
* @throws GitLabApiException if any exception occurs
*/
public Pager findNamespaces(String query, int itemsPerPage) throws GitLabApiException {
GitLabApiForm formData = new GitLabApiForm().withParam("search", query, true);
return (new Pager(this, Namespace.class, itemsPerPage, formData.asMap(), "namespaces"));
}
/**
* Get all namespaces that match a string in their name or path as a Stream.
*
*
GitLab Endpoint: GET /namespaces?search=:query
*
* @param query the search string
* @return a Stream with the matching namespaces
* @throws GitLabApiException if any exception occurs
*/
public Stream findNamespacesStream(String query) throws GitLabApiException {
return (findNamespaces(query, getDefaultPerPage()).stream());
}
}