Update License text
[vnfsdk/compliance.git] / veslibrary / ves_javalibrary / evel_javalib2 / src / evel_javalibrary / att / com / EvelOptionIntHeader.java
1 package evel_javalibrary.att.com;\r
2 /**************************************************************************//**\r
3  * @file\r
4  * Evel Option Internal Header class\r
5  *\r
6  * This file implements the Evel Option class to handle optional internal header\r
7  *  fields.\r
8  *\r
9  * License\r
10  * -------\r
11  * Unless otherwise specified, all software contained herein is\r
12  * Licensed under the Apache License, Version 2.0 (the "License");\r
13  * you may not use this file except in compliance with the License.\r
14  * You may obtain a copy of the License at\r
15  *        http://www.apache.org/licenses/LICENSE-2.0\r
16  *\r
17  * Unless required by applicable law or agreed to in writing, software\r
18  * distributed under the License is distributed on an "AS IS" BASIS,\r
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
20  * See the License for the specific language governing permissions and\r
21  * limitations under the License.\r
22  *****************************************************************************/\r
23 \r
24 import java.util.Date;\r
25 \r
26 public class EvelOptionIntHeader extends EvelOption {\r
27 \r
28         /**************************************************************************//**\r
29          * Optional parameter for any Java object\r
30          *****************************************************************************/\r
31      java.lang.Object value;\r
32      \r
33          public EvelOptionIntHeader(boolean val, java.lang.Object str)\r
34          {\r
35                  super(val);\r
36                  value = str;\r
37          }\r
38          \r
39          public void SetValue(java.lang.Object str)\r
40          {\r
41                  value = str;\r
42          }\r
43          \r
44          public java.lang.Object GetValue()\r
45          {\r
46                  return value;\r
47          }\r
48 \r
49 }\r
50 \r
51         \r