summaryrefslogtreecommitdiffstats
path: root/keystone-model/src/main/java/com/woorea/openstack/keystone/model/authentication/AccessKey.java
diff options
context:
space:
mode:
authorseshukm <seshu.kumar.m@huawei.com>2018-07-25 18:19:13 +0800
committerseshukm <seshu.kumar.m@huawei.com>2018-07-25 18:19:13 +0800
commit572d9b8259e2d66abdfb28be503fc62e7732c5b5 (patch)
tree3545c2e09fb0419ad4a8320eacb498c58d8dc3aa /keystone-model/src/main/java/com/woorea/openstack/keystone/model/authentication/AccessKey.java
parentd5ab4c1ed47aa5f1170024cb1ac8cf3df15781d4 (diff)
fix basic code issues of auth files
Issue-ID: SO-729 Change-Id: I36bb76578c39640c38b27ee5c8939341f908fba2 Signed-off-by: seshukm <seshu.kumar.m@huawei.com>
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;
+ }
+
}