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

com.huawei.openstack4j.openstack.compute.internal.ComputeSecurityGroupServiceImpl Maven / Gradle / Ivy

/*******************************************************************************
 * 	Copyright 2016 ContainX and OpenStack4j                                          
 * 	                                                                                 
 * 	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.compute.internal;

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

import java.util.List;

import com.huawei.openstack4j.api.compute.ComputeSecurityGroupService;
import com.huawei.openstack4j.model.common.ActionResponse;
import com.huawei.openstack4j.model.compute.SecGroupExtension;
import com.huawei.openstack4j.model.compute.SecGroupExtension.Rule;
import com.huawei.openstack4j.openstack.compute.domain.NovaSecGroupExtension;
import com.huawei.openstack4j.openstack.compute.domain.NovaSecGroupExtension.SecurityGroupRule;
import com.huawei.openstack4j.openstack.compute.domain.NovaSecGroupExtension.SecurityGroups;

/**
 * Provides operations against the Security Group extension in OpenStack
 * 
 * Extension Mapping: (os-security-groups)
 * 
 * @author Jeremy Unruh
 */
public class ComputeSecurityGroupServiceImpl extends BaseComputeServices implements ComputeSecurityGroupService {

	/**
	 * {@inheritDoc}
	 */
	@Override
	public List list() {
		return get(SecurityGroups.class, uri("/os-security-groups")).execute().getList();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public List listServerGroups(String serverId) {
		checkNotNull(serverId);
		return get(SecurityGroups.class, uri("/servers/%s/os-security-groups", serverId)).execute().getList();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public SecGroupExtension get(String securityGroupId) {
		checkNotNull(securityGroupId);
		return get(NovaSecGroupExtension.class, uri("/os-security-groups/%s", securityGroupId)).execute();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public ActionResponse delete(String securityGroupId) {
		checkNotNull(securityGroupId);
		return deleteWithResponse(uri("/os-security-groups/%s", securityGroupId)).execute();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public SecGroupExtension create(String name, String description) {
//		checkNotNull(name);
		return post(NovaSecGroupExtension.class, uri("/os-security-groups"))
				     .entity(NovaSecGroupExtension.create(name, description))
				     .execute();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public SecGroupExtension update(String securityGroupId, String name, String description) {
		checkNotNull(securityGroupId);
		checkNotNull(name);
		return put(NovaSecGroupExtension.class, uri("/os-security-groups/%s", securityGroupId))
		     .entity(NovaSecGroupExtension.create(name, description))
		     .execute();
		}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public Rule createRule(Rule rule) {
		checkNotNull(rule);
		return post(SecurityGroupRule.class, uri("/os-security-group-rules")).entity(rule).execute();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public ActionResponse deleteRule(String ruleId) {
		checkNotNull(ruleId);
		return deleteWithResponse(uri("/os-security-group-rules/%s", ruleId)).execute();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy