summaryrefslogtreecommitdiffstats
path: root/keystone-model/src/main/java/com/woorea/openstack/keystone/model/authentication/AccessKey.java
diff options
context:
space:
mode:
Diffstat (limited to 'keystone-model/src/main/java/com/woorea/openstack/keystone/model/authentication/AccessKey.java')
-rw-r--r--keystone-model/src/main/java/com/woorea/openstack/keystone/model/authentication/AccessKey.java114
1 files changed, 57 insertions, 57 deletions
diff --git a/keystone-model/src/main/java/com/woorea/openstack/keystone/model/authentication/AccessKey.java b/keystone-model/src/main/java/com/woorea/openstack/keystone/model/authentication/AccessKey.java
index 08503b7..bb308f0 100644
--- a/keystone-model/src/main/java/com/woorea/openstack/keystone/model/authentication/AccessKey.java
+++ b/keystone-model/src/main/java/com/woorea/openstack/keystone/model/authentication/AccessKey.java
@@ -22,67 +22,67 @@ import com.woorea.openstack.keystone.model.Authentication;
@JsonRootName("auth")
public class AccessKey extends Authentication {
-
- public static final class ApiAccessKeyCredentials {
-
- private String accessKey;
-
- private String secretKey;
+
+ public static final class ApiAccessKeyCredentials {
+
+ private String accessKey;
+
+ private String secretKey;
- /**
- * @return the accessKey
- */
- public String getAccessKey() {
- return accessKey;
- }
+ /**
+ * @return the accessKey
+ */
+ public String getAccessKey() {
+ return accessKey;
+ }
- /**
- * @param accessKey the accessKey to set
- */
- public void setAccessKey(String accessKey) {
- this.accessKey = accessKey;
- }
+ /**
+ * @param accessKey the accessKey to set
+ */
+ public void setAccessKey(String accessKey) {
+ this.accessKey = accessKey;
+ }
- /**
- * @return the secretKey
- */
- public String getSecretKey() {
- return secretKey;
- }
+ /**
+ * @return the secretKey
+ */
+ public String getSecretKey() {
+ return secretKey;
+ }
- /**
- * @param secretKey the secretKey to set
- */
- public void setSecretKey(String secretKey) {
- this.secretKey = secretKey;
- }
-
- }
-
- private ApiAccessKeyCredentials apiAccessKeyCredentials = new ApiAccessKeyCredentials();
-
- public AccessKey() {
-
- }
-
- public AccessKey(String accessKey, String secretKey) {
- apiAccessKeyCredentials.setAccessKey(accessKey);
- apiAccessKeyCredentials.setSecretKey(secretKey);
- }
+ /**
+ * @param secretKey the secretKey to set
+ */
+ public void setSecretKey(String secretKey) {
+ this.secretKey = secretKey;
+ }
+
+ }
+
+ private ApiAccessKeyCredentials apiAccessKeyCredentials = new ApiAccessKeyCredentials();
+
+ public AccessKey() {
+
+ }
+
+ public AccessKey(String accessKey, String secretKey) {
+ apiAccessKeyCredentials.setAccessKey(accessKey);
+ apiAccessKeyCredentials.setSecretKey(secretKey);
+ }
- /**
- * @return the apiAccessKeyCredentials
- */
- public ApiAccessKeyCredentials getApiAccessKeyCredentials() {
- return apiAccessKeyCredentials;
- }
+ /**
+ * @return the apiAccessKeyCredentials
+ */
+ public ApiAccessKeyCredentials getApiAccessKeyCredentials() {
+ return apiAccessKeyCredentials;
+ }
- /**
- * @param apiAccessKeyCredentials the apiAccessKeyCredentials to set
- */
- public void setApiAccessKeyCredentials(
- ApiAccessKeyCredentials apiAccessKeyCredentials) {
- this.apiAccessKeyCredentials = apiAccessKeyCredentials;
- }
-
+ /**
+ * @param apiAccessKeyCredentials the apiAccessKeyCredentials to set
+ */
+ public void setApiAccessKeyCredentials(
+ ApiAccessKeyCredentials apiAccessKeyCredentials) {
+ this.apiAccessKeyCredentials = apiAccessKeyCredentials;
+ }
+
}