JCLOUDS-1095: Update OpenStack KeyStone Support for Zaqar

This commit is contained in:
Fernando Ribeiro 2016-03-20 17:22:31 -03:00 committed by Ignasi Barrera
parent 6e7801ad58
commit 92e6319cd7
1 changed files with 7 additions and 0 deletions

View File

@ -58,8 +58,10 @@ public final class ServiceType {
public static final String DATABASE = "database"; public static final String DATABASE = "database";
/** /**
* @deprecated use {@link #MESSAGING} instead.
* Queues Service (Marconi) * Queues Service (Marconi)
*/ */
@Deprecated
public static final String QUEUES = "queuing"; public static final String QUEUES = "queuing";
/** /**
@ -77,6 +79,11 @@ public final class ServiceType {
*/ */
public static final String SHARED_FILESYSTEM = "share"; public static final String SHARED_FILESYSTEM = "share";
/**
* Messaging Service (Zaqar)
*/
public static final String MESSAGING = "messaging";
private ServiceType() { private ServiceType() {
throw new AssertionError("intentionally unimplemented"); throw new AssertionError("intentionally unimplemented");
} }