All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.huawei.openstack4j.openstack.message.queue.internal.QueueService Maven / Gradle / Ivy

/*******************************************************************************
 * 	Copyright 2017 Huawei Technologies Co., Ltd.
 * 	                                                                                 
 * 	Licensed under the Apache License, Version 2.0 (the "License"); you may not      
 * 	use this file except in compliance with the License. You may obtain a copy of    
 * 	the License at                                                                   
 * 	                                                                                 
 * 	    http://www.apache.org/licenses/LICENSE-2.0                                   
 * 	                                                                                 
 * 	Unless required by applicable law or agreed to in writing, software              
 * 	distributed under the License is distributed on an "AS IS" BASIS, WITHOUT        
 * 	WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the         
 * 	License for the specific language governing permissions and limitations under    
 * 	the License.                                                                     
 *******************************************************************************/
package com.huawei.openstack4j.openstack.message.queue.internal;

import static com.google.common.base.Preconditions.*;

import java.util.List;

import com.huawei.openstack4j.common.RestService;
import com.huawei.openstack4j.model.common.ActionResponse;
import com.huawei.openstack4j.openstack.message.queue.domain.Queue;
import com.huawei.openstack4j.openstack.message.queue.domain.Queue.Queues;

/**
 * 

[DMS] Queue Service

* queue operations * * @author QianBiao.NG * @date 2017-07-17 09:35:34 */ public class QueueService extends BaseMessageQueueServices implements RestService { /** * create a new queue * * @param name queue-name * @param description queue-display-name * @return {@link Queue} instance been created */ public Queue create(String name, String description) { checkNotNull(name, "parameter `name` should not be empty"); Queue create = Queue.builder().name(name).description(description).build(); return post(Queue.class, uri("/queues")).entity(create).execute(); } /** * list queues * * @return A list of {@link Queue} instances */ public List list() { return get(Queues.class, uri("/queues")).execute().getList(); } /** * get a queue by ID * * @param queueId queue id * @return {@link Queue} instance */ public Queue get(String queueId) { checkNotNull(queueId, "parameter `queueId` should not be empty"); return get(Queue.class, "/queues/", queueId).execute(); } /** * delete a queue * * @param queueId the ID of the queue to be deleted * @return {@link ActionResponse} instance */ public ActionResponse delete(String queueId) { checkNotNull(queueId, "parameter `queueId` should not be empty"); return delete(ActionResponse.class, uri("/queues/%s", queueId)).execute(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy