/keystone-model/src/main/java/com/woorea/openstack/keystone/v3/model/Authentication.java

http://github.com/woorea/openstack-java-sdk · Java · 284 lines · 203 code · 81 blank · 0 comment · 0 complexity · 0df932bdda8704ecae1164a199c9bf9b MD5 · raw file

  1. package com.woorea.openstack.keystone.v3.model;
  2. import java.io.Serializable;
  3. import java.util.ArrayList;
  4. import java.util.List;
  5. import com.fasterxml.jackson.annotation.JsonRootName;
  6. @JsonRootName("auth")
  7. public class Authentication implements Serializable {
  8. public static final class Identity {
  9. public static final Identity password(String userId, String password) {
  10. Identity identity = new Identity();
  11. identity.getMethods().add("password");
  12. Password method = new Password();
  13. method.getUser().setId(userId);
  14. method.getUser().setPassword(password);
  15. identity.setPassword(method);
  16. return identity;
  17. }
  18. public static final Identity password(String domainName, String username, String password) {
  19. Identity identity = new Identity();
  20. identity.getMethods().add("password");
  21. Password method = new Password();
  22. com.woorea.openstack.keystone.v3.model.Authentication.Identity.Password.User.Domain domain = new com.woorea.openstack.keystone.v3.model.Authentication.Identity.Password.User.Domain();
  23. domain.setName(domainName);
  24. method.getUser().setDomain(domain);
  25. method.getUser().setName(username);
  26. method.getUser().setPassword(password);
  27. identity.setPassword(method);
  28. return identity;
  29. }
  30. public static final Identity token(String token) {
  31. Identity identity = new Identity();
  32. identity.getMethods().add("token");
  33. Token method = new Token();
  34. method.setId(token);
  35. identity.setToken(method);
  36. return identity;
  37. }
  38. private List<String> methods = new ArrayList<String>();
  39. public static final class Password {
  40. public static final class User {
  41. public static final class Domain {
  42. private String id;
  43. private String name;
  44. public String getId() {
  45. return id;
  46. }
  47. public void setId(String id) {
  48. this.id = id;
  49. }
  50. public String getName() {
  51. return name;
  52. }
  53. public void setName(String name) {
  54. this.name = name;
  55. }
  56. }
  57. private Domain domain;
  58. private String id;
  59. private String name;
  60. private String password;
  61. public Domain getDomain() {
  62. return domain;
  63. }
  64. public void setDomain(Domain domain) {
  65. this.domain = domain;
  66. }
  67. public String getId() {
  68. return id;
  69. }
  70. public void setId(String id) {
  71. this.id = id;
  72. }
  73. public String getName() {
  74. return name;
  75. }
  76. public void setName(String name) {
  77. this.name = name;
  78. }
  79. public String getPassword() {
  80. return password;
  81. }
  82. public void setPassword(String password) {
  83. this.password = password;
  84. }
  85. }
  86. private User user = new User();
  87. public User getUser() {
  88. return user;
  89. }
  90. public void setUser(User user) {
  91. this.user = user;
  92. }
  93. }
  94. private Password password;
  95. public static final class Token {
  96. private String id;
  97. public String getId() {
  98. return id;
  99. }
  100. public void setId(String id) {
  101. this.id = id;
  102. }
  103. }
  104. private Token token;
  105. public List<String> getMethods() {
  106. return methods;
  107. }
  108. public void setMethods(List<String> methods) {
  109. this.methods = methods;
  110. }
  111. public Password getPassword() {
  112. return password;
  113. }
  114. public void setPassword(Password password) {
  115. this.password = password;
  116. }
  117. public Token getToken() {
  118. return token;
  119. }
  120. public void setToken(Token token) {
  121. this.token = token;
  122. }
  123. }
  124. private Identity identity;
  125. public static final class Scope {
  126. public static Scope project(String id) {
  127. Scope scope = new Scope();
  128. Project project = new Project();
  129. project.setId(id);
  130. scope.setProject(project);
  131. return scope;
  132. }
  133. public static Scope project(String domainName, String projectName) {
  134. Scope scope = new Scope();
  135. com.woorea.openstack.keystone.v3.model.Authentication.Scope.Project.Domain domain = new com.woorea.openstack.keystone.v3.model.Authentication.Scope.Project.Domain();
  136. domain.setName(domainName);
  137. Project project = new Project();
  138. project.setDomain(domain);
  139. project.setName(projectName);
  140. scope.setProject(project);
  141. return scope;
  142. }
  143. public static final class Project {
  144. public static final class Domain {
  145. private String id;
  146. private String name;
  147. public String getId() {
  148. return id;
  149. }
  150. public void setId(String id) {
  151. this.id = id;
  152. }
  153. public String getName() {
  154. return name;
  155. }
  156. public void setName(String name) {
  157. this.name = name;
  158. }
  159. }
  160. private String id;
  161. private Domain domain;
  162. private String name;
  163. public String getId() {
  164. return id;
  165. }
  166. public void setId(String id) {
  167. this.id = id;
  168. }
  169. public Domain getDomain() {
  170. return domain;
  171. }
  172. public void setDomain(Domain domain) {
  173. this.domain = domain;
  174. }
  175. public String getName() {
  176. return name;
  177. }
  178. public void setName(String name) {
  179. this.name = name;
  180. }
  181. }
  182. private Project project;
  183. public Project getProject() {
  184. return project;
  185. }
  186. public void setProject(Project project) {
  187. this.project = project;
  188. }
  189. }
  190. private Scope scope;
  191. public Identity getIdentity() {
  192. return identity;
  193. }
  194. public void setIdentity(Identity identity) {
  195. this.identity = identity;
  196. }
  197. public Scope getScope() {
  198. return scope;
  199. }
  200. public void setScope(Scope scope) {
  201. this.scope = scope;
  202. }
  203. }