From 7c429ca3980fa09128ad974c8bbabe2abc8c2128 Mon Sep 17 00:00:00 2001 From: TharmiganK Date: Wed, 9 Oct 2024 14:37:19 +0530 Subject: [PATCH] Add license header --- ballerina/stream_iterators.bal | 16 ++++++++++++++++ .../stdlib/crypto/SequentialBufferedPipe.java | 17 +++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/ballerina/stream_iterators.bal b/ballerina/stream_iterators.bal index df04711..b936b6e 100644 --- a/ballerina/stream_iterators.bal +++ b/ballerina/stream_iterators.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2024 WSO2 LLC. (https://www.wso2.com). +// +// WSO2 LLC. licenses this file to you under the Apache License, +// Version 2.0 (the "License"); you may not use this file except +// in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. + import ballerina/jballerina.java; class DecryptedStreamIterator { diff --git a/native/src/main/java/io/ballerina/stdlib/crypto/SequentialBufferedPipe.java b/native/src/main/java/io/ballerina/stdlib/crypto/SequentialBufferedPipe.java index c07d967..4da7162 100644 --- a/native/src/main/java/io/ballerina/stdlib/crypto/SequentialBufferedPipe.java +++ b/native/src/main/java/io/ballerina/stdlib/crypto/SequentialBufferedPipe.java @@ -1,3 +1,20 @@ +/* + * Copyright (c) 2024 WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ package io.ballerina.stdlib.crypto; import java.io.InputStream;