aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/music/service/MusicCoreService.java
diff options
context:
space:
mode:
authorNelson, Thomas (arthurdent3) <nelson24@att.com>2019-05-09 14:16:37 +0000
committerTschaen, Brendan <ctschaen@att.com>2019-05-13 14:34:05 -0400
commitd6e7b63cc580e7b3822be61fe92a493ad5e222a3 (patch)
tree5a055529781a2989585075e13426979464f5fb33 /src/main/java/org/onap/music/service/MusicCoreService.java
parent9a8b8ae8d7c8d6931f99def68068f8936a8cc0b3 (diff)
Changes Listed below:
- Added build version API - Updated Keyspace active to use Properties setting - Update Libraries Netty,jbcrypt,Jackson Databind and log4j - Removed some irrelivant files - Updated some usint tests to ignore some tests(This will be updated soon) - Bugfixes - Missing Values, inform user. - Respond with proper error - Fix Locking Contention issue. - Add locking retry for atomic calls. Change-Id: Ie218dd92edb0c20e4a0efe33eeaaec84e5293c44 Issue-ID: MUSIC-393 Signed-off-by: Nelson, Thomas (arthurdent3) <nelson24@att.com>
Diffstat (limited to 'src/main/java/org/onap/music/service/MusicCoreService.java')
-rw-r--r--src/main/java/org/onap/music/service/MusicCoreService.java34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/main/java/org/onap/music/service/MusicCoreService.java b/src/main/java/org/onap/music/service/MusicCoreService.java
index affdc7f2..61e4905e 100644
--- a/src/main/java/org/onap/music/service/MusicCoreService.java
+++ b/src/main/java/org/onap/music/service/MusicCoreService.java
@@ -47,47 +47,47 @@ public interface MusicCoreService {
public ReturnType eventualPut_nb(PreparedQueryObject queryObject,String keyspace,String tablename,String primaryKey);
public ReturnType criticalPut(String keyspaceName, String tableName, String primaryKey,
- PreparedQueryObject queryObject, String lockId, Condition conditionInfo);
+ PreparedQueryObject queryObject, String lockId, Condition conditionInfo);
public ResultType nonKeyRelatedPut(PreparedQueryObject queryObject, String consistency)
- throws MusicServiceException;
+ throws MusicServiceException;
public ResultSet get(PreparedQueryObject queryObject) throws MusicServiceException;
public ResultSet atomicGet(String keyspaceName, String tableName, String primaryKey,
- PreparedQueryObject queryObject) throws MusicServiceException, MusicLockingException, MusicQueryException;
+ PreparedQueryObject queryObject) throws MusicServiceException, MusicLockingException, MusicQueryException;
public ReturnType atomicPutWithDeleteLock(String keyspaceName, String tableName, String primaryKey,
- PreparedQueryObject queryObject, Condition conditionInfo) throws MusicLockingException;
+ PreparedQueryObject queryObject, Condition conditionInfo) throws MusicLockingException;
public ResultSet atomicGetWithDeleteLock(String keyspaceName, String tableName, String primaryKey,
- PreparedQueryObject queryObject) throws MusicServiceException, MusicLockingException;
+ PreparedQueryObject queryObject) throws MusicServiceException, MusicLockingException;
public ReturnType atomicPut(String keyspaceName, String tableName, String primaryKey,
- PreparedQueryObject queryObject, Condition conditionInfo)
- throws MusicLockingException, MusicQueryException, MusicServiceException;
+ PreparedQueryObject queryObject, Condition conditionInfo)
+ throws MusicLockingException, MusicQueryException, MusicServiceException;
public ResultSet criticalGet(String keyspaceName, String tableName, String primaryKey,
- PreparedQueryObject queryObject, String lockId) throws MusicServiceException;
+ PreparedQueryObject queryObject, String lockId) throws MusicServiceException;
// Core Music Locking Service Methods
- public String createLockReference(String fullyQualifiedKey); // lock name
+ public String createLockReference(String fullyQualifiedKey) throws MusicLockingException; // lock name
public ReturnType acquireLockWithLease(String key, String lockReference, long leasePeriod)
- throws MusicLockingException, MusicQueryException, MusicServiceException; // key,lock id,time
+ throws MusicLockingException, MusicQueryException, MusicServiceException; // key,lock id,time
public ReturnType acquireLock(String key, String lockReference)
- throws MusicLockingException, MusicQueryException, MusicServiceException; // key,lock id
+ throws MusicLockingException, MusicQueryException, MusicServiceException; // key,lock id
public ResultType createTable(String keyspace, String table, PreparedQueryObject tableQueryObject,
- String consistency) throws MusicServiceException;
+ String consistency) throws MusicServiceException;
public ResultSet quorumGet(PreparedQueryObject query);
public String whoseTurnIsIt(String fullyQualifiedKey);// lock name
- public void destroyLockRef(String lockId);
+ public void destroyLockRef(String lockId) throws MusicLockingException;
//public MusicLockState destroyLockRef(String fullyQualifiedKey, String lockReference); // lock name, lock id
@@ -99,12 +99,12 @@ public interface MusicCoreService {
//public MusicLockState forciblyReleaseLock(String fullyQualifiedKey, String lockReference) throws MusicLockingException, MusicServiceException, MusicQueryException;
public List<String> getLockQueue(String fullyQualifiedKey)
- throws MusicServiceException, MusicQueryException, MusicLockingException;
+ throws MusicServiceException, MusicQueryException, MusicLockingException;
- public long getLockQueueSize(String fullyQualifiedKey)
- throws MusicServiceException, MusicQueryException, MusicLockingException;
+ public long getLockQueueSize(String fullyQualifiedKey)
+ throws MusicServiceException, MusicQueryException, MusicLockingException;
public Map<String, Object> validateLock(String lockName);
- public MusicLockState releaseLock(String lockId, boolean voluntaryRelease);
+ public MusicLockState releaseLock(String lockId, boolean voluntaryRelease) throws MusicLockingException;
}