From: ezhil Date: Wed, 28 Nov 2018 17:16:41 +0000 (+0530) Subject: Fixed sonar issue in DelegateDAO X-Git-Tag: 2.1.9~100^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=794ca4210b5889b7908acde4ec72daf3afc45818;p=aaf%2Fauthz.git Fixed sonar issue in DelegateDAO Fixed sonar issue Issue-ID: AAF-647 Change-Id: I0a632a07ad4152fd7700eafefbda3f358930a198 Signed-off-by: ezhil --- diff --git a/auth/auth-cass/src/main/java/org/onap/aaf/auth/dao/cass/DelegateDAO.java b/auth/auth-cass/src/main/java/org/onap/aaf/auth/dao/cass/DelegateDAO.java index b137b640..ad862176 100644 --- a/auth/auth-cass/src/main/java/org/onap/aaf/auth/dao/cass/DelegateDAO.java +++ b/auth/auth-cass/src/main/java/org/onap/aaf/auth/dao/cass/DelegateDAO.java @@ -4,6 +4,8 @@ * =========================================================================== * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. * =========================================================================== + * Modifications Copyright (C) 2018 IBM. + * ============================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at @@ -44,6 +46,7 @@ public class DelegateDAO extends CassDAOImpl { public static final String TABLE = "delegate"; private PSInfo psByDelegate; + private static final int KEYLIMIT = 1; public DelegateDAO(AuthzTrans trans, Cluster cluster, String keyspace) { super(trans, DelegateDAO.class.getSimpleName(),cluster,keyspace,Data.class,TABLE, readConsistency(trans,TABLE), writeConsistency(trans,TABLE)); @@ -55,11 +58,11 @@ public class DelegateDAO extends CassDAOImpl { init(trans); } - private static final int KEYLIMIT = 1; + public static class Data implements Bytification { - public String user; - public String delegate; - public Date expires; + public static String user; + public static String delegate; + public static Date expires; @Override public ByteBuffer bytify() throws IOException {