9115ed3ef29cb2bee6f8a5519aee98e7cbea857b
[so.git] / asdc-controller / src / main / java / org / onap / so / asdc / client / ResourceInstance.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.onap.so.asdc.client;
22
23 import java.util.ArrayList;
24
25 import org.onap.sdc.api.notification.IResourceInstance;
26
27 public class ResourceInstance implements IResourceInstance {
28     
29     @Override
30     public String getResourceInstanceName(){
31         return new String();
32     }
33     
34     @Override
35     public String getResourceName(){
36         return new String();
37     }
38     
39     @Override
40     public String getResourceVersion(){
41         return new String();
42     }
43     
44     @Override
45     public String getResourceType(){
46         return new String();
47     }
48     
49     @Override
50     public String getResourceUUID(){
51         return new String();
52     }
53     
54     @Override
55     public java.util.List getArtifacts(){
56         return new ArrayList();
57     }
58     
59     @Override
60     public String getResourceInvariantUUID(){
61         return new String();
62     }
63     
64     @Override
65     public String getResourceCustomizationUUID(){
66         return new String();
67     }
68     
69     @Override
70     public String getCategory(){
71         return new String();
72     }
73     
74     @Override
75     public String getSubcategory(){
76         return new String();
77     }
78         
79 }