[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / tosca / datatypes / ToscaImportsDefinition.java
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.ci.tests.tosca.datatypes;
22
23 public class ToscaImportsDefinition {
24
25         private String file;
26         private String repository;
27         private String namespace_uri;
28         private String namespace_prefix;
29         
30         public ToscaImportsDefinition() {
31                 super();
32                 // TODO Auto-generated constructor stub
33         }
34
35         public ToscaImportsDefinition(String file, String repository, String namespace_uri, String namespace_prefix) {
36                 super();
37                 this.file = file;
38                 this.repository = repository;
39                 this.namespace_uri = namespace_uri;
40                 this.namespace_prefix = namespace_prefix;
41         }
42
43         @Override
44         public String toString() {
45                 return "ToscaImportsDefinition [file=" + file + ", repository=" + repository + ", namespace_uri=" + namespace_uri + ", namespace_prefix=" + namespace_prefix + "]";
46         }
47
48         public String getFile() {
49                 return file;
50         }
51
52         public void setFile(String file) {
53                 this.file = file;
54         }
55
56         public String getRepository() {
57                 return repository;
58         }
59
60         public void setRepository(String repository) {
61                 this.repository = repository;
62         }
63
64         public String getNamespace_uri() {
65                 return namespace_uri;
66         }
67
68         public void setNamespace_uri(String namespace_uri) {
69                 this.namespace_uri = namespace_uri;
70         }
71
72         public String getNamespace_prefix() {
73                 return namespace_prefix;
74         }
75
76         public void setNamespace_prefix(String namespace_prefix) {
77                 this.namespace_prefix = namespace_prefix;
78         }
79         
80         
81 }