Class DelegatingImageExtension
java.lang.Object
org.jclouds.compute.extensions.internal.DelegatingImageExtension
- All Implemented Interfaces:
ImageExtension
Delegates to the provider specific
ImageExtension
and takes care of
propagating the changes made to the images to the image cache.-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionbuildImageTemplateFromNode
(String name, String id) Build an ImageTemplate from a running node, to use later to create a newImage
.com.google.common.util.concurrent.ListenableFuture
<Image> createImage
(ImageTemplate template) Transform theImageTemplate
on anImage
that can be used to create nodes.boolean
deleteImage
(String id) Delete anImage
on the provider.
-
Field Details
-
logger
-
-
Method Details
-
buildImageTemplateFromNode
Description copied from interface:ImageExtension
Build an ImageTemplate from a running node, to use later to create a newImage
.- Specified by:
buildImageTemplateFromNode
in interfaceImageExtension
- Parameters:
name
- name to give the new imageid
- node to base the template on- Returns:
- an image template that can be used to create a new image
-
createImage
public com.google.common.util.concurrent.ListenableFuture<Image> createImage(ImageTemplate template) Description copied from interface:ImageExtension
Transform theImageTemplate
on anImage
that can be used to create nodes.- Specified by:
createImage
in interfaceImageExtension
- Parameters:
template
- template to base the new image on- Returns:
- the image that was just built *after* it is registered on the provider
-
deleteImage
Description copied from interface:ImageExtension
Delete anImage
on the provider.- Specified by:
deleteImage
in interfaceImageExtension
- Parameters:
id
- the id of the image to delete- Returns:
-