summaryrefslogtreecommitdiffstats
path: root/keystone-client/src/main/java/com/woorea
diff options
context:
space:
mode:
Diffstat (limited to 'keystone-client/src/main/java/com/woorea')
-rw-r--r--keystone-client/src/main/java/com/woorea/openstack/keystone/api/TokensResource.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/keystone-client/src/main/java/com/woorea/openstack/keystone/api/TokensResource.java b/keystone-client/src/main/java/com/woorea/openstack/keystone/api/TokensResource.java
index 4f30313..06da8ca 100644
--- a/keystone-client/src/main/java/com/woorea/openstack/keystone/api/TokensResource.java
+++ b/keystone-client/src/main/java/com/woorea/openstack/keystone/api/TokensResource.java
@@ -11,7 +11,6 @@ import com.woorea.openstack.base.client.OpenStackRequest;
import com.woorea.openstack.keystone.model.Access;
import com.woorea.openstack.keystone.model.Authentication;
import com.woorea.openstack.keystone.model.authentication.AccessKey;
-import com.woorea.openstack.keystone.model.authentication.RackspaceAuthentication;
import com.woorea.openstack.keystone.model.authentication.TokenAuthentication;
import com.woorea.openstack.keystone.model.authentication.UsernamePassword;
@@ -66,11 +65,6 @@ public class TokensResource {
return new Authenticate(authentication);
}
- public Authenticate withRackspace(String username, String apiKey, String region) {
- Authentication authentication = new RackspaceAuthentication(username, apiKey);
- return new Authenticate(authentication);
- }
-
public Authenticate withAccessKey(String accessKey, String secretKey) {
Authentication authentication = new AccessKey(accessKey, secretKey);
return new Authenticate(authentication);