faddfaa1c362537a1077d60474f15e13d14f4f16
[sdc/sdc-workflow-designer.git] /
1 /**
2  * Copyright (c) 2018 ZTE Corporation.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the Apache License, Version 2.0
5  * and the Eclipse Public License v1.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  *     ZTE - initial API and implementation and/or initial documentation
11  */
12 package org.onap.sdc.workflowdesigner.resources.entity;
13
14 /**
15  *
16  */
17 public class I18nString {
18   private String en_US;
19   
20   private String zh_CN;
21
22   /**
23    * 
24    */
25   public I18nString() {
26     super();
27   }
28
29   /**
30    * @param en_US
31    * @param zh_CN
32    */
33   public I18nString(String en_US, String zh_CN) {
34     super();
35     this.en_US = en_US;
36     this.zh_CN = zh_CN;
37   }
38
39   /**
40    * @return the en_US
41    */
42   public String getEn_US() {
43     return en_US;
44   }
45
46   /**
47    * @param en_US the en_US to set
48    */
49   public void setEn_US(String en_US) {
50     this.en_US = en_US;
51   }
52
53   /**
54    * @return the zh_CN
55    */
56   public String getZh_CN() {
57     return zh_CN;
58   }
59
60   /**
61    * @param zh_CN the zh_CN to set
62    */
63   public void setZh_CN(String zh_CN) {
64     this.zh_CN = zh_CN;
65   }
66   
67   
68
69 }