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

com.huawei.openstack4j.openstack.gbp.internal.L3policyServiceImpl Maven / Gradle / Ivy

There is a newer version: 1.0.26
Show newest version
/*******************************************************************************
 * 	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.gbp.internal;

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

import java.util.List;
import java.util.Map;

import com.huawei.openstack4j.api.gbp.L3policyService;
import com.huawei.openstack4j.model.common.ActionResponse;
import com.huawei.openstack4j.model.gbp.L3Policy;
import com.huawei.openstack4j.openstack.gbp.domain.GbpL3Policy;
import com.huawei.openstack4j.openstack.gbp.domain.GbpL3Policy.L3Policies;
import com.huawei.openstack4j.openstack.networking.internal.BaseNetworkingServices;
/**
 * L3 Policy API Implementation
 * 
 * @author vinod borole
 */
public class L3policyServiceImpl extends BaseNetworkingServices implements L3policyService {

    /**
     * {@inheritDoc}
     */
    @Override 
    public List list() {
        return get(L3Policies.class, uri("/grouppolicy/l3_policies")).execute().getList();
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public List list(Map filteringParams) {
        Invocation l3PoliciesInvocation = buildInvocation(filteringParams);
        return l3PoliciesInvocation.execute().getList();
    }
    private Invocation buildInvocation(Map filteringParams) {
        Invocation l3PoliciesInvocation = get(L3Policies.class, "/grouppolicy/l3_policies");
        if (filteringParams == null) { 
            return l3PoliciesInvocation;
        } 
        if (filteringParams != null) {
            for (Map.Entry entry : filteringParams.entrySet()) {
                l3PoliciesInvocation = l3PoliciesInvocation.param(entry.getKey(), entry.getValue());
            }
        }
        return l3PoliciesInvocation;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public L3Policy get(String id) {
        checkNotNull(id);
        return get(GbpL3Policy.class, uri("/grouppolicy/l3_policies/%s", id)).execute();
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public ActionResponse delete(String id) {
        checkNotNull(id);
        return deleteWithResponse(uri("/grouppolicy/l3_policies/%s", id)).execute();
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public L3Policy create(L3Policy l3Policy) {
        return post(GbpL3Policy.class, uri("/grouppolicy/l3_policies")).entity(l3Policy).execute();
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public L3Policy update(String l3PolicyId, L3Policy l3Policy) {
        checkNotNull(l3PolicyId);
        checkNotNull(l3Policy);
        return put(GbpL3Policy.class, uri("/grouppolicy/l3_policies/%s", l3PolicyId)).entity(l3Policy).execute();
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy