com.huawei.openstack4j.api.gbp.L2policyService 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.api.gbp;
import java.util.List;
import java.util.Map;
import com.huawei.openstack4j.model.common.ActionResponse;
import com.huawei.openstack4j.model.gbp.L2Policy;
/**
* This interface defines all methods for the manipulation of l2policy
*
* @author vinod borole
*
*/
public interface L2policyService{
/**
* List all l2 policies
*
* @return List of l2 policies
*/
List extends L2Policy> list();
/**
* Returns list of l2 policies filtered by parameters.
*
* @param filteringParams map (name, value) of filtering parameters
* @return
*/
List extends L2Policy> list(Map filteringParams);
/**
* Get the specified l2 policy by ID
*
* @param id the l2 policy id
* @return l2 policy or null if not found
*/
L2Policy get(String id);
/**
* Delete of the l2 policy
* @param id the l2 policy id
* @return the action response
*/
ActionResponse delete(String id);
/**
* Create a new l2 policy
*
* @param l2 policy
* @return the newly created l2 policy
*/
L2Policy create(L2Policy l2Policy);
/**
* Updates an existing l2 policy
*
* @param l2 policy identifier
* @param l2 policy that is be used to updated
* @return the updated l2 policy
*/
L2Policy update(String l2PolicyId,L2Policy l2Policy);
}