diff --git a/README.md b/README.md index dc19ce3..9338468 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The `microsoft.excel` is a [Ballerina](https://ballerina.io/) connector for Micr This connector provides operations for connecting and interacting with Microsoft Graph API Excel endpoints over the network. For more information about configuration and operations, go to the module. - - [`microsoft.excel`](https://docs.central.ballerina.io/ballerinax/microsoft.excel/latest). + - [`microsoft.excel`](https://docs.central.ballerina.io/ballerinax/microsoft.excel/1.0.2). # Building from the Source ## Setting Up the Prerequisites diff --git a/excel/Package.md b/excel/Package.md index 86e6a56..f0fd971 100644 --- a/excel/Package.md +++ b/excel/Package.md @@ -3,11 +3,11 @@ Connects to Microsoft Excel from Ballerina ### Package Overview The `microsoft.excel` is a [Ballerina](https://ballerina.io/) connector for Microsoft Excel. -This package provides the capability to easily access Microsoft Excel. +This package provides the capability to perform CRUD operations in Microsoft Excel worksheet table, and chart. #### Compatibility | | Version | -|------------------------ ----------------------------------------------|-----------------------| +|------------------------------------------------------------------------|-----------------------| | Ballerina Language | **Swan Lake Alpha5** | | [Microsoft Graph API](https://docs.microsoft.com/en-us/graph/overview) | **v1.0** | diff --git a/excel/client.bal b/excel/client.bal index 5bf191f..dc945b0 100644 --- a/excel/client.bal +++ b/excel/client.bal @@ -277,7 +277,7 @@ public client class Client { @display {label: "Index"} int index, @display {label: "Values"} json[][] values) returns Row|error { - string path = check createRequestPath([WORKSHEETS, worksheetNameOrId, TABLES, tableNameOrId, ROWS, ITEM_AT + + string path = check createRequestPath([WORKSHEETS, worksheetNameOrId, TABLES, tableNameOrId, ROWS, ITEM_AT + OPEN_ROUND_BRACKET + INDEX + EQUAL_SIGN + index.toString() + CLOSE_ROUND_BRACKET], workbookIdOrPath); json payload = {values: values}; return check self.excelClient->patch(path, payload, targetType = Row); diff --git a/samples/add_chart.bal b/samples/add_chart.bal index cc397ea..4091fce 100644 --- a/samples/add_chart.bal +++ b/samples/add_chart.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/add_table.bal b/samples/add_table.bal index 6bf32ca..4710aae 100644 --- a/samples/add_table.bal +++ b/samples/add_table.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/add_worksheet.bal b/samples/add_worksheet.bal index fa7f066..f2dad32 100644 --- a/samples/add_worksheet.bal +++ b/samples/add_worksheet.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/calculate_workbook_application.bal b/samples/calculate_workbook_application.bal index 9e7f1df..1ae5bc9 100644 --- a/samples/calculate_workbook_application.bal +++ b/samples/calculate_workbook_application.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/create_column.bal b/samples/create_column.bal index 69006f7..904e009 100644 --- a/samples/create_column.bal +++ b/samples/create_column.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/create_row.bal b/samples/create_row.bal index 34f92b8..d4304b0 100644 --- a/samples/create_row.bal +++ b/samples/create_row.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/delete_chart.bal b/samples/delete_chart.bal index 069ebdc..38eb0cb 100644 --- a/samples/delete_chart.bal +++ b/samples/delete_chart.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/delete_column.bal b/samples/delete_column.bal index 025f7c4..4d988ff 100644 --- a/samples/delete_column.bal +++ b/samples/delete_column.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/delete_row.bal b/samples/delete_row.bal index ccf1278..cd44729 100644 --- a/samples/delete_row.bal +++ b/samples/delete_row.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/delete_table.bal b/samples/delete_table.bal index c857ad7..60da34b 100644 --- a/samples/delete_table.bal +++ b/samples/delete_table.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/delete_worksheet.bal b/samples/delete_worksheet.bal index b7cfa63..b22454f 100644 --- a/samples/delete_worksheet.bal +++ b/samples/delete_worksheet.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/get_cell.bal b/samples/get_cell.bal index 4a5fc65..95e1dda 100644 --- a/samples/get_cell.bal +++ b/samples/get_cell.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/get_chart.bal b/samples/get_chart.bal index 2813090..2f9f64e 100644 --- a/samples/get_chart.bal +++ b/samples/get_chart.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/get_chart_image .bal b/samples/get_chart_image .bal index d254f0c..0c7aed6 100644 --- a/samples/get_chart_image .bal +++ b/samples/get_chart_image .bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/get_table.bal b/samples/get_table.bal index a7c38a0..fa9ee17 100644 --- a/samples/get_table.bal +++ b/samples/get_table.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/get_workbook_application.bal b/samples/get_workbook_application.bal index d27ad45..232a7b5 100644 --- a/samples/get_workbook_application.bal +++ b/samples/get_workbook_application.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/get_worksheet.bal b/samples/get_worksheet.bal index c46efed..2d5f7bf 100644 --- a/samples/get_worksheet.bal +++ b/samples/get_worksheet.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/list_charts.bal b/samples/list_charts.bal index 158348a..571d98e 100644 --- a/samples/list_charts.bal +++ b/samples/list_charts.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/list_columns.bal b/samples/list_columns.bal index dd0cb08..0bbad3a 100644 --- a/samples/list_columns.bal +++ b/samples/list_columns.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/list_rows.bal b/samples/list_rows.bal index 9e84afc..5a87c1f 100644 --- a/samples/list_rows.bal +++ b/samples/list_rows.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/list_tables.bal b/samples/list_tables.bal index aa89a0e..7b70d9f 100644 --- a/samples/list_tables.bal +++ b/samples/list_tables.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/list_worksheets.bal b/samples/list_worksheets.bal index 9d9182e..cda3e73 100644 --- a/samples/list_worksheets.bal +++ b/samples/list_worksheets.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/reset_chart_image.bal b/samples/reset_chart_image.bal index edef39a..8a0829f 100644 --- a/samples/reset_chart_image.bal +++ b/samples/reset_chart_image.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/set_chart_position.bal b/samples/set_chart_position.bal index defa3f5..b15619b 100644 --- a/samples/set_chart_position.bal +++ b/samples/set_chart_position.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/update_chart.bal b/samples/update_chart.bal index 44c7ffa..a711226 100644 --- a/samples/update_chart.bal +++ b/samples/update_chart.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/update_column.bal b/samples/update_column.bal index 145734f..614f87d 100644 --- a/samples/update_column.bal +++ b/samples/update_column.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/update_row.bal b/samples/update_row.bal index dfb5197..7f22862 100644 --- a/samples/update_row.bal +++ b/samples/update_row.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/update_table.bal b/samples/update_table.bal index c776296..96a06f5 100644 --- a/samples/update_table.bal +++ b/samples/update_table.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel; diff --git a/samples/update_worksheet.bal b/samples/update_worksheet.bal index 3fe8310..0e21a64 100644 --- a/samples/update_worksheet.bal +++ b/samples/update_worksheet.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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/log; import ballerinax/microsoft.excel;