Fix checkstyle declarations
[policy/drools-applications.git] / controlloop / common / guard / src / main / java / org / onap / policy / guard / impl / VNFTargetLock.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * guard
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.guard.impl;
22
23 import java.io.Serializable;
24 import java.util.UUID;
25
26 import org.onap.policy.controlloop.policy.TargetType;
27 import org.onap.policy.guard.LockCallback;
28 import org.onap.policy.guard.TargetLock;
29
30 public class VNFTargetLock implements TargetLock, Serializable {
31
32     private static final long serialVersionUID = 2335897394577202732L;
33
34     private final UUID lockId;
35     private final TargetType targetType;
36     private final String target;
37     private final UUID requestId;
38     private final transient LockCallback callback;
39
40     /**
41      * Create an instance.
42      * 
43      * @param type the type
44      * @param target the target
45      * @param requestId the request Id
46      * @param callback the callback
47      */
48     public VNFTargetLock(TargetType type, String target, UUID requestId, LockCallback callback) {
49         this.lockId = UUID.randomUUID();
50         this.targetType = type;
51         this.target = target;
52         this.requestId = requestId;
53         this.callback = callback;
54     }
55
56     @Override
57     public UUID getLockID() {
58         return this.lockId;
59     }
60
61
62     @Override
63     public TargetType getTargetType() {
64         return targetType;
65     }
66
67     @Override
68     public String getTargetInstance() {
69         return target;
70     }
71
72     @Override
73     public UUID getRequestID() {
74         return this.requestId;
75     }
76
77     public LockCallback getCallback() {
78         return this.callback;
79     }
80
81     @Override
82     public String toString() {
83         return "VNFTargetLock [lockID=" + lockId + ", targetType=" + targetType + ", target=" + target + ", requestID="
84                 + requestId + "]";
85     }
86
87
88
89 }