Commit cda6f3678b8cfe7a0046d75ff5daeae3287b8312

Authored by Sergey Matvienko
1 parent afcadea9

js-executor: fixed license header

1 1 /*
2   - * ThingsBoard, Inc. ("COMPANY") CONFIDENTIAL
  2 + * Copyright © 2016-2021 The Thingsboard Authors
3 3 *
4   - * Copyright © 2016-2021 ThingsBoard, Inc. All Rights Reserved.
  4 + * Licensed under the Apache License, Version 2.0 (the "License");
  5 + * you may not use this file except in compliance with the License.
  6 + * You may obtain a copy of the License at
5 7 *
6   - * NOTICE: All information contained herein is, and remains
7   - * the property of ThingsBoard, Inc. and its suppliers,
8   - * if any. The intellectual and technical concepts contained
9   - * herein are proprietary to ThingsBoard, Inc.
10   - * and its suppliers and may be covered by U.S. and Foreign Patents,
11   - * patents in process, and are protected by trade secret or copyright law.
  8 + * http://www.apache.org/licenses/LICENSE-2.0
12 9 *
13   - * Dissemination of this information or reproduction of this material is strictly forbidden
14   - * unless prior written permission is obtained from COMPANY.
15   - *
16   - * Access to the source code contained herein is hereby forbidden to anyone except current COMPANY employees,
17   - * managers or contractors who have executed Confidentiality and Non-disclosure agreements
18   - * explicitly covering such access.
19   - *
20   - * The copyright notice above does not evidence any actual or intended publication
21   - * or disclosure of this source code, which includes
22   - * information that is confidential and/or proprietary, and is a trade secret, of COMPANY.
23   - * ANY REPRODUCTION, MODIFICATION, DISTRIBUTION, PUBLIC PERFORMANCE,
24   - * OR PUBLIC DISPLAY OF OR THROUGH USE OF THIS SOURCE CODE WITHOUT
25   - * THE EXPRESS WRITTEN CONSENT OF COMPANY IS STRICTLY PROHIBITED,
26   - * AND IN VIOLATION OF APPLICABLE LAWS AND INTERNATIONAL TREATIES.
27   - * THE RECEIPT OR POSSESSION OF THIS SOURCE CODE AND/OR RELATED INFORMATION
28   - * DOES NOT CONVEY OR IMPLY ANY RIGHTS TO REPRODUCE, DISCLOSE OR DISTRIBUTE ITS CONTENTS,
29   - * OR TO MANUFACTURE, USE, OR SELL ANYTHING THAT IT MAY DESCRIBE, IN WHOLE OR IN PART.
  10 + * Unless required by applicable law or agreed to in writing, software
  11 + * distributed under the License is distributed on an "AS IS" BASIS,
  12 + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13 + * See the License for the specific language governing permissions and
  14 + * limitations under the License.
30 15 */
31   -
32 16 const config = require('config'),
33 17 logger = require('../config/logger')._logger('httpServer'),
34 18 express = require('express');
... ...