From 572d9b8259e2d66abdfb28be503fc62e7732c5b5 Mon Sep 17 00:00:00 2001 From: seshukm Date: Wed, 25 Jul 2018 18:19:13 +0800 Subject: fix basic code issues of auth files Issue-ID: SO-729 Change-Id: I36bb76578c39640c38b27ee5c8939341f908fba2 Signed-off-by: seshukm --- .../model/authentication/TokenAuthentication.java | 74 +++++++++++----------- 1 file changed, 37 insertions(+), 37 deletions(-) (limited to 'keystone-model/src/main/java/com/woorea/openstack/keystone/model/authentication/TokenAuthentication.java') diff --git a/keystone-model/src/main/java/com/woorea/openstack/keystone/model/authentication/TokenAuthentication.java b/keystone-model/src/main/java/com/woorea/openstack/keystone/model/authentication/TokenAuthentication.java index fec92e1..f47a94b 100644 --- a/keystone-model/src/main/java/com/woorea/openstack/keystone/model/authentication/TokenAuthentication.java +++ b/keystone-model/src/main/java/com/woorea/openstack/keystone/model/authentication/TokenAuthentication.java @@ -22,45 +22,45 @@ import com.woorea.openstack.keystone.model.Authentication; @JsonRootName("auth") public class TokenAuthentication extends Authentication { - - public static final class Token { - - private String id; + + public static final class Token { + + private String id; - /** - * @return the id - */ - public String getId() { - return id; - } + /** + * @return the id + */ + public String getId() { + return id; + } - /** - * @param id the id to set - */ - public void setId(String id) { - this.id = id; - } - - } - - private Token token = new Token(); - - public TokenAuthentication(String token) { - this.token.id = token; - } + /** + * @param id the id to set + */ + public void setId(String id) { + this.id = id; + } + + } + + private Token token = new Token(); + + public TokenAuthentication(String token) { + this.token.id = token; + } - /** - * @return the token - */ - public Token getToken() { - return token; - } + /** + * @return the token + */ + public Token getToken() { + return token; + } - /** - * @param token the token to set - */ - public void setToken(Token token) { - this.token = token; - } - + /** + * @param token the token to set + */ + public void setToken(Token token) { + this.token = token; + } + } -- cgit 1.2.3-korg