org.jclouds.compute.domain.internal
Class NodeMetadataImpl

java.lang.Object
  extended by org.jclouds.domain.internal.ResourceMetadataImpl<ComputeType>
      extended by org.jclouds.compute.domain.internal.ComputeMetadataImpl
          extended by org.jclouds.compute.domain.internal.NodeMetadataImpl
All Implemented Interfaces:
Comparable<org.jclouds.domain.ResourceMetadata<ComputeType>>, ComputeMetadata, ComputeMetadataIncludingStatus<NodeMetadata.Status>, NodeMetadata, org.jclouds.domain.ResourceMetadata<ComputeType>

public class NodeMetadataImpl
extends ComputeMetadataImpl
implements NodeMetadata


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.jclouds.compute.domain.NodeMetadata
NodeMetadata.Status
 
Field Summary
 
Fields inherited from class org.jclouds.compute.domain.internal.ComputeMetadataImpl
tags
 
Constructor Summary
NodeMetadataImpl(String providerId, String name, String id, org.jclouds.domain.Location location, URI uri, Map<String,String> userMetadata, Set<String> tags, String group, Hardware hardware, String imageId, OperatingSystem os, NodeMetadata.Status status, String backendStatus, int loginPort, Iterable<String> publicAddresses, Iterable<String> privateAddresses, org.jclouds.domain.LoginCredentials credentials, String hostname)
           
 
Method Summary
 String getBackendStatus()
          status of the resource, as supplied literally from the backend api.
 org.jclouds.domain.LoginCredentials getCredentials()
          If possible, these are returned upon all detail requests.
 String getGroup()
          Tag used for all resources that belong to the same logical group.
 Hardware getHardware()
          The hardware this node is running, if possible to determine.
 String getHostname()
          note
 String getImageId()
          The id of the image this node was created from, if possible to correlate.
 int getLoginPort()
          
 OperatingSystem getOperatingSystem()
          The operating system this node is running, if possible to determine.
 Set<String> getPrivateAddresses()
          All private IP addresses.
 Set<String> getPublicAddresses()
          All public IP addresses, potentially including shared ips.
 NodeMetadata.Status getStatus()
          portable status of the resource
protected  com.google.common.base.Objects.ToStringHelper string()
           
 
Methods inherited from class org.jclouds.compute.domain.internal.ComputeMetadataImpl
addComputeToStringSuffix, compareTo, computeToStringPrefix, equals, getId, getTags, getType, hashCode
 
Methods inherited from class org.jclouds.domain.internal.ResourceMetadataImpl
getLocation, getName, getProviderId, getUri, getUserMetadata, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.jclouds.compute.domain.ComputeMetadata
getId, getName, getProviderId, getTags, getType
 
Methods inherited from interface org.jclouds.domain.ResourceMetadata
getLocation, getUri, getUserMetadata
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Constructor Detail

NodeMetadataImpl

public NodeMetadataImpl(String providerId,
                        String name,
                        String id,
                        org.jclouds.domain.Location location,
                        URI uri,
                        Map<String,String> userMetadata,
                        Set<String> tags,
                        @Nullable
                        String group,
                        @Nullable
                        Hardware hardware,
                        @Nullable
                        String imageId,
                        @Nullable
                        OperatingSystem os,
                        NodeMetadata.Status status,
                        @Nullable
                        String backendStatus,
                        int loginPort,
                        Iterable<String> publicAddresses,
                        Iterable<String> privateAddresses,
                        @Nullable
                        org.jclouds.domain.LoginCredentials credentials,
                        String hostname)
Method Detail

getGroup

public String getGroup()
Tag used for all resources that belong to the same logical group. run, destroy commands are scoped to group.

Specified by:
getGroup in interface NodeMetadata
Returns:
group for this node, or null, if not a part of a group

getHardware

public Hardware getHardware()
The hardware this node is running, if possible to determine.

Specified by:
getHardware in interface NodeMetadata

getCredentials

public org.jclouds.domain.LoginCredentials getCredentials()
If possible, these are returned upon all detail requests. However, it is often the case that credentials are only available when a node is initially created.

Specified by:
getCredentials in interface NodeMetadata
See Also:
ComputeServiceContext#credentialStore

getPublicAddresses

public Set<String> getPublicAddresses()
All public IP addresses, potentially including shared ips.

Specified by:
getPublicAddresses in interface NodeMetadata

getPrivateAddresses

public Set<String> getPrivateAddresses()
All private IP addresses.

Specified by:
getPrivateAddresses in interface NodeMetadata

getStatus

public NodeMetadata.Status getStatus()
portable status of the resource

Specified by:
getStatus in interface ComputeMetadataIncludingStatus<NodeMetadata.Status>

getBackendStatus

public String getBackendStatus()
status of the resource, as supplied literally from the backend api.

Specified by:
getBackendStatus in interface ComputeMetadataIncludingStatus<NodeMetadata.Status>
Returns:
status or null, if the backend api has no concept of status

getLoginPort

public int getLoginPort()

Specified by:
getLoginPort in interface NodeMetadata
Returns:
the TCP port used for terminal connections. Generally, this is port 22 for ssh.

getImageId

public String getImageId()
The id of the image this node was created from, if possible to correlate.

Specified by:
getImageId in interface NodeMetadata

getOperatingSystem

public OperatingSystem getOperatingSystem()
The operating system this node is running, if possible to determine.

Specified by:
getOperatingSystem in interface NodeMetadata

getHostname

public String getHostname()

note

hostname is something that is set in the operating system image, so this value, if present, cannot be guaranteed on images not directly controlled by the cloud provider.

Specified by:
getHostname in interface NodeMetadata
Returns:
hostname of the node, or null if unknown

string

protected com.google.common.base.Objects.ToStringHelper string()
Overrides:
string in class ComputeMetadataImpl


Copyright © 2009-2014 The Apache Software Foundation. All Rights Reserved.