Merge pull request #746 from dkoper/master

adding SYSTEM location scope required for FGCP
This commit is contained in:
Adrian Cole 2012-07-23 19:19:50 -07:00
commit 6d9d638a1f
1 changed files with 13 additions and 1 deletions

View File

@ -25,6 +25,18 @@ package org.jclouds.domain;
*/
public enum LocationScope {
PROVIDER, REGION, ZONE, NETWORK, RACK, HOST;
PROVIDER,
REGION,
ZONE,
/**
* @see <a href="http://dmtf.org/standards/cloud">cimi system docs</a>
*/
SYSTEM,
/**
* E.g. the DMZ segment, secure segment.
*/
NETWORK,
RACK,
HOST;
}