├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── core-release.yml │ ├── database-release.yml │ ├── email-release.yml │ ├── excel-release.yml │ ├── google-drive-release.yml │ ├── google-services-release.yml │ └── google-sheets-release.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── README.md ├── database │ ├── tables-manipulating │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── database │ │ │ │ └── tables_manipulating │ │ │ │ ├── TablesManipulatingModule.java │ │ │ │ ├── entity │ │ │ │ ├── Invoice.java │ │ │ │ └── Product.java │ │ │ │ └── tasks │ │ │ │ ├── CreateEntityTables.java │ │ │ │ └── DropEntityTable.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── vault.properties │ ├── working-with-different-db │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── database │ │ │ │ └── working_with_different_db │ │ │ │ ├── WorkingWithDifferentDbModule.java │ │ │ │ └── tasks │ │ │ │ └── WorkWithSeveralDatabases.java │ │ │ └── resources │ │ │ └── vault.properties │ ├── working-with-raw-sql │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── database │ │ │ │ └── working_with_raw_sql │ │ │ │ ├── WorkingWithRawSqlModule.java │ │ │ │ └── tasks │ │ │ │ ├── CreateInvoicesTable.java │ │ │ │ ├── DeleteOutdatedInvoices.java │ │ │ │ ├── InsertInvoiceRecords.java │ │ │ │ ├── SelectInvoicesFromTable.java │ │ │ │ └── UpdateOutdatedInvoices.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── vault.properties │ ├── working-with-table-records │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── database │ │ │ │ └── working_with_table_records │ │ │ │ ├── WorkingWithTableRecordsModule.java │ │ │ │ ├── entity │ │ │ │ └── Invoice.java │ │ │ │ ├── service │ │ │ │ └── InvoicesSupplier.java │ │ │ │ └── tasks │ │ │ │ ├── AddNewTableRecords.java │ │ │ │ ├── DeleteTableRecords.java │ │ │ │ ├── ReadTableRecords.java │ │ │ │ └── UpdateTableRecords.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── vault.properties │ └── working-with-transaction │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── database │ │ │ └── working_with_transaction │ │ │ ├── WorkingWithTransactionModule.java │ │ │ ├── entity │ │ │ ├── Invoice.java │ │ │ └── Product.java │ │ │ ├── service │ │ │ └── InvoicesSupplier.java │ │ │ └── tasks │ │ │ └── AddRecordsUsingTransaction.java │ │ └── resources │ │ ├── apm_run.properties │ │ └── vault.properties ├── email │ ├── attachments-reading │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── email │ │ │ │ └── attachments_reading │ │ │ │ ├── AttachmentsReadingModule.java │ │ │ │ └── tasks │ │ │ │ └── ReadMessagesWithAttachments.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── vault.properties │ ├── folders-listing │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── email │ │ │ │ └── folders_listing │ │ │ │ ├── FoldersListingModule.java │ │ │ │ └── tasks │ │ │ │ └── GetMailboxFolders.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── vault.properties │ ├── folders-manipulating │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── email │ │ │ │ └── folders_manipulating │ │ │ │ ├── FoldersManipulatingModule.java │ │ │ │ └── tasks │ │ │ │ ├── CreateNewFolder.java │ │ │ │ ├── DeleteFolder.java │ │ │ │ └── RenameFolder.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── vault.properties │ ├── inbox-messages-listing │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── email │ │ │ │ └── inbox_messages_listing │ │ │ │ ├── InboxMessagesListingModule.java │ │ │ │ └── tasks │ │ │ │ └── GetInboxMessages.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── vault.properties │ ├── message-sending-with-attachments │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── email │ │ │ │ └── message_sending_with_attachments │ │ │ │ ├── MessageSendingWithAttachmentsModule.java │ │ │ │ └── tasks │ │ │ │ └── SendMessageWithAttachment.java │ │ │ └── resources │ │ │ ├── Image.png │ │ │ ├── Test.xlsx │ │ │ ├── apm_run.properties │ │ │ └── vault.properties │ ├── message-waiting │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── email │ │ │ │ └── message_waiting │ │ │ │ ├── MessageWaitingModule.java │ │ │ │ └── tasks │ │ │ │ └── WaitMessagesWithKeywords.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── vault.properties │ ├── messages-manipulating │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── email │ │ │ │ └── messages_manipulating │ │ │ │ ├── MessagesManipulatingModule.java │ │ │ │ └── tasks │ │ │ │ ├── DeleteMessage.java │ │ │ │ ├── ForwardMessage.java │ │ │ │ ├── GetUnreadMessage.java │ │ │ │ ├── MarkMessageAsRead.java │ │ │ │ └── ReplyToMessage.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── vault.properties │ ├── messages-searching │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── email │ │ │ │ └── messages_searching │ │ │ │ ├── MessagesSearchingModule.java │ │ │ │ └── tasks │ │ │ │ ├── LookupMessagesWithAttachments.java │ │ │ │ └── LookupMessagesWithKeywords.java │ │ │ └── test │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── email │ │ │ │ └── messages_searching │ │ │ │ └── MessagesSearchingRunner.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── vault.properties │ ├── simple-message-sending │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── email │ │ │ │ └── simple_message_sending │ │ │ │ ├── SimpleMessageSendingModule.java │ │ │ │ └── tasks │ │ │ │ └── SendEmailMessage.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── vault.properties │ └── template-based-message-creating │ │ ├── README.md │ │ ├── message_screenshot.png │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── email │ │ │ │ └── template_based_message_creating │ │ │ │ ├── TemplateBasedMessageCreatingModule.java │ │ │ │ ├── emails │ │ │ │ └── BooksPropositionEmail.java │ │ │ │ ├── entities │ │ │ │ └── Book.java │ │ │ │ └── tasks │ │ │ │ └── SendEmailMessage.java │ │ └── resources │ │ │ └── email_templates │ │ │ ├── books_proposition.css │ │ │ └── books_proposition.ftl │ │ └── test │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── email │ │ │ └── template_based_message_creating │ │ │ └── TemplateBasedMessageCreatingRunner.java │ │ └── resources │ │ ├── apm_run.properties │ │ └── vault.properties ├── excel │ ├── cell-style-changing │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── cell_style_changing │ │ │ │ ├── CellStylesChangingModule.java │ │ │ │ └── tasks │ │ │ │ └── SetStyleForCells.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── source.xlsx │ ├── custom-vbs-running │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── custom_vbs_running │ │ │ │ ├── CustomVbsRunningModule.java │ │ │ │ └── tasks │ │ │ │ └── RunCustomVBScript.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ ├── custom.vbs │ │ │ └── input.xlsx │ ├── excel-file-creating │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── excel_file_creating │ │ │ │ ├── ExcelFileCreatingModule.java │ │ │ │ ├── entities │ │ │ │ ├── Passenger.java │ │ │ │ └── formatters │ │ │ │ │ ├── HeaderFormatter.java │ │ │ │ │ └── SurvivedFormatter.java │ │ │ │ └── tasks │ │ │ │ └── CreateNewSpreadsheetDocument.java │ │ │ └── test │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── excel_file_creating │ │ │ │ └── ExcelFileCreatingRunner.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── sample_data.json │ ├── excel-file-editing │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── excel_file_editing │ │ │ │ ├── ExcelFileEditingModule.java │ │ │ │ ├── entities │ │ │ │ ├── Passenger.java │ │ │ │ ├── formatters │ │ │ │ │ ├── AgeFormatter.java │ │ │ │ │ ├── HeaderFormatter.java │ │ │ │ │ └── SurvivedFormatter.java │ │ │ │ └── mappers │ │ │ │ │ └── SurvivedFieldMapper.java │ │ │ │ └── tasks │ │ │ │ ├── EditCellsOnSheet.java │ │ │ │ └── EditRecordsOnSheet.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── source.xlsx │ ├── excel-sheets-copying │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── excel_sheets_copying │ │ │ │ ├── SheetsCopyingModule.java │ │ │ │ └── tasks │ │ │ │ └── CopySheetBetweenSpreadsheets.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ ├── sample.xlsx │ │ │ ├── sheet_copy_target.xlsx │ │ │ └── source.xlsx │ ├── excel-sheets-manipulating │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── excel_sheets_manipulating │ │ │ │ ├── SheetsManipulatingModule.java │ │ │ │ └── tasks │ │ │ │ ├── ActivateSpecificSheet.java │ │ │ │ ├── CloneSheet.java │ │ │ │ ├── DeleteSheet.java │ │ │ │ ├── ListExistingSheets.java │ │ │ │ ├── MoveSheet.java │ │ │ │ └── RenameSheet.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── input.xlsx │ ├── export-to-pdf │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── export_to_pdf │ │ │ │ ├── ExportToPDFModule.java │ │ │ │ └── tasks │ │ │ │ └── ExportActiveSheetToPDF.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── source.xlsx │ ├── image-inserting │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── image_inserting │ │ │ │ ├── ImageInsertingModule.java │ │ │ │ └── tasks │ │ │ │ └── PutImageOnSheet.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ ├── image.png │ │ │ └── source.xlsx │ ├── macros-running │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── macros_running │ │ │ │ ├── MacrosRunningModule.java │ │ │ │ └── tasks │ │ │ │ └── RunMacro.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── input.xlsm │ ├── sheet-data-reading │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── sheet_data_reading │ │ │ │ ├── SheetDataReadingModule.java │ │ │ │ ├── entities │ │ │ │ ├── Passenger.java │ │ │ │ └── mappers │ │ │ │ │ └── SurvivedFieldMapper.java │ │ │ │ └── tasks │ │ │ │ ├── ReadListOfTypedRecords.java │ │ │ │ └── ReadRangeOfData.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── input.xlsx │ ├── working-with-columns │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── working_with_columns │ │ │ │ ├── WorkingWithColumnsModule.java │ │ │ │ └── tasks │ │ │ │ ├── AddInsertColumns.java │ │ │ │ ├── DeleteColumns.java │ │ │ │ ├── FilterTableColumns.java │ │ │ │ ├── MoveColumns.java │ │ │ │ ├── ReadColumnCells.java │ │ │ │ └── SortTableColumns.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── input.xlsx │ ├── working-with-formulas │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── working_with_formulas │ │ │ │ ├── WorkingWithFormulasModule.java │ │ │ │ └── tasks │ │ │ │ ├── EditCellFormulas.java │ │ │ │ ├── EvaluateFormulas.java │ │ │ │ ├── EvaluateFormulasWithExternalLinks.java │ │ │ │ └── Preparation.java │ │ │ └── resources │ │ │ ├── SharedData.xlsx │ │ │ ├── apm_run.properties │ │ │ └── input.xlsx │ ├── working-with-large-files │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── working_with_large_files │ │ │ │ ├── WorkingWithLargeFilesModule.java │ │ │ │ ├── entities │ │ │ │ ├── Passenger.java │ │ │ │ ├── formatters │ │ │ │ │ ├── AgeFormatter.java │ │ │ │ │ ├── HeaderFormatter.java │ │ │ │ │ └── SurvivedFormatter.java │ │ │ │ └── mappers │ │ │ │ │ └── SurvivedFieldMapper.java │ │ │ │ └── tasks │ │ │ │ ├── EditLargeFile.java │ │ │ │ └── ReadLargeFile.java │ │ │ └── test │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── working_with_large_files │ │ │ │ └── WorkingWithLargeFilesRunner.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── input_400k.xlsx │ ├── working-with-merged-cells │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── working_with_merged_cells │ │ │ │ ├── WorkingWithMergedCellsModule.java │ │ │ │ └── tasks │ │ │ │ ├── MergeUnmergeCells.java │ │ │ │ └── ReadEditMergedCellsValues.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── input.xlsx │ ├── working-with-pivot-tables │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── excel │ │ │ │ └── working_with_pivot_tables │ │ │ │ ├── WorkingWithPivotTablesModule.java │ │ │ │ └── tasks │ │ │ │ ├── CreatePivotTable.java │ │ │ │ ├── ReadPivotTable.java │ │ │ │ └── UpdatePivotTable.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ ├── input.xlsx │ │ │ └── input_read.xlsx │ └── working-with-rows │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── excel │ │ │ └── working_with_rows │ │ │ ├── WorkingWithRowsModule.java │ │ │ └── tasks │ │ │ ├── DeleteRows.java │ │ │ ├── InsertRows.java │ │ │ └── LookupAndEditRows.java │ │ └── resources │ │ ├── apm_run.properties │ │ └── input.xlsx ├── google-drive │ ├── drive-files-listing │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── google │ │ │ │ └── drive │ │ │ │ └── drive_files_listing │ │ │ │ ├── DriveFilesListingModule.java │ │ │ │ └── task │ │ │ │ └── ListAllFiles.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── vault.properties │ ├── drive-files-manipulating │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── google │ │ │ │ └── drive │ │ │ │ └── drive_files_manipulating │ │ │ │ ├── DriveFilesManipulatingModule.java │ │ │ │ └── task │ │ │ │ ├── DeleteFile.java │ │ │ │ ├── MoveFile.java │ │ │ │ ├── RenameFile.java │ │ │ │ └── UploadNewFile.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ ├── test.docx │ │ │ └── vault.properties │ └── drive-folders-manipulating │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── google │ │ │ └── drive │ │ │ └── drive_folders_manipulating │ │ │ ├── DriveFoldersManipulatingModule.java │ │ │ └── task │ │ │ ├── CreateFolder.java │ │ │ ├── DeleteFolder.java │ │ │ └── RenameFolder.java │ │ └── resources │ │ ├── apm_run.properties │ │ └── vault.properties ├── google-services │ ├── google-api-service-instantiation │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── eu │ │ │ │ └── easyrpa │ │ │ │ └── examples │ │ │ │ └── google │ │ │ │ └── services │ │ │ │ └── google_api_service_instantiation │ │ │ │ ├── GoogleApiServiceInstantiationModule.java │ │ │ │ └── task │ │ │ │ └── CreateGoogleCalendarService.java │ │ │ └── resources │ │ │ ├── apm_run.properties │ │ │ └── vault.properties │ └── passing-authorization-by-robot │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── google │ │ │ └── services │ │ │ └── passing_authorization_only_by_robot │ │ │ ├── PassingAuthorizationByRobotModule.java │ │ │ ├── system │ │ │ └── oauth_consent_screen │ │ │ │ ├── OAuthConsentScreenApplication.java │ │ │ │ └── pages │ │ │ │ ├── ConsentScreenPage.java │ │ │ │ └── LoginPage.java │ │ │ └── task │ │ │ └── ListAllFiles.java │ │ └── resources │ │ ├── apm_run.properties │ │ └── vault.properties └── google-sheets │ ├── cells-style-changing │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── google │ │ │ └── sheets │ │ │ └── cells_style_changing │ │ │ ├── CellsStyleChangingModule.java │ │ │ └── tasks │ │ │ └── SetStyleForCells.java │ │ └── resources │ │ ├── apm_run.properties │ │ ├── source.xlsx │ │ └── vault.properties │ ├── export-spreadsheet-to-xlsx │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── google │ │ │ └── sheets │ │ │ └── export_spreadsheet_to_xlsx │ │ │ ├── ExportSpreadsheetToXlsxModule.java │ │ │ └── tasks │ │ │ └── ExportSpreadsheet.java │ │ └── resources │ │ ├── apm_run.properties │ │ ├── source.xlsx │ │ └── vault.properties │ ├── spreadsheet-creating │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── google │ │ │ └── sheets │ │ │ └── spreadsheet_creating │ │ │ ├── SpreadsheetCreatingModule.java │ │ │ ├── entities │ │ │ ├── Passenger.java │ │ │ └── formatters │ │ │ │ ├── HeaderFormatter.java │ │ │ │ └── SurvivedFormatter.java │ │ │ └── tasks │ │ │ └── CreateNewSpreadsheetDocument.java │ │ └── resources │ │ ├── apm_run.properties │ │ ├── sample_data.json │ │ └── vault.properties │ ├── spreadsheet-editing │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── google │ │ │ └── sheets │ │ │ └── spreadsheet_editing │ │ │ ├── SpreadsheetEditingModule.java │ │ │ ├── entities │ │ │ ├── Passenger.java │ │ │ ├── formatters │ │ │ │ ├── AgeFormatter.java │ │ │ │ ├── HeaderFormatter.java │ │ │ │ └── SurvivedFormatter.java │ │ │ └── mappers │ │ │ │ └── SurvivedFieldMapper.java │ │ │ └── tasks │ │ │ ├── EditCellsOnSheet.java │ │ │ └── EditRecordsOnSheet.java │ │ └── resources │ │ ├── apm_run.properties │ │ ├── source.xlsx │ │ └── vault.properties │ ├── spreadsheet-reading │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── google │ │ │ └── sheets │ │ │ └── spreadsheet_reading │ │ │ ├── SpreadsheetReadingModule.java │ │ │ ├── entities │ │ │ ├── Passenger.java │ │ │ └── mappers │ │ │ │ └── SurvivedFieldMapper.java │ │ │ └── tasks │ │ │ ├── ReadListOfTypedRecords.java │ │ │ └── ReadRangeOfData.java │ │ └── resources │ │ ├── apm_run.properties │ │ ├── source.xlsx │ │ └── vault.properties │ ├── spreadsheet-sheets-copying │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── google │ │ │ └── sheets │ │ │ └── spreadsheet_sheets_copying │ │ │ ├── SpreadsheetSheetsCopyingModule.java │ │ │ └── tasks │ │ │ └── CopySheetBetweenSpreadsheets.java │ │ └── resources │ │ ├── apm_run.properties │ │ ├── sample.xlsx │ │ ├── sheet_copy_target.xlsx │ │ ├── source.xlsx │ │ └── vault.properties │ ├── spreadsheet-sheets-manipulating │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── google │ │ │ └── sheets │ │ │ └── spreadsheet_sheets_manipulating │ │ │ ├── SheetsManipulatingModule.java │ │ │ └── tasks │ │ │ ├── ActivateSpecificSheet.java │ │ │ ├── CloneSheet.java │ │ │ ├── DeleteSheet.java │ │ │ ├── ListExistingSheets.java │ │ │ ├── MoveSheet.java │ │ │ └── RenameSheet.java │ │ └── resources │ │ ├── apm_run.properties │ │ ├── source.xlsx │ │ └── vault.properties │ ├── working-with-cell-formulas │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── google │ │ │ └── sheets │ │ │ └── working_with_cell_formulas │ │ │ ├── WorkingWithCellFormulasModule.java │ │ │ └── tasks │ │ │ ├── EditCellFormulas.java │ │ │ └── EvaluateFormulas.java │ │ └── resources │ │ ├── apm_run.properties │ │ ├── source.xlsx │ │ └── vault.properties │ ├── working-with-merges │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── google │ │ │ └── sheets │ │ │ └── working_with_merges │ │ │ ├── WorkingWithMergesModule.java │ │ │ └── tasks │ │ │ ├── MergeUnmergeCells.java │ │ │ └── ReadEditMergedCellsValues.java │ │ └── resources │ │ ├── apm_run.properties │ │ ├── source.xlsx │ │ └── vault.properties │ ├── working-with-sheet-columns │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── eu │ │ │ └── easyrpa │ │ │ └── examples │ │ │ └── google │ │ │ └── sheets │ │ │ └── working_with_sheet_columns │ │ │ ├── WorkingWithSheetColumnsModule.java │ │ │ └── tasks │ │ │ ├── AddInsertColumns.java │ │ │ ├── DeleteColumns.java │ │ │ ├── MoveColumns.java │ │ │ └── ReadColumnCells.java │ │ └── resources │ │ ├── apm_run.properties │ │ ├── source.xlsx │ │ └── vault.properties │ └── working-with-sheet-rows │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── eu │ │ └── easyrpa │ │ └── examples │ │ └── google │ │ └── sheets │ │ └── working_with_sheet_rows │ │ ├── WorkingWithSheetRowsModule.java │ │ └── tasks │ │ ├── DeleteRows.java │ │ ├── InsertRows.java │ │ └── LookupAndEditRows.java │ └── resources │ ├── apm_run.properties │ ├── source.xlsx │ └── vault.properties └── libraries ├── core ├── README.md ├── pom.xml └── src │ └── main │ └── java │ └── eu │ └── easyrpa │ └── openframework │ └── core │ ├── model │ ├── FileData.java │ └── package-info.java │ ├── sevices │ ├── RPAServicesAccessor.java │ └── package-info.java │ └── utils │ ├── FilePathUtils.java │ ├── MemoryMonitor.java │ ├── NameUtils.java │ ├── TypeUtils.java │ └── package-info.java ├── database ├── README.md ├── pom.xml └── src │ └── main │ └── java │ └── eu │ └── easyrpa │ └── openframework │ └── database │ ├── DatabaseConnection.java │ ├── DatabaseParams.java │ ├── DatabaseService.java │ ├── exceptions │ ├── DatabaseException.java │ ├── RollbackTransactionException.java │ └── package-info.java │ ├── function │ ├── DatabaseConsumer.java │ ├── DatabaseFunction.java │ └── package-info.java │ └── package-info.java ├── email ├── README.md ├── pom.xml └── src │ └── main │ └── java │ └── eu │ └── easyrpa │ └── openframework │ └── email │ ├── EmailClient.java │ ├── EmailMessage.java │ ├── EmailSender.java │ ├── constants │ ├── EmailConfigParam.java │ └── package-info.java │ ├── exception │ ├── BreakEmailFetchException.java │ ├── EmailMessagingException.java │ └── package-info.java │ ├── message │ ├── EmailAddress.java │ ├── EmailAttachment.java │ ├── EmailBodyPart.java │ ├── package-info.java │ ├── templates │ │ ├── FreeMarkerTemplate.java │ │ ├── TextTemplate.java │ │ └── package-info.java │ └── tnef │ │ ├── RtfConverter.java │ │ └── TNEFMailMessageConverter.java │ ├── package-info.java │ ├── search │ ├── ComparisonCondition.java │ ├── LogicalCondition.java │ ├── SearchCondition.java │ ├── SearchQuery.java │ └── SearchableField.java │ ├── service │ ├── EmailServiceFactory.java │ ├── EmailServiceSecret.java │ ├── InboundEmailProtocol.java │ ├── InboundEmailService.java │ ├── MessageConverter.java │ ├── OutboundEmailProtocol.java │ ├── OutboundEmailService.java │ ├── javax │ │ ├── ImapPop3EmailService.java │ │ ├── MimeMessageConverter.java │ │ ├── MimeMessageWrapper.java │ │ ├── SearchTermConverter.java │ │ ├── SmtpEmailService.java │ │ └── package-info.java │ ├── package-info.java │ └── rpaplatform │ │ └── RPAPlatformEmailService.java │ └── utils │ ├── EmailParsingUtils.java │ └── package-info.java ├── excel ├── README.md ├── pom.xml └── src │ └── main │ ├── java │ └── eu │ │ └── easyrpa │ │ └── openframework │ │ └── excel │ │ ├── Cell.java │ │ ├── CellRange.java │ │ ├── CellRef.java │ │ ├── Column.java │ │ ├── ExcelCellsFormat.java │ │ ├── ExcelDocument.java │ │ ├── PivotTableField.java │ │ ├── PivotTableParams.java │ │ ├── Row.java │ │ ├── Sheet.java │ │ ├── Table.java │ │ ├── annotations │ │ ├── ExcelCellStyle.java │ │ ├── ExcelColumn.java │ │ ├── ExcelTable.java │ │ └── package-info.java │ │ ├── constants │ │ ├── DataFormats.java │ │ ├── ExcelColors.java │ │ ├── FontOffsetType.java │ │ ├── FontUnderlineStyle.java │ │ ├── InsertMethod.java │ │ ├── MatchMethod.java │ │ ├── PivotValueSumType.java │ │ ├── SortDirection.java │ │ └── package-info.java │ │ ├── exceptions │ │ ├── VBScriptExecutionException.java │ │ └── package-info.java │ │ ├── function │ │ ├── ColumnFormatter.java │ │ ├── FieldMapper.java │ │ ├── TableFormatter.java │ │ └── package-info.java │ │ ├── internal │ │ ├── RecordTypeHelper.java │ │ └── poi │ │ │ ├── POIElementsCache.java │ │ │ ├── POISaveMemoryExtension.java │ │ │ ├── SheetRowsProvider.java │ │ │ ├── SheetRowsWriter.java │ │ │ ├── StaleRecordException.java │ │ │ ├── WorksheetOutputStream.java │ │ │ ├── XSSFEvaluationCellExt.java │ │ │ ├── XSSFEvaluationSheetExt.java │ │ │ ├── XSSFEvaluationWorkbookExt.java │ │ │ ├── XSSFFormulaEvaluatorExt.java │ │ │ ├── XSSFRowColExtShifter.java │ │ │ ├── XSSFRowExt.java │ │ │ └── XSSFSheetExt.java │ │ ├── package-info.java │ │ ├── style │ │ ├── DataFormat.java │ │ ├── ExcelCellStyle.java │ │ ├── ExcelColor.java │ │ └── package-info.java │ │ └── vbscript │ │ ├── ColumnInsert.java │ │ ├── ColumnsDelete.java │ │ ├── ColumnsMove.java │ │ ├── ExportToPDF.java │ │ ├── Filter.java │ │ ├── MacroRunner.java │ │ ├── PivotTableScript.java │ │ ├── Sorter.java │ │ ├── VBScript.java │ │ ├── VBScriptProcessor.java │ │ └── package-info.java │ └── resources │ └── vbscript │ ├── categoryFilter.vbs │ ├── columnInsert.vbs │ ├── columnsDelete.vbs │ ├── columnsMove.vbs │ ├── exportToPDF.vbs │ ├── filter.vbs │ ├── filterPivotTable.vbs │ ├── multiFilterPivotTable.vbs │ ├── pivotTable.vbs │ ├── removeColumn.vbs │ ├── runMacro.vbs │ ├── saveAs.vbs │ └── sort.vbs ├── google-drive ├── README.md ├── pom.xml └── src │ └── main │ └── java │ └── eu │ └── easyrpa │ └── openframework │ └── google │ └── drive │ ├── GoogleDrive.java │ ├── constants │ ├── GDriveConfigParam.java │ └── package-info.java │ ├── exceptions │ ├── GoogleDriveException.java │ └── package-info.java │ ├── model │ ├── GFile.java │ ├── GFileId.java │ ├── GFileInfo.java │ ├── GFileType.java │ └── package-info.java │ ├── package-info.java │ └── service │ ├── GoogleDriveService.java │ └── package-info.java ├── google-services ├── README.md ├── pom.xml └── src │ └── main │ └── java │ └── eu │ └── easyrpa │ └── openframework │ └── google │ └── services │ ├── AuthorizationPerformer.java │ ├── GoogleAuth.java │ ├── GoogleServicesProvider.java │ ├── constants │ ├── GServicesConfigParam.java │ └── package-info.java │ ├── exceptions │ ├── GoogleAuthException.java │ └── package-info.java │ └── package-info.java └── google-sheets ├── README.md ├── pom.xml └── src └── main └── java └── eu └── easyrpa └── openframework └── google └── sheets ├── Cell.java ├── CellRange.java ├── CellRef.java ├── CellStyle.java ├── Column.java ├── GoogleSheets.java ├── Row.java ├── Sheet.java ├── SpreadsheetDocument.java ├── Table.java ├── annotations ├── GSheetCellStyle.java ├── GSheetColumn.java ├── GSheetTable.java └── package-info.java ├── constants ├── BorderStyle.java ├── Colors.java ├── FontFamily.java ├── HorizontalAlignment.java ├── InsertMethod.java ├── MatchMethod.java ├── NumberFormats.java ├── VerticalAlignment.java ├── WrapStrategy.java └── package-info.java ├── exceptions ├── SpreadsheetException.java └── package-info.java ├── function ├── ColumnFormatter.java ├── FieldMapper.java ├── TableFormatter.java └── package-info.java ├── internal ├── RecordTypeHelper.java └── SpreadsheetUpdateRequestsBatch.java ├── package-info.java └── utils ├── SpreadsheetDateUtil.java └── package-info.java /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/core-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/.github/workflows/core-release.yml -------------------------------------------------------------------------------- /.github/workflows/database-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/.github/workflows/database-release.yml -------------------------------------------------------------------------------- /.github/workflows/email-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/.github/workflows/email-release.yml -------------------------------------------------------------------------------- /.github/workflows/excel-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/.github/workflows/excel-release.yml -------------------------------------------------------------------------------- /.github/workflows/google-drive-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/.github/workflows/google-drive-release.yml -------------------------------------------------------------------------------- /.github/workflows/google-services-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/.github/workflows/google-services-release.yml -------------------------------------------------------------------------------- /.github/workflows/google-sheets-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/.github/workflows/google-sheets-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/database/tables-manipulating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/tables-manipulating/README.md -------------------------------------------------------------------------------- /examples/database/tables-manipulating/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/tables-manipulating/pom.xml -------------------------------------------------------------------------------- /examples/database/tables-manipulating/src/main/java/eu/easyrpa/examples/database/tables_manipulating/TablesManipulatingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/tables-manipulating/src/main/java/eu/easyrpa/examples/database/tables_manipulating/TablesManipulatingModule.java -------------------------------------------------------------------------------- /examples/database/tables-manipulating/src/main/java/eu/easyrpa/examples/database/tables_manipulating/entity/Invoice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/tables-manipulating/src/main/java/eu/easyrpa/examples/database/tables_manipulating/entity/Invoice.java -------------------------------------------------------------------------------- /examples/database/tables-manipulating/src/main/java/eu/easyrpa/examples/database/tables_manipulating/entity/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/tables-manipulating/src/main/java/eu/easyrpa/examples/database/tables_manipulating/entity/Product.java -------------------------------------------------------------------------------- /examples/database/tables-manipulating/src/main/java/eu/easyrpa/examples/database/tables_manipulating/tasks/CreateEntityTables.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/tables-manipulating/src/main/java/eu/easyrpa/examples/database/tables_manipulating/tasks/CreateEntityTables.java -------------------------------------------------------------------------------- /examples/database/tables-manipulating/src/main/java/eu/easyrpa/examples/database/tables_manipulating/tasks/DropEntityTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/tables-manipulating/src/main/java/eu/easyrpa/examples/database/tables_manipulating/tasks/DropEntityTable.java -------------------------------------------------------------------------------- /examples/database/tables-manipulating/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- 1 | invoices.db.params=testdb 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/database/tables-manipulating/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/tables-manipulating/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/database/working-with-different-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-different-db/README.md -------------------------------------------------------------------------------- /examples/database/working-with-different-db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-different-db/pom.xml -------------------------------------------------------------------------------- /examples/database/working-with-different-db/src/main/java/eu/easyrpa/examples/database/working_with_different_db/WorkingWithDifferentDbModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-different-db/src/main/java/eu/easyrpa/examples/database/working_with_different_db/WorkingWithDifferentDbModule.java -------------------------------------------------------------------------------- /examples/database/working-with-different-db/src/main/java/eu/easyrpa/examples/database/working_with_different_db/tasks/WorkWithSeveralDatabases.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-different-db/src/main/java/eu/easyrpa/examples/database/working_with_different_db/tasks/WorkWithSeveralDatabases.java -------------------------------------------------------------------------------- /examples/database/working-with-different-db/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-different-db/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/database/working-with-raw-sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-raw-sql/README.md -------------------------------------------------------------------------------- /examples/database/working-with-raw-sql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-raw-sql/pom.xml -------------------------------------------------------------------------------- /examples/database/working-with-raw-sql/src/main/java/eu/easyrpa/examples/database/working_with_raw_sql/WorkingWithRawSqlModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-raw-sql/src/main/java/eu/easyrpa/examples/database/working_with_raw_sql/WorkingWithRawSqlModule.java -------------------------------------------------------------------------------- /examples/database/working-with-raw-sql/src/main/java/eu/easyrpa/examples/database/working_with_raw_sql/tasks/CreateInvoicesTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-raw-sql/src/main/java/eu/easyrpa/examples/database/working_with_raw_sql/tasks/CreateInvoicesTable.java -------------------------------------------------------------------------------- /examples/database/working-with-raw-sql/src/main/java/eu/easyrpa/examples/database/working_with_raw_sql/tasks/DeleteOutdatedInvoices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-raw-sql/src/main/java/eu/easyrpa/examples/database/working_with_raw_sql/tasks/DeleteOutdatedInvoices.java -------------------------------------------------------------------------------- /examples/database/working-with-raw-sql/src/main/java/eu/easyrpa/examples/database/working_with_raw_sql/tasks/InsertInvoiceRecords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-raw-sql/src/main/java/eu/easyrpa/examples/database/working_with_raw_sql/tasks/InsertInvoiceRecords.java -------------------------------------------------------------------------------- /examples/database/working-with-raw-sql/src/main/java/eu/easyrpa/examples/database/working_with_raw_sql/tasks/SelectInvoicesFromTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-raw-sql/src/main/java/eu/easyrpa/examples/database/working_with_raw_sql/tasks/SelectInvoicesFromTable.java -------------------------------------------------------------------------------- /examples/database/working-with-raw-sql/src/main/java/eu/easyrpa/examples/database/working_with_raw_sql/tasks/UpdateOutdatedInvoices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-raw-sql/src/main/java/eu/easyrpa/examples/database/working_with_raw_sql/tasks/UpdateOutdatedInvoices.java -------------------------------------------------------------------------------- /examples/database/working-with-raw-sql/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- 1 | invoices.db.params=testdb 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/database/working-with-raw-sql/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-raw-sql/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/database/working-with-table-records/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-table-records/README.md -------------------------------------------------------------------------------- /examples/database/working-with-table-records/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-table-records/pom.xml -------------------------------------------------------------------------------- /examples/database/working-with-table-records/src/main/java/eu/easyrpa/examples/database/working_with_table_records/WorkingWithTableRecordsModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-table-records/src/main/java/eu/easyrpa/examples/database/working_with_table_records/WorkingWithTableRecordsModule.java -------------------------------------------------------------------------------- /examples/database/working-with-table-records/src/main/java/eu/easyrpa/examples/database/working_with_table_records/entity/Invoice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-table-records/src/main/java/eu/easyrpa/examples/database/working_with_table_records/entity/Invoice.java -------------------------------------------------------------------------------- /examples/database/working-with-table-records/src/main/java/eu/easyrpa/examples/database/working_with_table_records/service/InvoicesSupplier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-table-records/src/main/java/eu/easyrpa/examples/database/working_with_table_records/service/InvoicesSupplier.java -------------------------------------------------------------------------------- /examples/database/working-with-table-records/src/main/java/eu/easyrpa/examples/database/working_with_table_records/tasks/AddNewTableRecords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-table-records/src/main/java/eu/easyrpa/examples/database/working_with_table_records/tasks/AddNewTableRecords.java -------------------------------------------------------------------------------- /examples/database/working-with-table-records/src/main/java/eu/easyrpa/examples/database/working_with_table_records/tasks/DeleteTableRecords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-table-records/src/main/java/eu/easyrpa/examples/database/working_with_table_records/tasks/DeleteTableRecords.java -------------------------------------------------------------------------------- /examples/database/working-with-table-records/src/main/java/eu/easyrpa/examples/database/working_with_table_records/tasks/ReadTableRecords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-table-records/src/main/java/eu/easyrpa/examples/database/working_with_table_records/tasks/ReadTableRecords.java -------------------------------------------------------------------------------- /examples/database/working-with-table-records/src/main/java/eu/easyrpa/examples/database/working_with_table_records/tasks/UpdateTableRecords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-table-records/src/main/java/eu/easyrpa/examples/database/working_with_table_records/tasks/UpdateTableRecords.java -------------------------------------------------------------------------------- /examples/database/working-with-table-records/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- 1 | invoices.db.params=testdb 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/database/working-with-table-records/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-table-records/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/database/working-with-transaction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-transaction/README.md -------------------------------------------------------------------------------- /examples/database/working-with-transaction/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-transaction/pom.xml -------------------------------------------------------------------------------- /examples/database/working-with-transaction/src/main/java/eu/easyrpa/examples/database/working_with_transaction/WorkingWithTransactionModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-transaction/src/main/java/eu/easyrpa/examples/database/working_with_transaction/WorkingWithTransactionModule.java -------------------------------------------------------------------------------- /examples/database/working-with-transaction/src/main/java/eu/easyrpa/examples/database/working_with_transaction/entity/Invoice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-transaction/src/main/java/eu/easyrpa/examples/database/working_with_transaction/entity/Invoice.java -------------------------------------------------------------------------------- /examples/database/working-with-transaction/src/main/java/eu/easyrpa/examples/database/working_with_transaction/entity/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-transaction/src/main/java/eu/easyrpa/examples/database/working_with_transaction/entity/Product.java -------------------------------------------------------------------------------- /examples/database/working-with-transaction/src/main/java/eu/easyrpa/examples/database/working_with_transaction/service/InvoicesSupplier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-transaction/src/main/java/eu/easyrpa/examples/database/working_with_transaction/service/InvoicesSupplier.java -------------------------------------------------------------------------------- /examples/database/working-with-transaction/src/main/java/eu/easyrpa/examples/database/working_with_transaction/tasks/AddRecordsUsingTransaction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-transaction/src/main/java/eu/easyrpa/examples/database/working_with_transaction/tasks/AddRecordsUsingTransaction.java -------------------------------------------------------------------------------- /examples/database/working-with-transaction/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- 1 | invoices.db.params=testdb 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/database/working-with-transaction/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/database/working-with-transaction/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/email/attachments-reading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/attachments-reading/README.md -------------------------------------------------------------------------------- /examples/email/attachments-reading/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/attachments-reading/pom.xml -------------------------------------------------------------------------------- /examples/email/attachments-reading/src/main/java/eu/easyrpa/examples/email/attachments_reading/AttachmentsReadingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/attachments-reading/src/main/java/eu/easyrpa/examples/email/attachments_reading/AttachmentsReadingModule.java -------------------------------------------------------------------------------- /examples/email/attachments-reading/src/main/java/eu/easyrpa/examples/email/attachments_reading/tasks/ReadMessagesWithAttachments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/attachments-reading/src/main/java/eu/easyrpa/examples/email/attachments_reading/tasks/ReadMessagesWithAttachments.java -------------------------------------------------------------------------------- /examples/email/attachments-reading/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/attachments-reading/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/email/attachments-reading/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/attachments-reading/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/email/folders-listing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/folders-listing/README.md -------------------------------------------------------------------------------- /examples/email/folders-listing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/folders-listing/pom.xml -------------------------------------------------------------------------------- /examples/email/folders-listing/src/main/java/eu/easyrpa/examples/email/folders_listing/FoldersListingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/folders-listing/src/main/java/eu/easyrpa/examples/email/folders_listing/FoldersListingModule.java -------------------------------------------------------------------------------- /examples/email/folders-listing/src/main/java/eu/easyrpa/examples/email/folders_listing/tasks/GetMailboxFolders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/folders-listing/src/main/java/eu/easyrpa/examples/email/folders_listing/tasks/GetMailboxFolders.java -------------------------------------------------------------------------------- /examples/email/folders-listing/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/folders-listing/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/email/folders-listing/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/folders-listing/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/email/folders-manipulating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/folders-manipulating/README.md -------------------------------------------------------------------------------- /examples/email/folders-manipulating/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/folders-manipulating/pom.xml -------------------------------------------------------------------------------- /examples/email/folders-manipulating/src/main/java/eu/easyrpa/examples/email/folders_manipulating/FoldersManipulatingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/folders-manipulating/src/main/java/eu/easyrpa/examples/email/folders_manipulating/FoldersManipulatingModule.java -------------------------------------------------------------------------------- /examples/email/folders-manipulating/src/main/java/eu/easyrpa/examples/email/folders_manipulating/tasks/CreateNewFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/folders-manipulating/src/main/java/eu/easyrpa/examples/email/folders_manipulating/tasks/CreateNewFolder.java -------------------------------------------------------------------------------- /examples/email/folders-manipulating/src/main/java/eu/easyrpa/examples/email/folders_manipulating/tasks/DeleteFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/folders-manipulating/src/main/java/eu/easyrpa/examples/email/folders_manipulating/tasks/DeleteFolder.java -------------------------------------------------------------------------------- /examples/email/folders-manipulating/src/main/java/eu/easyrpa/examples/email/folders_manipulating/tasks/RenameFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/folders-manipulating/src/main/java/eu/easyrpa/examples/email/folders_manipulating/tasks/RenameFolder.java -------------------------------------------------------------------------------- /examples/email/folders-manipulating/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/folders-manipulating/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/email/folders-manipulating/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/folders-manipulating/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/email/inbox-messages-listing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/inbox-messages-listing/README.md -------------------------------------------------------------------------------- /examples/email/inbox-messages-listing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/inbox-messages-listing/pom.xml -------------------------------------------------------------------------------- /examples/email/inbox-messages-listing/src/main/java/eu/easyrpa/examples/email/inbox_messages_listing/InboxMessagesListingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/inbox-messages-listing/src/main/java/eu/easyrpa/examples/email/inbox_messages_listing/InboxMessagesListingModule.java -------------------------------------------------------------------------------- /examples/email/inbox-messages-listing/src/main/java/eu/easyrpa/examples/email/inbox_messages_listing/tasks/GetInboxMessages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/inbox-messages-listing/src/main/java/eu/easyrpa/examples/email/inbox_messages_listing/tasks/GetInboxMessages.java -------------------------------------------------------------------------------- /examples/email/inbox-messages-listing/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/inbox-messages-listing/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/email/inbox-messages-listing/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/inbox-messages-listing/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/email/message-sending-with-attachments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/message-sending-with-attachments/README.md -------------------------------------------------------------------------------- /examples/email/message-sending-with-attachments/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/message-sending-with-attachments/pom.xml -------------------------------------------------------------------------------- /examples/email/message-sending-with-attachments/src/main/java/eu/easyrpa/examples/email/message_sending_with_attachments/tasks/SendMessageWithAttachment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/message-sending-with-attachments/src/main/java/eu/easyrpa/examples/email/message_sending_with_attachments/tasks/SendMessageWithAttachment.java -------------------------------------------------------------------------------- /examples/email/message-sending-with-attachments/src/main/resources/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/message-sending-with-attachments/src/main/resources/Image.png -------------------------------------------------------------------------------- /examples/email/message-sending-with-attachments/src/main/resources/Test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/message-sending-with-attachments/src/main/resources/Test.xlsx -------------------------------------------------------------------------------- /examples/email/message-sending-with-attachments/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/message-sending-with-attachments/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/email/message-sending-with-attachments/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/message-sending-with-attachments/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/email/message-waiting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/message-waiting/README.md -------------------------------------------------------------------------------- /examples/email/message-waiting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/message-waiting/pom.xml -------------------------------------------------------------------------------- /examples/email/message-waiting/src/main/java/eu/easyrpa/examples/email/message_waiting/MessageWaitingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/message-waiting/src/main/java/eu/easyrpa/examples/email/message_waiting/MessageWaitingModule.java -------------------------------------------------------------------------------- /examples/email/message-waiting/src/main/java/eu/easyrpa/examples/email/message_waiting/tasks/WaitMessagesWithKeywords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/message-waiting/src/main/java/eu/easyrpa/examples/email/message_waiting/tasks/WaitMessagesWithKeywords.java -------------------------------------------------------------------------------- /examples/email/message-waiting/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/message-waiting/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/email/message-waiting/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/message-waiting/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/email/messages-manipulating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-manipulating/README.md -------------------------------------------------------------------------------- /examples/email/messages-manipulating/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-manipulating/pom.xml -------------------------------------------------------------------------------- /examples/email/messages-manipulating/src/main/java/eu/easyrpa/examples/email/messages_manipulating/MessagesManipulatingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-manipulating/src/main/java/eu/easyrpa/examples/email/messages_manipulating/MessagesManipulatingModule.java -------------------------------------------------------------------------------- /examples/email/messages-manipulating/src/main/java/eu/easyrpa/examples/email/messages_manipulating/tasks/DeleteMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-manipulating/src/main/java/eu/easyrpa/examples/email/messages_manipulating/tasks/DeleteMessage.java -------------------------------------------------------------------------------- /examples/email/messages-manipulating/src/main/java/eu/easyrpa/examples/email/messages_manipulating/tasks/ForwardMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-manipulating/src/main/java/eu/easyrpa/examples/email/messages_manipulating/tasks/ForwardMessage.java -------------------------------------------------------------------------------- /examples/email/messages-manipulating/src/main/java/eu/easyrpa/examples/email/messages_manipulating/tasks/GetUnreadMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-manipulating/src/main/java/eu/easyrpa/examples/email/messages_manipulating/tasks/GetUnreadMessage.java -------------------------------------------------------------------------------- /examples/email/messages-manipulating/src/main/java/eu/easyrpa/examples/email/messages_manipulating/tasks/MarkMessageAsRead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-manipulating/src/main/java/eu/easyrpa/examples/email/messages_manipulating/tasks/MarkMessageAsRead.java -------------------------------------------------------------------------------- /examples/email/messages-manipulating/src/main/java/eu/easyrpa/examples/email/messages_manipulating/tasks/ReplyToMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-manipulating/src/main/java/eu/easyrpa/examples/email/messages_manipulating/tasks/ReplyToMessage.java -------------------------------------------------------------------------------- /examples/email/messages-manipulating/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-manipulating/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/email/messages-manipulating/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-manipulating/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/email/messages-searching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-searching/README.md -------------------------------------------------------------------------------- /examples/email/messages-searching/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-searching/pom.xml -------------------------------------------------------------------------------- /examples/email/messages-searching/src/main/java/eu/easyrpa/examples/email/messages_searching/MessagesSearchingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-searching/src/main/java/eu/easyrpa/examples/email/messages_searching/MessagesSearchingModule.java -------------------------------------------------------------------------------- /examples/email/messages-searching/src/main/java/eu/easyrpa/examples/email/messages_searching/tasks/LookupMessagesWithAttachments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-searching/src/main/java/eu/easyrpa/examples/email/messages_searching/tasks/LookupMessagesWithAttachments.java -------------------------------------------------------------------------------- /examples/email/messages-searching/src/main/java/eu/easyrpa/examples/email/messages_searching/tasks/LookupMessagesWithKeywords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-searching/src/main/java/eu/easyrpa/examples/email/messages_searching/tasks/LookupMessagesWithKeywords.java -------------------------------------------------------------------------------- /examples/email/messages-searching/src/test/java/eu/easyrpa/examples/email/messages_searching/MessagesSearchingRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-searching/src/test/java/eu/easyrpa/examples/email/messages_searching/MessagesSearchingRunner.java -------------------------------------------------------------------------------- /examples/email/messages-searching/src/test/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-searching/src/test/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/email/messages-searching/src/test/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/messages-searching/src/test/resources/vault.properties -------------------------------------------------------------------------------- /examples/email/simple-message-sending/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/simple-message-sending/README.md -------------------------------------------------------------------------------- /examples/email/simple-message-sending/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/simple-message-sending/pom.xml -------------------------------------------------------------------------------- /examples/email/simple-message-sending/src/main/java/eu/easyrpa/examples/email/simple_message_sending/SimpleMessageSendingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/simple-message-sending/src/main/java/eu/easyrpa/examples/email/simple_message_sending/SimpleMessageSendingModule.java -------------------------------------------------------------------------------- /examples/email/simple-message-sending/src/main/java/eu/easyrpa/examples/email/simple_message_sending/tasks/SendEmailMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/simple-message-sending/src/main/java/eu/easyrpa/examples/email/simple_message_sending/tasks/SendEmailMessage.java -------------------------------------------------------------------------------- /examples/email/simple-message-sending/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/simple-message-sending/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/email/simple-message-sending/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/simple-message-sending/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/email/template-based-message-creating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/template-based-message-creating/README.md -------------------------------------------------------------------------------- /examples/email/template-based-message-creating/message_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/template-based-message-creating/message_screenshot.png -------------------------------------------------------------------------------- /examples/email/template-based-message-creating/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/template-based-message-creating/pom.xml -------------------------------------------------------------------------------- /examples/email/template-based-message-creating/src/main/java/eu/easyrpa/examples/email/template_based_message_creating/TemplateBasedMessageCreatingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/template-based-message-creating/src/main/java/eu/easyrpa/examples/email/template_based_message_creating/TemplateBasedMessageCreatingModule.java -------------------------------------------------------------------------------- /examples/email/template-based-message-creating/src/main/java/eu/easyrpa/examples/email/template_based_message_creating/emails/BooksPropositionEmail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/template-based-message-creating/src/main/java/eu/easyrpa/examples/email/template_based_message_creating/emails/BooksPropositionEmail.java -------------------------------------------------------------------------------- /examples/email/template-based-message-creating/src/main/java/eu/easyrpa/examples/email/template_based_message_creating/entities/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/template-based-message-creating/src/main/java/eu/easyrpa/examples/email/template_based_message_creating/entities/Book.java -------------------------------------------------------------------------------- /examples/email/template-based-message-creating/src/main/java/eu/easyrpa/examples/email/template_based_message_creating/tasks/SendEmailMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/template-based-message-creating/src/main/java/eu/easyrpa/examples/email/template_based_message_creating/tasks/SendEmailMessage.java -------------------------------------------------------------------------------- /examples/email/template-based-message-creating/src/main/resources/email_templates/books_proposition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/template-based-message-creating/src/main/resources/email_templates/books_proposition.css -------------------------------------------------------------------------------- /examples/email/template-based-message-creating/src/main/resources/email_templates/books_proposition.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/template-based-message-creating/src/main/resources/email_templates/books_proposition.ftl -------------------------------------------------------------------------------- /examples/email/template-based-message-creating/src/test/java/eu/easyrpa/examples/email/template_based_message_creating/TemplateBasedMessageCreatingRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/template-based-message-creating/src/test/java/eu/easyrpa/examples/email/template_based_message_creating/TemplateBasedMessageCreatingRunner.java -------------------------------------------------------------------------------- /examples/email/template-based-message-creating/src/test/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/template-based-message-creating/src/test/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/email/template-based-message-creating/src/test/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/email/template-based-message-creating/src/test/resources/vault.properties -------------------------------------------------------------------------------- /examples/excel/cell-style-changing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/cell-style-changing/README.md -------------------------------------------------------------------------------- /examples/excel/cell-style-changing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/cell-style-changing/pom.xml -------------------------------------------------------------------------------- /examples/excel/cell-style-changing/src/main/java/eu/easyrpa/examples/excel/cell_style_changing/CellStylesChangingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/cell-style-changing/src/main/java/eu/easyrpa/examples/excel/cell_style_changing/CellStylesChangingModule.java -------------------------------------------------------------------------------- /examples/excel/cell-style-changing/src/main/java/eu/easyrpa/examples/excel/cell_style_changing/tasks/SetStyleForCells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/cell-style-changing/src/main/java/eu/easyrpa/examples/excel/cell_style_changing/tasks/SetStyleForCells.java -------------------------------------------------------------------------------- /examples/excel/cell-style-changing/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/cell-style-changing/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/cell-style-changing/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/cell-style-changing/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/excel/custom-vbs-running/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/custom-vbs-running/README.md -------------------------------------------------------------------------------- /examples/excel/custom-vbs-running/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/custom-vbs-running/pom.xml -------------------------------------------------------------------------------- /examples/excel/custom-vbs-running/src/main/java/eu/easyrpa/examples/excel/custom_vbs_running/CustomVbsRunningModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/custom-vbs-running/src/main/java/eu/easyrpa/examples/excel/custom_vbs_running/CustomVbsRunningModule.java -------------------------------------------------------------------------------- /examples/excel/custom-vbs-running/src/main/java/eu/easyrpa/examples/excel/custom_vbs_running/tasks/RunCustomVBScript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/custom-vbs-running/src/main/java/eu/easyrpa/examples/excel/custom_vbs_running/tasks/RunCustomVBScript.java -------------------------------------------------------------------------------- /examples/excel/custom-vbs-running/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/custom-vbs-running/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/custom-vbs-running/src/main/resources/custom.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/custom-vbs-running/src/main/resources/custom.vbs -------------------------------------------------------------------------------- /examples/excel/custom-vbs-running/src/main/resources/input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/custom-vbs-running/src/main/resources/input.xlsx -------------------------------------------------------------------------------- /examples/excel/excel-file-creating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-creating/README.md -------------------------------------------------------------------------------- /examples/excel/excel-file-creating/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-creating/pom.xml -------------------------------------------------------------------------------- /examples/excel/excel-file-creating/src/main/java/eu/easyrpa/examples/excel/excel_file_creating/ExcelFileCreatingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-creating/src/main/java/eu/easyrpa/examples/excel/excel_file_creating/ExcelFileCreatingModule.java -------------------------------------------------------------------------------- /examples/excel/excel-file-creating/src/main/java/eu/easyrpa/examples/excel/excel_file_creating/entities/Passenger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-creating/src/main/java/eu/easyrpa/examples/excel/excel_file_creating/entities/Passenger.java -------------------------------------------------------------------------------- /examples/excel/excel-file-creating/src/main/java/eu/easyrpa/examples/excel/excel_file_creating/entities/formatters/HeaderFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-creating/src/main/java/eu/easyrpa/examples/excel/excel_file_creating/entities/formatters/HeaderFormatter.java -------------------------------------------------------------------------------- /examples/excel/excel-file-creating/src/main/java/eu/easyrpa/examples/excel/excel_file_creating/entities/formatters/SurvivedFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-creating/src/main/java/eu/easyrpa/examples/excel/excel_file_creating/entities/formatters/SurvivedFormatter.java -------------------------------------------------------------------------------- /examples/excel/excel-file-creating/src/main/java/eu/easyrpa/examples/excel/excel_file_creating/tasks/CreateNewSpreadsheetDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-creating/src/main/java/eu/easyrpa/examples/excel/excel_file_creating/tasks/CreateNewSpreadsheetDocument.java -------------------------------------------------------------------------------- /examples/excel/excel-file-creating/src/test/java/eu/easyrpa/examples/excel/excel_file_creating/ExcelFileCreatingRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-creating/src/test/java/eu/easyrpa/examples/excel/excel_file_creating/ExcelFileCreatingRunner.java -------------------------------------------------------------------------------- /examples/excel/excel-file-creating/src/test/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-creating/src/test/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/excel-file-creating/src/test/resources/sample_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-creating/src/test/resources/sample_data.json -------------------------------------------------------------------------------- /examples/excel/excel-file-editing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-editing/README.md -------------------------------------------------------------------------------- /examples/excel/excel-file-editing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-editing/pom.xml -------------------------------------------------------------------------------- /examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/ExcelFileEditingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/ExcelFileEditingModule.java -------------------------------------------------------------------------------- /examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/entities/Passenger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/entities/Passenger.java -------------------------------------------------------------------------------- /examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/entities/formatters/AgeFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/entities/formatters/AgeFormatter.java -------------------------------------------------------------------------------- /examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/entities/formatters/HeaderFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/entities/formatters/HeaderFormatter.java -------------------------------------------------------------------------------- /examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/entities/formatters/SurvivedFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/entities/formatters/SurvivedFormatter.java -------------------------------------------------------------------------------- /examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/entities/mappers/SurvivedFieldMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/entities/mappers/SurvivedFieldMapper.java -------------------------------------------------------------------------------- /examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/tasks/EditCellsOnSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/tasks/EditCellsOnSheet.java -------------------------------------------------------------------------------- /examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/tasks/EditRecordsOnSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-editing/src/main/java/eu/easyrpa/examples/excel/excel_file_editing/tasks/EditRecordsOnSheet.java -------------------------------------------------------------------------------- /examples/excel/excel-file-editing/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-editing/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/excel-file-editing/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-file-editing/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/excel/excel-sheets-copying/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-copying/README.md -------------------------------------------------------------------------------- /examples/excel/excel-sheets-copying/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-copying/pom.xml -------------------------------------------------------------------------------- /examples/excel/excel-sheets-copying/src/main/java/eu/easyrpa/examples/excel/excel_sheets_copying/SheetsCopyingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-copying/src/main/java/eu/easyrpa/examples/excel/excel_sheets_copying/SheetsCopyingModule.java -------------------------------------------------------------------------------- /examples/excel/excel-sheets-copying/src/main/java/eu/easyrpa/examples/excel/excel_sheets_copying/tasks/CopySheetBetweenSpreadsheets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-copying/src/main/java/eu/easyrpa/examples/excel/excel_sheets_copying/tasks/CopySheetBetweenSpreadsheets.java -------------------------------------------------------------------------------- /examples/excel/excel-sheets-copying/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-copying/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/excel-sheets-copying/src/main/resources/sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-copying/src/main/resources/sample.xlsx -------------------------------------------------------------------------------- /examples/excel/excel-sheets-copying/src/main/resources/sheet_copy_target.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-copying/src/main/resources/sheet_copy_target.xlsx -------------------------------------------------------------------------------- /examples/excel/excel-sheets-copying/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-copying/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/excel/excel-sheets-manipulating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-manipulating/README.md -------------------------------------------------------------------------------- /examples/excel/excel-sheets-manipulating/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-manipulating/pom.xml -------------------------------------------------------------------------------- /examples/excel/excel-sheets-manipulating/src/main/java/eu/easyrpa/examples/excel/excel_sheets_manipulating/SheetsManipulatingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-manipulating/src/main/java/eu/easyrpa/examples/excel/excel_sheets_manipulating/SheetsManipulatingModule.java -------------------------------------------------------------------------------- /examples/excel/excel-sheets-manipulating/src/main/java/eu/easyrpa/examples/excel/excel_sheets_manipulating/tasks/ActivateSpecificSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-manipulating/src/main/java/eu/easyrpa/examples/excel/excel_sheets_manipulating/tasks/ActivateSpecificSheet.java -------------------------------------------------------------------------------- /examples/excel/excel-sheets-manipulating/src/main/java/eu/easyrpa/examples/excel/excel_sheets_manipulating/tasks/CloneSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-manipulating/src/main/java/eu/easyrpa/examples/excel/excel_sheets_manipulating/tasks/CloneSheet.java -------------------------------------------------------------------------------- /examples/excel/excel-sheets-manipulating/src/main/java/eu/easyrpa/examples/excel/excel_sheets_manipulating/tasks/DeleteSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-manipulating/src/main/java/eu/easyrpa/examples/excel/excel_sheets_manipulating/tasks/DeleteSheet.java -------------------------------------------------------------------------------- /examples/excel/excel-sheets-manipulating/src/main/java/eu/easyrpa/examples/excel/excel_sheets_manipulating/tasks/ListExistingSheets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-manipulating/src/main/java/eu/easyrpa/examples/excel/excel_sheets_manipulating/tasks/ListExistingSheets.java -------------------------------------------------------------------------------- /examples/excel/excel-sheets-manipulating/src/main/java/eu/easyrpa/examples/excel/excel_sheets_manipulating/tasks/MoveSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-manipulating/src/main/java/eu/easyrpa/examples/excel/excel_sheets_manipulating/tasks/MoveSheet.java -------------------------------------------------------------------------------- /examples/excel/excel-sheets-manipulating/src/main/java/eu/easyrpa/examples/excel/excel_sheets_manipulating/tasks/RenameSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-manipulating/src/main/java/eu/easyrpa/examples/excel/excel_sheets_manipulating/tasks/RenameSheet.java -------------------------------------------------------------------------------- /examples/excel/excel-sheets-manipulating/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-manipulating/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/excel-sheets-manipulating/src/main/resources/input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/excel-sheets-manipulating/src/main/resources/input.xlsx -------------------------------------------------------------------------------- /examples/excel/export-to-pdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/export-to-pdf/README.md -------------------------------------------------------------------------------- /examples/excel/export-to-pdf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/export-to-pdf/pom.xml -------------------------------------------------------------------------------- /examples/excel/export-to-pdf/src/main/java/eu/easyrpa/examples/excel/export_to_pdf/ExportToPDFModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/export-to-pdf/src/main/java/eu/easyrpa/examples/excel/export_to_pdf/ExportToPDFModule.java -------------------------------------------------------------------------------- /examples/excel/export-to-pdf/src/main/java/eu/easyrpa/examples/excel/export_to_pdf/tasks/ExportActiveSheetToPDF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/export-to-pdf/src/main/java/eu/easyrpa/examples/excel/export_to_pdf/tasks/ExportActiveSheetToPDF.java -------------------------------------------------------------------------------- /examples/excel/export-to-pdf/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/export-to-pdf/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/export-to-pdf/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/export-to-pdf/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/excel/image-inserting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/image-inserting/README.md -------------------------------------------------------------------------------- /examples/excel/image-inserting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/image-inserting/pom.xml -------------------------------------------------------------------------------- /examples/excel/image-inserting/src/main/java/eu/easyrpa/examples/excel/image_inserting/ImageInsertingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/image-inserting/src/main/java/eu/easyrpa/examples/excel/image_inserting/ImageInsertingModule.java -------------------------------------------------------------------------------- /examples/excel/image-inserting/src/main/java/eu/easyrpa/examples/excel/image_inserting/tasks/PutImageOnSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/image-inserting/src/main/java/eu/easyrpa/examples/excel/image_inserting/tasks/PutImageOnSheet.java -------------------------------------------------------------------------------- /examples/excel/image-inserting/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/image-inserting/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/image-inserting/src/main/resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/image-inserting/src/main/resources/image.png -------------------------------------------------------------------------------- /examples/excel/image-inserting/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/image-inserting/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/excel/macros-running/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/macros-running/README.md -------------------------------------------------------------------------------- /examples/excel/macros-running/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/macros-running/pom.xml -------------------------------------------------------------------------------- /examples/excel/macros-running/src/main/java/eu/easyrpa/examples/excel/macros_running/MacrosRunningModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/macros-running/src/main/java/eu/easyrpa/examples/excel/macros_running/MacrosRunningModule.java -------------------------------------------------------------------------------- /examples/excel/macros-running/src/main/java/eu/easyrpa/examples/excel/macros_running/tasks/RunMacro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/macros-running/src/main/java/eu/easyrpa/examples/excel/macros_running/tasks/RunMacro.java -------------------------------------------------------------------------------- /examples/excel/macros-running/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/macros-running/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/macros-running/src/main/resources/input.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/macros-running/src/main/resources/input.xlsm -------------------------------------------------------------------------------- /examples/excel/sheet-data-reading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/sheet-data-reading/README.md -------------------------------------------------------------------------------- /examples/excel/sheet-data-reading/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/sheet-data-reading/pom.xml -------------------------------------------------------------------------------- /examples/excel/sheet-data-reading/src/main/java/eu/easyrpa/examples/excel/sheet_data_reading/SheetDataReadingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/sheet-data-reading/src/main/java/eu/easyrpa/examples/excel/sheet_data_reading/SheetDataReadingModule.java -------------------------------------------------------------------------------- /examples/excel/sheet-data-reading/src/main/java/eu/easyrpa/examples/excel/sheet_data_reading/entities/Passenger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/sheet-data-reading/src/main/java/eu/easyrpa/examples/excel/sheet_data_reading/entities/Passenger.java -------------------------------------------------------------------------------- /examples/excel/sheet-data-reading/src/main/java/eu/easyrpa/examples/excel/sheet_data_reading/entities/mappers/SurvivedFieldMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/sheet-data-reading/src/main/java/eu/easyrpa/examples/excel/sheet_data_reading/entities/mappers/SurvivedFieldMapper.java -------------------------------------------------------------------------------- /examples/excel/sheet-data-reading/src/main/java/eu/easyrpa/examples/excel/sheet_data_reading/tasks/ReadListOfTypedRecords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/sheet-data-reading/src/main/java/eu/easyrpa/examples/excel/sheet_data_reading/tasks/ReadListOfTypedRecords.java -------------------------------------------------------------------------------- /examples/excel/sheet-data-reading/src/main/java/eu/easyrpa/examples/excel/sheet_data_reading/tasks/ReadRangeOfData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/sheet-data-reading/src/main/java/eu/easyrpa/examples/excel/sheet_data_reading/tasks/ReadRangeOfData.java -------------------------------------------------------------------------------- /examples/excel/sheet-data-reading/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- 1 | source.spreadsheet.file=input.xlsx 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/excel/sheet-data-reading/src/main/resources/input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/sheet-data-reading/src/main/resources/input.xlsx -------------------------------------------------------------------------------- /examples/excel/working-with-columns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-columns/README.md -------------------------------------------------------------------------------- /examples/excel/working-with-columns/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-columns/pom.xml -------------------------------------------------------------------------------- /examples/excel/working-with-columns/src/main/java/eu/easyrpa/examples/excel/working_with_columns/WorkingWithColumnsModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-columns/src/main/java/eu/easyrpa/examples/excel/working_with_columns/WorkingWithColumnsModule.java -------------------------------------------------------------------------------- /examples/excel/working-with-columns/src/main/java/eu/easyrpa/examples/excel/working_with_columns/tasks/AddInsertColumns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-columns/src/main/java/eu/easyrpa/examples/excel/working_with_columns/tasks/AddInsertColumns.java -------------------------------------------------------------------------------- /examples/excel/working-with-columns/src/main/java/eu/easyrpa/examples/excel/working_with_columns/tasks/DeleteColumns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-columns/src/main/java/eu/easyrpa/examples/excel/working_with_columns/tasks/DeleteColumns.java -------------------------------------------------------------------------------- /examples/excel/working-with-columns/src/main/java/eu/easyrpa/examples/excel/working_with_columns/tasks/FilterTableColumns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-columns/src/main/java/eu/easyrpa/examples/excel/working_with_columns/tasks/FilterTableColumns.java -------------------------------------------------------------------------------- /examples/excel/working-with-columns/src/main/java/eu/easyrpa/examples/excel/working_with_columns/tasks/MoveColumns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-columns/src/main/java/eu/easyrpa/examples/excel/working_with_columns/tasks/MoveColumns.java -------------------------------------------------------------------------------- /examples/excel/working-with-columns/src/main/java/eu/easyrpa/examples/excel/working_with_columns/tasks/ReadColumnCells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-columns/src/main/java/eu/easyrpa/examples/excel/working_with_columns/tasks/ReadColumnCells.java -------------------------------------------------------------------------------- /examples/excel/working-with-columns/src/main/java/eu/easyrpa/examples/excel/working_with_columns/tasks/SortTableColumns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-columns/src/main/java/eu/easyrpa/examples/excel/working_with_columns/tasks/SortTableColumns.java -------------------------------------------------------------------------------- /examples/excel/working-with-columns/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-columns/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/working-with-columns/src/main/resources/input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-columns/src/main/resources/input.xlsx -------------------------------------------------------------------------------- /examples/excel/working-with-formulas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-formulas/README.md -------------------------------------------------------------------------------- /examples/excel/working-with-formulas/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-formulas/pom.xml -------------------------------------------------------------------------------- /examples/excel/working-with-formulas/src/main/java/eu/easyrpa/examples/excel/working_with_formulas/WorkingWithFormulasModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-formulas/src/main/java/eu/easyrpa/examples/excel/working_with_formulas/WorkingWithFormulasModule.java -------------------------------------------------------------------------------- /examples/excel/working-with-formulas/src/main/java/eu/easyrpa/examples/excel/working_with_formulas/tasks/EditCellFormulas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-formulas/src/main/java/eu/easyrpa/examples/excel/working_with_formulas/tasks/EditCellFormulas.java -------------------------------------------------------------------------------- /examples/excel/working-with-formulas/src/main/java/eu/easyrpa/examples/excel/working_with_formulas/tasks/EvaluateFormulas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-formulas/src/main/java/eu/easyrpa/examples/excel/working_with_formulas/tasks/EvaluateFormulas.java -------------------------------------------------------------------------------- /examples/excel/working-with-formulas/src/main/java/eu/easyrpa/examples/excel/working_with_formulas/tasks/EvaluateFormulasWithExternalLinks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-formulas/src/main/java/eu/easyrpa/examples/excel/working_with_formulas/tasks/EvaluateFormulasWithExternalLinks.java -------------------------------------------------------------------------------- /examples/excel/working-with-formulas/src/main/java/eu/easyrpa/examples/excel/working_with_formulas/tasks/Preparation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-formulas/src/main/java/eu/easyrpa/examples/excel/working_with_formulas/tasks/Preparation.java -------------------------------------------------------------------------------- /examples/excel/working-with-formulas/src/main/resources/SharedData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-formulas/src/main/resources/SharedData.xlsx -------------------------------------------------------------------------------- /examples/excel/working-with-formulas/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-formulas/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/working-with-formulas/src/main/resources/input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-formulas/src/main/resources/input.xlsx -------------------------------------------------------------------------------- /examples/excel/working-with-large-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-large-files/README.md -------------------------------------------------------------------------------- /examples/excel/working-with-large-files/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-large-files/pom.xml -------------------------------------------------------------------------------- /examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/WorkingWithLargeFilesModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/WorkingWithLargeFilesModule.java -------------------------------------------------------------------------------- /examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/entities/Passenger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/entities/Passenger.java -------------------------------------------------------------------------------- /examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/entities/formatters/AgeFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/entities/formatters/AgeFormatter.java -------------------------------------------------------------------------------- /examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/entities/formatters/HeaderFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/entities/formatters/HeaderFormatter.java -------------------------------------------------------------------------------- /examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/entities/formatters/SurvivedFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/entities/formatters/SurvivedFormatter.java -------------------------------------------------------------------------------- /examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/entities/mappers/SurvivedFieldMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/entities/mappers/SurvivedFieldMapper.java -------------------------------------------------------------------------------- /examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/tasks/EditLargeFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/tasks/EditLargeFile.java -------------------------------------------------------------------------------- /examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/tasks/ReadLargeFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-large-files/src/main/java/eu/easyrpa/examples/excel/working_with_large_files/tasks/ReadLargeFile.java -------------------------------------------------------------------------------- /examples/excel/working-with-large-files/src/test/java/eu/easyrpa/examples/excel/working_with_large_files/WorkingWithLargeFilesRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-large-files/src/test/java/eu/easyrpa/examples/excel/working_with_large_files/WorkingWithLargeFilesRunner.java -------------------------------------------------------------------------------- /examples/excel/working-with-large-files/src/test/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-large-files/src/test/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/working-with-large-files/src/test/resources/input_400k.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-large-files/src/test/resources/input_400k.xlsx -------------------------------------------------------------------------------- /examples/excel/working-with-merged-cells/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-merged-cells/README.md -------------------------------------------------------------------------------- /examples/excel/working-with-merged-cells/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-merged-cells/pom.xml -------------------------------------------------------------------------------- /examples/excel/working-with-merged-cells/src/main/java/eu/easyrpa/examples/excel/working_with_merged_cells/WorkingWithMergedCellsModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-merged-cells/src/main/java/eu/easyrpa/examples/excel/working_with_merged_cells/WorkingWithMergedCellsModule.java -------------------------------------------------------------------------------- /examples/excel/working-with-merged-cells/src/main/java/eu/easyrpa/examples/excel/working_with_merged_cells/tasks/MergeUnmergeCells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-merged-cells/src/main/java/eu/easyrpa/examples/excel/working_with_merged_cells/tasks/MergeUnmergeCells.java -------------------------------------------------------------------------------- /examples/excel/working-with-merged-cells/src/main/java/eu/easyrpa/examples/excel/working_with_merged_cells/tasks/ReadEditMergedCellsValues.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-merged-cells/src/main/java/eu/easyrpa/examples/excel/working_with_merged_cells/tasks/ReadEditMergedCellsValues.java -------------------------------------------------------------------------------- /examples/excel/working-with-merged-cells/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-merged-cells/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/working-with-merged-cells/src/main/resources/input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-merged-cells/src/main/resources/input.xlsx -------------------------------------------------------------------------------- /examples/excel/working-with-pivot-tables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-pivot-tables/README.md -------------------------------------------------------------------------------- /examples/excel/working-with-pivot-tables/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-pivot-tables/pom.xml -------------------------------------------------------------------------------- /examples/excel/working-with-pivot-tables/src/main/java/eu/easyrpa/examples/excel/working_with_pivot_tables/WorkingWithPivotTablesModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-pivot-tables/src/main/java/eu/easyrpa/examples/excel/working_with_pivot_tables/WorkingWithPivotTablesModule.java -------------------------------------------------------------------------------- /examples/excel/working-with-pivot-tables/src/main/java/eu/easyrpa/examples/excel/working_with_pivot_tables/tasks/CreatePivotTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-pivot-tables/src/main/java/eu/easyrpa/examples/excel/working_with_pivot_tables/tasks/CreatePivotTable.java -------------------------------------------------------------------------------- /examples/excel/working-with-pivot-tables/src/main/java/eu/easyrpa/examples/excel/working_with_pivot_tables/tasks/ReadPivotTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-pivot-tables/src/main/java/eu/easyrpa/examples/excel/working_with_pivot_tables/tasks/ReadPivotTable.java -------------------------------------------------------------------------------- /examples/excel/working-with-pivot-tables/src/main/java/eu/easyrpa/examples/excel/working_with_pivot_tables/tasks/UpdatePivotTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-pivot-tables/src/main/java/eu/easyrpa/examples/excel/working_with_pivot_tables/tasks/UpdatePivotTable.java -------------------------------------------------------------------------------- /examples/excel/working-with-pivot-tables/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-pivot-tables/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/working-with-pivot-tables/src/main/resources/input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-pivot-tables/src/main/resources/input.xlsx -------------------------------------------------------------------------------- /examples/excel/working-with-pivot-tables/src/main/resources/input_read.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-pivot-tables/src/main/resources/input_read.xlsx -------------------------------------------------------------------------------- /examples/excel/working-with-rows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-rows/README.md -------------------------------------------------------------------------------- /examples/excel/working-with-rows/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-rows/pom.xml -------------------------------------------------------------------------------- /examples/excel/working-with-rows/src/main/java/eu/easyrpa/examples/excel/working_with_rows/WorkingWithRowsModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-rows/src/main/java/eu/easyrpa/examples/excel/working_with_rows/WorkingWithRowsModule.java -------------------------------------------------------------------------------- /examples/excel/working-with-rows/src/main/java/eu/easyrpa/examples/excel/working_with_rows/tasks/DeleteRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-rows/src/main/java/eu/easyrpa/examples/excel/working_with_rows/tasks/DeleteRows.java -------------------------------------------------------------------------------- /examples/excel/working-with-rows/src/main/java/eu/easyrpa/examples/excel/working_with_rows/tasks/InsertRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-rows/src/main/java/eu/easyrpa/examples/excel/working_with_rows/tasks/InsertRows.java -------------------------------------------------------------------------------- /examples/excel/working-with-rows/src/main/java/eu/easyrpa/examples/excel/working_with_rows/tasks/LookupAndEditRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-rows/src/main/java/eu/easyrpa/examples/excel/working_with_rows/tasks/LookupAndEditRows.java -------------------------------------------------------------------------------- /examples/excel/working-with-rows/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-rows/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/excel/working-with-rows/src/main/resources/input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/excel/working-with-rows/src/main/resources/input.xlsx -------------------------------------------------------------------------------- /examples/google-drive/drive-files-listing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-listing/README.md -------------------------------------------------------------------------------- /examples/google-drive/drive-files-listing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-listing/pom.xml -------------------------------------------------------------------------------- /examples/google-drive/drive-files-listing/src/main/java/eu/easyrpa/examples/google/drive/drive_files_listing/DriveFilesListingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-listing/src/main/java/eu/easyrpa/examples/google/drive/drive_files_listing/DriveFilesListingModule.java -------------------------------------------------------------------------------- /examples/google-drive/drive-files-listing/src/main/java/eu/easyrpa/examples/google/drive/drive_files_listing/task/ListAllFiles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-listing/src/main/java/eu/easyrpa/examples/google/drive/drive_files_listing/task/ListAllFiles.java -------------------------------------------------------------------------------- /examples/google-drive/drive-files-listing/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-listing/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-drive/drive-files-listing/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-listing/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-drive/drive-files-manipulating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-manipulating/README.md -------------------------------------------------------------------------------- /examples/google-drive/drive-files-manipulating/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-manipulating/pom.xml -------------------------------------------------------------------------------- /examples/google-drive/drive-files-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_files_manipulating/DriveFilesManipulatingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_files_manipulating/DriveFilesManipulatingModule.java -------------------------------------------------------------------------------- /examples/google-drive/drive-files-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_files_manipulating/task/DeleteFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_files_manipulating/task/DeleteFile.java -------------------------------------------------------------------------------- /examples/google-drive/drive-files-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_files_manipulating/task/MoveFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_files_manipulating/task/MoveFile.java -------------------------------------------------------------------------------- /examples/google-drive/drive-files-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_files_manipulating/task/RenameFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_files_manipulating/task/RenameFile.java -------------------------------------------------------------------------------- /examples/google-drive/drive-files-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_files_manipulating/task/UploadNewFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_files_manipulating/task/UploadNewFile.java -------------------------------------------------------------------------------- /examples/google-drive/drive-files-manipulating/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-manipulating/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-drive/drive-files-manipulating/src/main/resources/test.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-manipulating/src/main/resources/test.docx -------------------------------------------------------------------------------- /examples/google-drive/drive-files-manipulating/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-files-manipulating/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-drive/drive-folders-manipulating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-folders-manipulating/README.md -------------------------------------------------------------------------------- /examples/google-drive/drive-folders-manipulating/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-folders-manipulating/pom.xml -------------------------------------------------------------------------------- /examples/google-drive/drive-folders-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_folders_manipulating/DriveFoldersManipulatingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-folders-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_folders_manipulating/DriveFoldersManipulatingModule.java -------------------------------------------------------------------------------- /examples/google-drive/drive-folders-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_folders_manipulating/task/CreateFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-folders-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_folders_manipulating/task/CreateFolder.java -------------------------------------------------------------------------------- /examples/google-drive/drive-folders-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_folders_manipulating/task/DeleteFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-folders-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_folders_manipulating/task/DeleteFolder.java -------------------------------------------------------------------------------- /examples/google-drive/drive-folders-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_folders_manipulating/task/RenameFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-folders-manipulating/src/main/java/eu/easyrpa/examples/google/drive/drive_folders_manipulating/task/RenameFolder.java -------------------------------------------------------------------------------- /examples/google-drive/drive-folders-manipulating/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-folders-manipulating/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-drive/drive-folders-manipulating/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-drive/drive-folders-manipulating/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-services/google-api-service-instantiation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-services/google-api-service-instantiation/README.md -------------------------------------------------------------------------------- /examples/google-services/google-api-service-instantiation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-services/google-api-service-instantiation/pom.xml -------------------------------------------------------------------------------- /examples/google-services/google-api-service-instantiation/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-services/google-api-service-instantiation/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-services/google-api-service-instantiation/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-services/google-api-service-instantiation/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-services/passing-authorization-by-robot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-services/passing-authorization-by-robot/README.md -------------------------------------------------------------------------------- /examples/google-services/passing-authorization-by-robot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-services/passing-authorization-by-robot/pom.xml -------------------------------------------------------------------------------- /examples/google-services/passing-authorization-by-robot/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-services/passing-authorization-by-robot/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-services/passing-authorization-by-robot/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-services/passing-authorization-by-robot/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-sheets/cells-style-changing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/cells-style-changing/README.md -------------------------------------------------------------------------------- /examples/google-sheets/cells-style-changing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/cells-style-changing/pom.xml -------------------------------------------------------------------------------- /examples/google-sheets/cells-style-changing/src/main/java/eu/easyrpa/examples/google/sheets/cells_style_changing/CellsStyleChangingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/cells-style-changing/src/main/java/eu/easyrpa/examples/google/sheets/cells_style_changing/CellsStyleChangingModule.java -------------------------------------------------------------------------------- /examples/google-sheets/cells-style-changing/src/main/java/eu/easyrpa/examples/google/sheets/cells_style_changing/tasks/SetStyleForCells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/cells-style-changing/src/main/java/eu/easyrpa/examples/google/sheets/cells_style_changing/tasks/SetStyleForCells.java -------------------------------------------------------------------------------- /examples/google-sheets/cells-style-changing/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/cells-style-changing/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-sheets/cells-style-changing/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/cells-style-changing/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/google-sheets/cells-style-changing/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/cells-style-changing/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-sheets/export-spreadsheet-to-xlsx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/export-spreadsheet-to-xlsx/README.md -------------------------------------------------------------------------------- /examples/google-sheets/export-spreadsheet-to-xlsx/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/export-spreadsheet-to-xlsx/pom.xml -------------------------------------------------------------------------------- /examples/google-sheets/export-spreadsheet-to-xlsx/src/main/java/eu/easyrpa/examples/google/sheets/export_spreadsheet_to_xlsx/ExportSpreadsheetToXlsxModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/export-spreadsheet-to-xlsx/src/main/java/eu/easyrpa/examples/google/sheets/export_spreadsheet_to_xlsx/ExportSpreadsheetToXlsxModule.java -------------------------------------------------------------------------------- /examples/google-sheets/export-spreadsheet-to-xlsx/src/main/java/eu/easyrpa/examples/google/sheets/export_spreadsheet_to_xlsx/tasks/ExportSpreadsheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/export-spreadsheet-to-xlsx/src/main/java/eu/easyrpa/examples/google/sheets/export_spreadsheet_to_xlsx/tasks/ExportSpreadsheet.java -------------------------------------------------------------------------------- /examples/google-sheets/export-spreadsheet-to-xlsx/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/export-spreadsheet-to-xlsx/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-sheets/export-spreadsheet-to-xlsx/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/export-spreadsheet-to-xlsx/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/google-sheets/export-spreadsheet-to-xlsx/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/export-spreadsheet-to-xlsx/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-creating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-creating/README.md -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-creating/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-creating/pom.xml -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-creating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_creating/SpreadsheetCreatingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-creating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_creating/SpreadsheetCreatingModule.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-creating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_creating/entities/Passenger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-creating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_creating/entities/Passenger.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-creating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_creating/entities/formatters/HeaderFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-creating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_creating/entities/formatters/HeaderFormatter.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-creating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_creating/entities/formatters/SurvivedFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-creating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_creating/entities/formatters/SurvivedFormatter.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-creating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_creating/tasks/CreateNewSpreadsheetDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-creating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_creating/tasks/CreateNewSpreadsheetDocument.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-creating/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-creating/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-creating/src/main/resources/sample_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-creating/src/main/resources/sample_data.json -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-creating/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-creating/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-editing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-editing/README.md -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-editing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-editing/pom.xml -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/SpreadsheetEditingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/SpreadsheetEditingModule.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/entities/Passenger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/entities/Passenger.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/entities/formatters/AgeFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/entities/formatters/AgeFormatter.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/entities/formatters/HeaderFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/entities/formatters/HeaderFormatter.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/entities/formatters/SurvivedFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/entities/formatters/SurvivedFormatter.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/entities/mappers/SurvivedFieldMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/entities/mappers/SurvivedFieldMapper.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/tasks/EditCellsOnSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/tasks/EditCellsOnSheet.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/tasks/EditRecordsOnSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-editing/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_editing/tasks/EditRecordsOnSheet.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-editing/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-editing/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-editing/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-editing/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-editing/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-editing/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-reading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-reading/README.md -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-reading/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-reading/pom.xml -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-reading/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_reading/SpreadsheetReadingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-reading/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_reading/SpreadsheetReadingModule.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-reading/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_reading/entities/Passenger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-reading/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_reading/entities/Passenger.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-reading/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_reading/entities/mappers/SurvivedFieldMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-reading/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_reading/entities/mappers/SurvivedFieldMapper.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-reading/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_reading/tasks/ReadListOfTypedRecords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-reading/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_reading/tasks/ReadListOfTypedRecords.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-reading/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_reading/tasks/ReadRangeOfData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-reading/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_reading/tasks/ReadRangeOfData.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-reading/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-reading/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-reading/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-reading/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-reading/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-reading/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-copying/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-copying/README.md -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-copying/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-copying/pom.xml -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-copying/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_sheets_copying/SpreadsheetSheetsCopyingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-copying/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_sheets_copying/SpreadsheetSheetsCopyingModule.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-copying/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-copying/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-copying/src/main/resources/sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-copying/src/main/resources/sample.xlsx -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-copying/src/main/resources/sheet_copy_target.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-copying/src/main/resources/sheet_copy_target.xlsx -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-copying/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-copying/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-copying/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-copying/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-manipulating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-manipulating/README.md -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-manipulating/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-manipulating/pom.xml -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-manipulating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_sheets_manipulating/tasks/CloneSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-manipulating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_sheets_manipulating/tasks/CloneSheet.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-manipulating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_sheets_manipulating/tasks/DeleteSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-manipulating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_sheets_manipulating/tasks/DeleteSheet.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-manipulating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_sheets_manipulating/tasks/MoveSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-manipulating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_sheets_manipulating/tasks/MoveSheet.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-manipulating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_sheets_manipulating/tasks/RenameSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-manipulating/src/main/java/eu/easyrpa/examples/google/sheets/spreadsheet_sheets_manipulating/tasks/RenameSheet.java -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-manipulating/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-manipulating/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-manipulating/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-manipulating/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/google-sheets/spreadsheet-sheets-manipulating/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/spreadsheet-sheets-manipulating/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-sheets/working-with-cell-formulas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-cell-formulas/README.md -------------------------------------------------------------------------------- /examples/google-sheets/working-with-cell-formulas/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-cell-formulas/pom.xml -------------------------------------------------------------------------------- /examples/google-sheets/working-with-cell-formulas/src/main/java/eu/easyrpa/examples/google/sheets/working_with_cell_formulas/tasks/EditCellFormulas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-cell-formulas/src/main/java/eu/easyrpa/examples/google/sheets/working_with_cell_formulas/tasks/EditCellFormulas.java -------------------------------------------------------------------------------- /examples/google-sheets/working-with-cell-formulas/src/main/java/eu/easyrpa/examples/google/sheets/working_with_cell_formulas/tasks/EvaluateFormulas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-cell-formulas/src/main/java/eu/easyrpa/examples/google/sheets/working_with_cell_formulas/tasks/EvaluateFormulas.java -------------------------------------------------------------------------------- /examples/google-sheets/working-with-cell-formulas/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-cell-formulas/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-sheets/working-with-cell-formulas/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-cell-formulas/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/google-sheets/working-with-cell-formulas/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-cell-formulas/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-sheets/working-with-merges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-merges/README.md -------------------------------------------------------------------------------- /examples/google-sheets/working-with-merges/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-merges/pom.xml -------------------------------------------------------------------------------- /examples/google-sheets/working-with-merges/src/main/java/eu/easyrpa/examples/google/sheets/working_with_merges/WorkingWithMergesModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-merges/src/main/java/eu/easyrpa/examples/google/sheets/working_with_merges/WorkingWithMergesModule.java -------------------------------------------------------------------------------- /examples/google-sheets/working-with-merges/src/main/java/eu/easyrpa/examples/google/sheets/working_with_merges/tasks/MergeUnmergeCells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-merges/src/main/java/eu/easyrpa/examples/google/sheets/working_with_merges/tasks/MergeUnmergeCells.java -------------------------------------------------------------------------------- /examples/google-sheets/working-with-merges/src/main/java/eu/easyrpa/examples/google/sheets/working_with_merges/tasks/ReadEditMergedCellsValues.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-merges/src/main/java/eu/easyrpa/examples/google/sheets/working_with_merges/tasks/ReadEditMergedCellsValues.java -------------------------------------------------------------------------------- /examples/google-sheets/working-with-merges/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-merges/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-sheets/working-with-merges/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-merges/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/google-sheets/working-with-merges/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-merges/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-columns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-columns/README.md -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-columns/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-columns/pom.xml -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-columns/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_columns/tasks/AddInsertColumns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-columns/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_columns/tasks/AddInsertColumns.java -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-columns/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_columns/tasks/DeleteColumns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-columns/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_columns/tasks/DeleteColumns.java -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-columns/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_columns/tasks/MoveColumns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-columns/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_columns/tasks/MoveColumns.java -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-columns/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_columns/tasks/ReadColumnCells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-columns/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_columns/tasks/ReadColumnCells.java -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-columns/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-columns/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-columns/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-columns/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-columns/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-columns/src/main/resources/vault.properties -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-rows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-rows/README.md -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-rows/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-rows/pom.xml -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-rows/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_rows/WorkingWithSheetRowsModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-rows/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_rows/WorkingWithSheetRowsModule.java -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-rows/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_rows/tasks/DeleteRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-rows/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_rows/tasks/DeleteRows.java -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-rows/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_rows/tasks/InsertRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-rows/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_rows/tasks/InsertRows.java -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-rows/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_rows/tasks/LookupAndEditRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-rows/src/main/java/eu/easyrpa/examples/google/sheets/working_with_sheet_rows/tasks/LookupAndEditRows.java -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-rows/src/main/resources/apm_run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-rows/src/main/resources/apm_run.properties -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-rows/src/main/resources/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-rows/src/main/resources/source.xlsx -------------------------------------------------------------------------------- /examples/google-sheets/working-with-sheet-rows/src/main/resources/vault.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/examples/google-sheets/working-with-sheet-rows/src/main/resources/vault.properties -------------------------------------------------------------------------------- /libraries/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/core/README.md -------------------------------------------------------------------------------- /libraries/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/core/pom.xml -------------------------------------------------------------------------------- /libraries/core/src/main/java/eu/easyrpa/openframework/core/model/FileData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/core/src/main/java/eu/easyrpa/openframework/core/model/FileData.java -------------------------------------------------------------------------------- /libraries/core/src/main/java/eu/easyrpa/openframework/core/model/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/core/src/main/java/eu/easyrpa/openframework/core/model/package-info.java -------------------------------------------------------------------------------- /libraries/core/src/main/java/eu/easyrpa/openframework/core/sevices/RPAServicesAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/core/src/main/java/eu/easyrpa/openframework/core/sevices/RPAServicesAccessor.java -------------------------------------------------------------------------------- /libraries/core/src/main/java/eu/easyrpa/openframework/core/sevices/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/core/src/main/java/eu/easyrpa/openframework/core/sevices/package-info.java -------------------------------------------------------------------------------- /libraries/core/src/main/java/eu/easyrpa/openframework/core/utils/FilePathUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/core/src/main/java/eu/easyrpa/openframework/core/utils/FilePathUtils.java -------------------------------------------------------------------------------- /libraries/core/src/main/java/eu/easyrpa/openframework/core/utils/MemoryMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/core/src/main/java/eu/easyrpa/openframework/core/utils/MemoryMonitor.java -------------------------------------------------------------------------------- /libraries/core/src/main/java/eu/easyrpa/openframework/core/utils/NameUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/core/src/main/java/eu/easyrpa/openframework/core/utils/NameUtils.java -------------------------------------------------------------------------------- /libraries/core/src/main/java/eu/easyrpa/openframework/core/utils/TypeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/core/src/main/java/eu/easyrpa/openframework/core/utils/TypeUtils.java -------------------------------------------------------------------------------- /libraries/core/src/main/java/eu/easyrpa/openframework/core/utils/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/core/src/main/java/eu/easyrpa/openframework/core/utils/package-info.java -------------------------------------------------------------------------------- /libraries/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/database/README.md -------------------------------------------------------------------------------- /libraries/database/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/database/pom.xml -------------------------------------------------------------------------------- /libraries/database/src/main/java/eu/easyrpa/openframework/database/DatabaseConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/database/src/main/java/eu/easyrpa/openframework/database/DatabaseConnection.java -------------------------------------------------------------------------------- /libraries/database/src/main/java/eu/easyrpa/openframework/database/DatabaseParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/database/src/main/java/eu/easyrpa/openframework/database/DatabaseParams.java -------------------------------------------------------------------------------- /libraries/database/src/main/java/eu/easyrpa/openframework/database/DatabaseService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/database/src/main/java/eu/easyrpa/openframework/database/DatabaseService.java -------------------------------------------------------------------------------- /libraries/database/src/main/java/eu/easyrpa/openframework/database/exceptions/DatabaseException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/database/src/main/java/eu/easyrpa/openframework/database/exceptions/DatabaseException.java -------------------------------------------------------------------------------- /libraries/database/src/main/java/eu/easyrpa/openframework/database/exceptions/RollbackTransactionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/database/src/main/java/eu/easyrpa/openframework/database/exceptions/RollbackTransactionException.java -------------------------------------------------------------------------------- /libraries/database/src/main/java/eu/easyrpa/openframework/database/exceptions/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/database/src/main/java/eu/easyrpa/openframework/database/exceptions/package-info.java -------------------------------------------------------------------------------- /libraries/database/src/main/java/eu/easyrpa/openframework/database/function/DatabaseConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/database/src/main/java/eu/easyrpa/openframework/database/function/DatabaseConsumer.java -------------------------------------------------------------------------------- /libraries/database/src/main/java/eu/easyrpa/openframework/database/function/DatabaseFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/database/src/main/java/eu/easyrpa/openframework/database/function/DatabaseFunction.java -------------------------------------------------------------------------------- /libraries/database/src/main/java/eu/easyrpa/openframework/database/function/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/database/src/main/java/eu/easyrpa/openframework/database/function/package-info.java -------------------------------------------------------------------------------- /libraries/database/src/main/java/eu/easyrpa/openframework/database/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/database/src/main/java/eu/easyrpa/openframework/database/package-info.java -------------------------------------------------------------------------------- /libraries/email/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/README.md -------------------------------------------------------------------------------- /libraries/email/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/pom.xml -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/EmailClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/EmailClient.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/EmailMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/EmailMessage.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/EmailSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/EmailSender.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/constants/EmailConfigParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/constants/EmailConfigParam.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/constants/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/constants/package-info.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/exception/BreakEmailFetchException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/exception/BreakEmailFetchException.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/exception/EmailMessagingException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/exception/EmailMessagingException.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/exception/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/exception/package-info.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/message/EmailAddress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/message/EmailAddress.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/message/EmailAttachment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/message/EmailAttachment.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/message/EmailBodyPart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/message/EmailBodyPart.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/message/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/message/package-info.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/message/templates/FreeMarkerTemplate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/message/templates/FreeMarkerTemplate.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/message/templates/TextTemplate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/message/templates/TextTemplate.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/message/templates/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/message/templates/package-info.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/message/tnef/RtfConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/message/tnef/RtfConverter.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/message/tnef/TNEFMailMessageConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/message/tnef/TNEFMailMessageConverter.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/package-info.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/search/ComparisonCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/search/ComparisonCondition.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/search/LogicalCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/search/LogicalCondition.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/search/SearchCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/search/SearchCondition.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/search/SearchQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/search/SearchQuery.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/search/SearchableField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/search/SearchableField.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/EmailServiceFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/EmailServiceFactory.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/EmailServiceSecret.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/EmailServiceSecret.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/InboundEmailProtocol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/InboundEmailProtocol.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/InboundEmailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/InboundEmailService.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/MessageConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/MessageConverter.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/OutboundEmailProtocol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/OutboundEmailProtocol.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/OutboundEmailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/OutboundEmailService.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/javax/ImapPop3EmailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/javax/ImapPop3EmailService.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/javax/MimeMessageConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/javax/MimeMessageConverter.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/javax/MimeMessageWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/javax/MimeMessageWrapper.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/javax/SearchTermConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/javax/SearchTermConverter.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/javax/SmtpEmailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/javax/SmtpEmailService.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/javax/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/javax/package-info.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/package-info.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/service/rpaplatform/RPAPlatformEmailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/service/rpaplatform/RPAPlatformEmailService.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/utils/EmailParsingUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/utils/EmailParsingUtils.java -------------------------------------------------------------------------------- /libraries/email/src/main/java/eu/easyrpa/openframework/email/utils/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/email/src/main/java/eu/easyrpa/openframework/email/utils/package-info.java -------------------------------------------------------------------------------- /libraries/excel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/README.md -------------------------------------------------------------------------------- /libraries/excel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/pom.xml -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/Cell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/Cell.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/CellRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/CellRange.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/CellRef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/CellRef.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/Column.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/Column.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/ExcelCellsFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/ExcelCellsFormat.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/ExcelDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/ExcelDocument.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/PivotTableField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/PivotTableField.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/PivotTableParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/PivotTableParams.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/Row.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/Row.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/Sheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/Sheet.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/Table.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/Table.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/annotations/ExcelCellStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/annotations/ExcelCellStyle.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/annotations/ExcelColumn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/annotations/ExcelColumn.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/annotations/ExcelTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/annotations/ExcelTable.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/annotations/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/annotations/package-info.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/DataFormats.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/DataFormats.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/ExcelColors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/ExcelColors.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/FontOffsetType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/FontOffsetType.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/FontUnderlineStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/FontUnderlineStyle.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/InsertMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/InsertMethod.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/MatchMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/MatchMethod.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/PivotValueSumType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/PivotValueSumType.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/SortDirection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/SortDirection.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/constants/package-info.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/exceptions/VBScriptExecutionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/exceptions/VBScriptExecutionException.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/exceptions/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/exceptions/package-info.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/function/ColumnFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/function/ColumnFormatter.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/function/FieldMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/function/FieldMapper.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/function/TableFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/function/TableFormatter.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/function/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/function/package-info.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/RecordTypeHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/RecordTypeHelper.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/POIElementsCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/POIElementsCache.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/POISaveMemoryExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/POISaveMemoryExtension.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/SheetRowsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/SheetRowsProvider.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/SheetRowsWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/SheetRowsWriter.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/StaleRecordException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/StaleRecordException.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/WorksheetOutputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/WorksheetOutputStream.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/XSSFEvaluationCellExt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/XSSFEvaluationCellExt.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/XSSFEvaluationSheetExt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/XSSFEvaluationSheetExt.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/XSSFEvaluationWorkbookExt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/XSSFEvaluationWorkbookExt.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/XSSFFormulaEvaluatorExt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/XSSFFormulaEvaluatorExt.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/XSSFRowColExtShifter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/XSSFRowColExtShifter.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/XSSFRowExt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/XSSFRowExt.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/XSSFSheetExt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/internal/poi/XSSFSheetExt.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/package-info.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/style/DataFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/style/DataFormat.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/style/ExcelCellStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/style/ExcelCellStyle.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/style/ExcelColor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/style/ExcelColor.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/style/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/style/package-info.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/ColumnInsert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/ColumnInsert.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/ColumnsDelete.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/ColumnsDelete.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/ColumnsMove.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/ColumnsMove.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/ExportToPDF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/ExportToPDF.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/Filter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/Filter.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/MacroRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/MacroRunner.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/PivotTableScript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/PivotTableScript.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/Sorter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/Sorter.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/VBScript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/VBScript.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/VBScriptProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/VBScriptProcessor.java -------------------------------------------------------------------------------- /libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/java/eu/easyrpa/openframework/excel/vbscript/package-info.java -------------------------------------------------------------------------------- /libraries/excel/src/main/resources/vbscript/categoryFilter.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/resources/vbscript/categoryFilter.vbs -------------------------------------------------------------------------------- /libraries/excel/src/main/resources/vbscript/columnInsert.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/resources/vbscript/columnInsert.vbs -------------------------------------------------------------------------------- /libraries/excel/src/main/resources/vbscript/columnsDelete.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/resources/vbscript/columnsDelete.vbs -------------------------------------------------------------------------------- /libraries/excel/src/main/resources/vbscript/columnsMove.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/resources/vbscript/columnsMove.vbs -------------------------------------------------------------------------------- /libraries/excel/src/main/resources/vbscript/exportToPDF.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/resources/vbscript/exportToPDF.vbs -------------------------------------------------------------------------------- /libraries/excel/src/main/resources/vbscript/filter.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/resources/vbscript/filter.vbs -------------------------------------------------------------------------------- /libraries/excel/src/main/resources/vbscript/filterPivotTable.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/resources/vbscript/filterPivotTable.vbs -------------------------------------------------------------------------------- /libraries/excel/src/main/resources/vbscript/multiFilterPivotTable.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/resources/vbscript/multiFilterPivotTable.vbs -------------------------------------------------------------------------------- /libraries/excel/src/main/resources/vbscript/pivotTable.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/resources/vbscript/pivotTable.vbs -------------------------------------------------------------------------------- /libraries/excel/src/main/resources/vbscript/removeColumn.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/resources/vbscript/removeColumn.vbs -------------------------------------------------------------------------------- /libraries/excel/src/main/resources/vbscript/runMacro.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/resources/vbscript/runMacro.vbs -------------------------------------------------------------------------------- /libraries/excel/src/main/resources/vbscript/saveAs.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/resources/vbscript/saveAs.vbs -------------------------------------------------------------------------------- /libraries/excel/src/main/resources/vbscript/sort.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/excel/src/main/resources/vbscript/sort.vbs -------------------------------------------------------------------------------- /libraries/google-drive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/README.md -------------------------------------------------------------------------------- /libraries/google-drive/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/pom.xml -------------------------------------------------------------------------------- /libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/GoogleDrive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/GoogleDrive.java -------------------------------------------------------------------------------- /libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/constants/GDriveConfigParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/constants/GDriveConfigParam.java -------------------------------------------------------------------------------- /libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/constants/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/constants/package-info.java -------------------------------------------------------------------------------- /libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/exceptions/GoogleDriveException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/exceptions/GoogleDriveException.java -------------------------------------------------------------------------------- /libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/exceptions/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/exceptions/package-info.java -------------------------------------------------------------------------------- /libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/model/GFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/model/GFile.java -------------------------------------------------------------------------------- /libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/model/GFileId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/model/GFileId.java -------------------------------------------------------------------------------- /libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/model/GFileInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/model/GFileInfo.java -------------------------------------------------------------------------------- /libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/model/GFileType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/model/GFileType.java -------------------------------------------------------------------------------- /libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/model/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/model/package-info.java -------------------------------------------------------------------------------- /libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/package-info.java -------------------------------------------------------------------------------- /libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/service/GoogleDriveService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/service/GoogleDriveService.java -------------------------------------------------------------------------------- /libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/service/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-drive/src/main/java/eu/easyrpa/openframework/google/drive/service/package-info.java -------------------------------------------------------------------------------- /libraries/google-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-services/README.md -------------------------------------------------------------------------------- /libraries/google-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-services/pom.xml -------------------------------------------------------------------------------- /libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/AuthorizationPerformer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/AuthorizationPerformer.java -------------------------------------------------------------------------------- /libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/GoogleAuth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/GoogleAuth.java -------------------------------------------------------------------------------- /libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/GoogleServicesProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/GoogleServicesProvider.java -------------------------------------------------------------------------------- /libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/constants/GServicesConfigParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/constants/GServicesConfigParam.java -------------------------------------------------------------------------------- /libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/constants/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/constants/package-info.java -------------------------------------------------------------------------------- /libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/exceptions/GoogleAuthException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/exceptions/GoogleAuthException.java -------------------------------------------------------------------------------- /libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/exceptions/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/exceptions/package-info.java -------------------------------------------------------------------------------- /libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-services/src/main/java/eu/easyrpa/openframework/google/services/package-info.java -------------------------------------------------------------------------------- /libraries/google-sheets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/README.md -------------------------------------------------------------------------------- /libraries/google-sheets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/pom.xml -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/Cell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/Cell.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/CellRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/CellRange.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/CellRef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/CellRef.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/CellStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/CellStyle.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/Column.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/Column.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/GoogleSheets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/GoogleSheets.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/Row.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/Row.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/Sheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/Sheet.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/SpreadsheetDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/SpreadsheetDocument.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/Table.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/Table.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/annotations/GSheetCellStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/annotations/GSheetCellStyle.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/annotations/GSheetColumn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/annotations/GSheetColumn.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/annotations/GSheetTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/annotations/GSheetTable.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/annotations/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/annotations/package-info.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/BorderStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/BorderStyle.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/Colors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/Colors.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/FontFamily.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/FontFamily.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/HorizontalAlignment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/HorizontalAlignment.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/InsertMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/InsertMethod.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/MatchMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/MatchMethod.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/NumberFormats.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/NumberFormats.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/VerticalAlignment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/VerticalAlignment.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/WrapStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/WrapStrategy.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/constants/package-info.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/exceptions/SpreadsheetException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/exceptions/SpreadsheetException.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/exceptions/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/exceptions/package-info.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/function/ColumnFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/function/ColumnFormatter.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/function/FieldMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/function/FieldMapper.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/function/TableFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/function/TableFormatter.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/function/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/function/package-info.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/internal/RecordTypeHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/internal/RecordTypeHelper.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/internal/SpreadsheetUpdateRequestsBatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/internal/SpreadsheetUpdateRequestsBatch.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/package-info.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/utils/SpreadsheetDateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/utils/SpreadsheetDateUtil.java -------------------------------------------------------------------------------- /libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/utils/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easy-rpa/openframework/HEAD/libraries/google-sheets/src/main/java/eu/easyrpa/openframework/google/sheets/utils/package-info.java --------------------------------------------------------------------------------