9a77b9f94f5196f330fbb4ebe8cf576abe463fb5
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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.openecomp.sdc.be.components.distribution.engine;
22
23 public interface IResourceArtifactInfo extends IArtifactInfo {
24
25         /** resource name */
26         String getResourceName();
27
28         /** resource version */
29         String getResourceVersion();
30
31         /**
32          * Global UUID of the resource that specific artifact belongs to.<br>
33          * It is generated by ASDC per each resource version.<br>
34          * Generated UUID is compliant with RFC 4122. It is a 128-bit value formatted into blocks of hexadecimal digits separated by a hyphen ("-"). <br>
35          * Ex.: AA97B177-9383-4934-8543-0F91A7A02836
36          */
37         String getResourceUUID();
38
39 }