872cb042b8cb74c9494eb123ba7dfee903e71419
[vfc/nfvo/wfengine.git] /
1 /*******************************************************************************
2  * Copyright (c) 2013 University of Stuttgart.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * and the Apache License 2.0 which both accompany this distribution,
6  * and are available at http://www.eclipse.org/legal/epl-v10.html
7  * and http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Contributors:
10  *     Oliver Kopp - initial API and implementation
11  *******************************************************************************/
12 package org.eclipse.winery.common.beans;
13
14 /**
15  * Bean containing
16  * <ul>
17  * <li>namespace</li>
18  * <li>id</li>
19  * <li>name</li>
20  * </ul>
21  * The name field is optional
22  */
23 public class NamespaceIdOptionalName {
24         
25         private String namespace;
26         private String id;
27         private String name = null;
28         
29         
30         public NamespaceIdOptionalName() {
31                 
32         }
33         
34         public String getNamespace() {
35                 return this.namespace;
36         }
37         
38         public void setNamespace(String namespace) {
39                 this.namespace = namespace;
40         }
41         
42         public String getId() {
43                 return this.id;
44         }
45         
46         public void setId(String id) {
47                 this.id = id;
48         }
49         
50         public String getName() {
51                 return this.name;
52         }
53         
54         public void setName(String name) {
55                 this.name = name;
56         }
57 }