From 794ca4210b5889b7908acde4ec72daf3afc45818 Mon Sep 17 00:00:00 2001 From: ezhil Date: Wed, 28 Nov 2018 22:46:41 +0530 Subject: Fixed sonar issue in DelegateDAO Fixed sonar issue Issue-ID: AAF-647 Change-Id: I0a632a07ad4152fd7700eafefbda3f358930a198 Signed-off-by: ezhil --- .../src/main/java/org/onap/aaf/auth/dao/cass/DelegateDAO.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'auth/auth-cass') 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 { -- cgit 1.2.3-korg