This is an automated email from the ASF dual-hosted git repository. dimuthuupe pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/airavata.git
commit b768da924c18eee005be6bb83253a3af6f1443d1 Author: Yasith Jayawardana <[email protected]> AuthorDate: Fri Jul 19 12:54:42 2024 -0400 add license headers --- .../airavata-fuse/src/grpcfs/adapters.go | 19 +++++++++++++++++++ .../agent-framework/airavata-fuse/src/grpcfs/fs.go | 17 +++++++++++++++++ .../agent-framework/airavata-fuse/src/grpcfs/grpc.go | 17 +++++++++++++++++ .../agent-framework/airavata-fuse/src/grpcfs/inode.go | 17 +++++++++++++++++ .../airavata-fuse/src/grpcfs_client/main.go | 17 +++++++++++++++++ .../airavata-fuse/src/grpcfs_server/main.go | 17 +++++++++++++++++ .../airavata-fuse/src/proto/grpcfs.proto | 17 +++++++++++++++++ 7 files changed, 121 insertions(+) diff --git a/modules/agent-framework/airavata-fuse/src/grpcfs/adapters.go b/modules/agent-framework/airavata-fuse/src/grpcfs/adapters.go index aee9bdf6af..2d2ca09187 100644 --- a/modules/agent-framework/airavata-fuse/src/grpcfs/adapters.go +++ b/modules/agent-framework/airavata-fuse/src/grpcfs/adapters.go @@ -1,3 +1,22 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF 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. + +// Place for mapper structs/interfaces + package grpcfs import ( diff --git a/modules/agent-framework/airavata-fuse/src/grpcfs/fs.go b/modules/agent-framework/airavata-fuse/src/grpcfs/fs.go index aec2ab102b..9ba343eec2 100644 --- a/modules/agent-framework/airavata-fuse/src/grpcfs/fs.go +++ b/modules/agent-framework/airavata-fuse/src/grpcfs/fs.go @@ -1,3 +1,20 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF 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. + // place for fuse definitions package grpcfs diff --git a/modules/agent-framework/airavata-fuse/src/grpcfs/grpc.go b/modules/agent-framework/airavata-fuse/src/grpcfs/grpc.go index eab17997d0..b4e1e74de4 100644 --- a/modules/agent-framework/airavata-fuse/src/grpcfs/grpc.go +++ b/modules/agent-framework/airavata-fuse/src/grpcfs/grpc.go @@ -1,3 +1,20 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF 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. + // place for grpc calls package grpcfs diff --git a/modules/agent-framework/airavata-fuse/src/grpcfs/inode.go b/modules/agent-framework/airavata-fuse/src/grpcfs/inode.go index 1502ba651f..001523652a 100644 --- a/modules/agent-framework/airavata-fuse/src/grpcfs/inode.go +++ b/modules/agent-framework/airavata-fuse/src/grpcfs/inode.go @@ -1,3 +1,20 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF 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. + // place for data-side helper functions package grpcfs diff --git a/modules/agent-framework/airavata-fuse/src/grpcfs_client/main.go b/modules/agent-framework/airavata-fuse/src/grpcfs_client/main.go index 57d717a5ea..217fcebf7b 100644 --- a/modules/agent-framework/airavata-fuse/src/grpcfs_client/main.go +++ b/modules/agent-framework/airavata-fuse/src/grpcfs_client/main.go @@ -1,3 +1,20 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF 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 main import ( diff --git a/modules/agent-framework/airavata-fuse/src/grpcfs_server/main.go b/modules/agent-framework/airavata-fuse/src/grpcfs_server/main.go index 831f01416d..686ceb065e 100644 --- a/modules/agent-framework/airavata-fuse/src/grpcfs_server/main.go +++ b/modules/agent-framework/airavata-fuse/src/grpcfs_server/main.go @@ -1,3 +1,20 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF 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 main import ( diff --git a/modules/agent-framework/airavata-fuse/src/proto/grpcfs.proto b/modules/agent-framework/airavata-fuse/src/proto/grpcfs.proto index 31fd15999f..ff86beee3f 100644 --- a/modules/agent-framework/airavata-fuse/src/proto/grpcfs.proto +++ b/modules/agent-framework/airavata-fuse/src/proto/grpcfs.proto @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF 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. + */ + syntax = "proto3"; package pb;
