Class VnfdServiceImpl
- java.lang.Object
-
- org.openstack4j.openstack.internal.BaseOpenStackService
-
- org.openstack4j.openstack.tacker.internal.BaseTackerServices
-
- org.openstack4j.openstack.tacker.internal.VnfdServiceImpl
-
- All Implemented Interfaces:
VnfdService,RestService
public class VnfdServiceImpl extends BaseTackerServices implements VnfdService
- Author:
- Vishvesh Deshmukh
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.openstack4j.openstack.internal.BaseOpenStackService
BaseOpenStackService.Invocation<R>
-
-
Constructor Summary
Constructors Constructor Description VnfdServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Vnfdcreate(Vnfd vnfd)Create vnfd - Create a vnfd entry based on the vnfd template.ActionResponsedelete(String vnfdId)Delete vnfd - Deletes a specified vnfdId from the VNF catalog.TackerVnfdget(String vnfdId)Show vnfd - Show information for a specified vnfdId.List<? extends TackerVnfd>list()List vnfs - Lists instantiated vnfs in VNF ManagerList<? extends TackerVnfd>list(Map<String,String> filteringParams)List vnfs - Lists instantiated vnfs in VNF Manager filtered by parameters.-
Methods inherited from class org.openstack4j.openstack.internal.BaseOpenStackService
delete, deleteWithResponse, get, getProvider, getServiceVersion, getWithResponse, getXOpenstackRequestId, head, patch, patchWithResponse, post, postWithResponse, put, putWithResponse, request, toList, uri
-
-
-
-
Method Detail
-
list
public List<? extends TackerVnfd> list()
List vnfs - Lists instantiated vnfs in VNF Manager- Specified by:
listin interfaceVnfdService- Returns:
- list of all Vnfd(s)
-
list
public List<? extends TackerVnfd> list(Map<String,String> filteringParams)
List vnfs - Lists instantiated vnfs in VNF Manager filtered by parameters.- Specified by:
listin interfaceVnfdService- Parameters:
filteringParams- map (name, value) of filtering parameters- Returns:
- filtered list of Vnfd(s)
-
get
public TackerVnfd get(String vnfdId)
Show vnfd - Show information for a specified vnfdId.- Specified by:
getin interfaceVnfdService- Parameters:
vnfdId- the Vnfd identifier- Returns:
- the Vnfd or null if not found
-
delete
public ActionResponse delete(String vnfdId)
Delete vnfd - Deletes a specified vnfdId from the VNF catalog.- Specified by:
deletein interfaceVnfdService- Parameters:
vnfdId- the Vnfd identifier- Returns:
- the action response
-
create
public Vnfd create(Vnfd vnfd)
Description copied from interface:VnfdServiceCreate vnfd - Create a vnfd entry based on the vnfd template.- Specified by:
createin interfaceVnfdService- Returns:
- Vnfd
-
-