1 package com.woorea.openstack.keystone.model.authentication;
3 import org.codehaus.jackson.map.annotate.JsonRootName;
5 import com.woorea.openstack.keystone.model.Authentication;
8 public class TokenAuthentication extends Authentication {
10 public static final class Token {
17 public String getId() {
22 * @param id the id to set
24 public void setId(String id) {
30 private Token token = new Token();
32 public TokenAuthentication(String token) {
33 this.token.id = token;
39 public Token getToken() {
44 * @param token the token to set
46 public void setToken(Token token) {