public class JsonNodeMetadataStore extends Object implements NodeMetadataStore
NodeMetadataStore that stores all that is needed by building a json
string.| Constructor and Description |
|---|
JsonNodeMetadataStore(com.google.common.base.Supplier<Map<String,InputStream>> storage,
Json json) |
| Modifier and Type | Method and Description |
|---|---|
void |
deleteAllMappings()
Clears all mappings.
|
void |
deleteMapping(String backendNodeId)
Removes the mapping from storage.
|
NodeMetadata |
load(NodeMetadata backendNodeMetadata)
Loads the previously stored user
NodeMetadata corresponding to the provided backend
NodeMetadata. |
Set<NodeMetadata> |
loadAll(Set<NodeMetadata> backendNodes)
Loads frontend
NodeMetadata for all provided backend nodes. |
NodeMetadata |
store(NodeMetadata backendNodeMetadata,
TemplateOptions userOptions,
String userGroup)
Associates the provided user options and group with the provided backend
NodeMetadata,
then build a frontend version of node metadata that has some fields from the backend node such
as id, name or location, and some fields from the provided userOptions, such as userMetadata
or tags. |
@Inject
public JsonNodeMetadataStore(@Named(value="METADATA")
com.google.common.base.Supplier<Map<String,InputStream>> storage,
Json json)
public NodeMetadata store(NodeMetadata backendNodeMetadata, TemplateOptions userOptions, String userGroup)
NodeMetadataStoreNodeMetadata,
then build a frontend version of node metadata that has some fields from the backend node such
as id, name or location, and some fields from the provided userOptions, such as userMetadata
or tags.store in interface NodeMetadataStorebackendNodeMetadata - the backend node's NodeMetadatauserOptions - the user provided optionsuserGroup - the user selected grouppublic NodeMetadata load(NodeMetadata backendNodeMetadata)
NodeMetadataStoreNodeMetadata corresponding to the provided backend
NodeMetadata.load in interface NodeMetadataStoreNodeMetadata or null of this backend node has no mappingpublic Set<NodeMetadata> loadAll(Set<NodeMetadata> backendNodes)
NodeMetadataStoreNodeMetadata for all provided backend nodes.loadAll in interface NodeMetadataStorepublic void deleteAllMappings()
NodeMetadataStoredeleteAllMappings in interface NodeMetadataStorepublic void deleteMapping(String backendNodeId)
NodeMetadataStoredeleteMapping in interface NodeMetadataStoreCopyright © 2009-2013 jclouds. All Rights Reserved.