aboutsummaryrefslogtreecommitdiffstats
path: root/music-core/src/main/java/org/onap/music/service/MusicCoreService.java
diff options
context:
space:
mode:
authorTschaen, Brendan <ctschaen@att.com>2019-10-09 10:39:45 -0400
committerTschaen, Brendan <ctschaen@att.com>2019-10-09 10:39:45 -0400
commitda01a036b92feb080949cd27d6d7273719eb4123 (patch)
treecb64dd2a46c3d5722905976a3c5ee3d44b1d4d59 /music-core/src/main/java/org/onap/music/service/MusicCoreService.java
parenta681a9e295dc2b8f35dd42251f795d0079471ac0 (diff)
Include owner in createLockRef
Change-Id: I7403f27b739259576419a380878cf0e263f9b8c6 Issue-ID: MUSIC-502 Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
Diffstat (limited to 'music-core/src/main/java/org/onap/music/service/MusicCoreService.java')
-rw-r--r--music-core/src/main/java/org/onap/music/service/MusicCoreService.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/music-core/src/main/java/org/onap/music/service/MusicCoreService.java b/music-core/src/main/java/org/onap/music/service/MusicCoreService.java
index b3226906..65b98852 100644
--- a/music-core/src/main/java/org/onap/music/service/MusicCoreService.java
+++ b/music-core/src/main/java/org/onap/music/service/MusicCoreService.java
@@ -94,6 +94,13 @@ public interface MusicCoreService {
/**
* Create a lock ref in the music lock store
* @param fullyQualifiedKey the key to create a lock on
+ * @param owner the owner of the lock, for deadlock prevention
+ */
+ public String createLockReference(String fullyQualifiedKey, String owner) throws MusicLockingException;
+
+ /**
+ * Create a lock ref in the music lock store
+ * @param fullyQualifiedKey the key to create a lock on
* @param locktype the type of lock create, see {@link LockType}
*/
public String createLockReference(String fullyQualifiedKey, LockType locktype) throws MusicLockingException;
@@ -178,4 +185,5 @@ public interface MusicCoreService {
public ReturnType deleteFromTable(JsonDelete jsonDeleteObj,MultivaluedMap<String, String> rowParams)
throws MusicLockingException, MusicQueryException, MusicServiceException;
+
}