Adding Locks group in run.sh
[smartthings-infrastructure.git] / AtomicState / AtomicState.groovy
1 //Create a class for atomic state
2 package AtomicState
3
4 public class AtomicState {
5         def bucketKey
6         def accessKey
7         def bucketName
8         def isBucketCreated
9         def grokerSubdomain
10         def eventBuffer
11         def version
12         def isDisabled
13         def queue
14         def poll
15
16         AtomicState() {
17                 this.version = "1.0"
18                 this.accessKey = 15
19                 this.bucketKey = 20
20         }
21 }