├── .github ├── ISSUE_TEMPLATE │ ├── ---bug-report.md │ ├── ---feature-request.md │ └── ---support-question.md └── pull_request_template.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── VERSION ├── action ├── action.go ├── config.go ├── descriptor.go ├── descriptor_test.go ├── metadata.go ├── metadata_test.go ├── registry.go └── registry_test.go ├── activity ├── activity.go ├── async.go ├── config.go ├── context.go ├── error.go ├── error_test.go ├── legacy.go ├── metadata.go ├── metadata_test.go ├── registry.go ├── registry_test.go └── schema.json ├── api ├── api.go ├── api_test.go ├── support.go └── support_test.go ├── app ├── app.go ├── app_test.go ├── config.go ├── controller.go ├── controller_test.go ├── data.go ├── instances.go ├── propertyresolver │ ├── env.go │ ├── env_test.go │ └── json.go ├── resolve │ └── resolve.go └── resource │ ├── config.go │ ├── config_test.go │ ├── manager.go │ ├── manager_test.go │ └── resource.go ├── data ├── attribute.go ├── coerce │ ├── coercion.go │ ├── coercion_test.go │ ├── compound.go │ ├── connection.go │ └── primatives.go ├── expression │ ├── expr.go │ ├── factory.go │ ├── factory_test.go │ ├── function │ │ ├── builtin │ │ │ ├── len.go │ │ │ └── len_test.go │ │ ├── function.go │ │ ├── function_test.go │ │ └── registry.go │ ├── script │ │ ├── expr.go │ │ ├── expr_test.go │ │ ├── funcexpr_test.go │ │ └── gocc │ │ │ ├── LR1_sets.txt │ │ │ ├── ast │ │ │ ├── arithmetic.go │ │ │ ├── builtin.go │ │ │ ├── comparison.go │ │ │ ├── expr.go │ │ │ ├── function.go │ │ │ ├── literal.go │ │ │ ├── logical.go │ │ │ ├── ref.go │ │ │ └── unary.go │ │ │ ├── errors │ │ │ └── errors.go │ │ │ ├── first.txt │ │ │ ├── fs.bnf │ │ │ ├── generate.go │ │ │ ├── lexer │ │ │ ├── acttab.go │ │ │ ├── lexer.go │ │ │ └── transitiontable.go │ │ │ ├── lexer_sets.txt │ │ │ ├── parser │ │ │ ├── action.go │ │ │ ├── actiontable.go │ │ │ ├── gototable.go │ │ │ ├── parser.go │ │ │ └── productionstable.go │ │ │ ├── terminals.txt │ │ │ ├── token │ │ │ └── token.go │ │ │ └── util │ │ │ ├── litconv.go │ │ │ └── rune.go │ ├── simple.go │ ├── template.go │ ├── template_test.go │ ├── util.go │ └── util_test.go ├── mapper │ ├── conditional.go │ ├── conditional_test.go │ ├── config │ │ ├── config.go │ │ └── config_test.go │ ├── expr.go │ ├── expr_test.go │ ├── mapper.go │ ├── object.go │ ├── object_test.go │ ├── util.go │ └── variable.go ├── metadata │ ├── field.go │ ├── field_test.go │ ├── metadata.go │ └── util.go ├── path │ ├── path.go │ └── path_test.go ├── property │ ├── config.go │ ├── external.go │ ├── manager.go │ └── resolver.go ├── resolve │ ├── composite.go │ ├── composite_test.go │ ├── env.go │ ├── env_test.go │ ├── loop.go │ ├── resolve.go │ ├── resolve_test.go │ └── scope.go ├── schema │ ├── json │ │ └── factory.go │ ├── lazy.go │ ├── registry.go │ ├── schema.go │ └── support.go ├── scope.go ├── types.go ├── util.go └── value.go ├── docs ├── api.md ├── datatypes.md ├── engine.md ├── mapping.md ├── model.md └── properties.md ├── engine ├── appconfig.go ├── channels │ ├── channels.go │ └── channels_test.go ├── config.go ├── config_test.go ├── engine.go ├── engine_test.go ├── engineimpl.go ├── envconfig.go ├── envconfig_test.go ├── event │ ├── emitter.go │ ├── emitter_test.go │ ├── env.go │ ├── events.go │ ├── publish.go │ └── registry.go ├── properties.go ├── runner │ ├── debugger │ │ ├── reportgenerator.go │ │ └── utils.go │ ├── direct.go │ ├── direct_test.go │ ├── pooled.go │ ├── pooled_test.go │ ├── runner_tracker.go │ ├── worker.go │ └── worker_test.go ├── secret │ ├── config.go │ ├── secretresolver.go │ └── secretresolver_test.go └── support │ ├── interceptor.go │ └── types.go ├── examples ├── action │ ├── action.go │ ├── action_test.go │ ├── descriptor.json │ └── metadata.go ├── activity │ ├── activity.go │ ├── activity_test.go │ ├── descriptor.json │ └── metadata.go ├── alt │ └── engine │ │ └── flogo.json ├── engine │ ├── flogo.json │ ├── imports.go │ ├── main.go │ └── shim │ │ └── shim_support.go └── trigger │ ├── descriptor.json │ ├── metadata.go │ ├── trigger.go │ └── trigger_test.go ├── go.mod ├── go.sum ├── internal └── schema │ ├── assets.go │ ├── generate │ └── schema_generator.go │ ├── schema.go │ └── schema.json ├── schema.json ├── support ├── alias.go ├── alias_test.go ├── cleanup.go ├── compression.go ├── compression_test.go ├── connection │ ├── config.go │ ├── config_test.go │ ├── manager.go │ ├── manager_test.go │ ├── registry.go │ └── registry_test.go ├── fastuuid.go ├── fastuuid_test.go ├── iterator.go ├── iterator_test.go ├── log │ ├── logger.go │ ├── zap.go │ └── zapfield.go ├── managed │ ├── managed.go │ ├── managed_test.go │ └── status.go ├── queue.go ├── queue_test.go ├── ref.go ├── ref_test.go ├── service │ ├── factory.go │ ├── factory_test.go │ ├── manager.go │ ├── manager_test.go │ └── service.go ├── ssl │ └── client.go ├── test │ ├── action.go │ ├── activity.go │ ├── context.go │ └── trigger.go ├── trace │ ├── context.go │ ├── context_test.go │ ├── registry.go │ ├── registry_test.go │ └── tracer.go ├── utils.go └── utils_test.go ├── trigger ├── config.go ├── config_schema.json ├── context.go ├── deprecated.go ├── descriptor.go ├── event.go ├── event_test.go ├── handler.go ├── handler_test.go ├── metadata.go ├── metadata_test.go ├── registry.go ├── registry_test.go ├── schema.json ├── sequenceKeyHandler.go └── trigger.go └── version.go /.github/ISSUE_TEMPLATE/---bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/.github/ISSUE_TEMPLATE/---bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/.github/ISSUE_TEMPLATE/---feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---support-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/.github/ISSUE_TEMPLATE/---support-question.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v1.6.5 -------------------------------------------------------------------------------- /action/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/action/action.go -------------------------------------------------------------------------------- /action/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/action/config.go -------------------------------------------------------------------------------- /action/descriptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/action/descriptor.go -------------------------------------------------------------------------------- /action/descriptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/action/descriptor_test.go -------------------------------------------------------------------------------- /action/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/action/metadata.go -------------------------------------------------------------------------------- /action/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/action/metadata_test.go -------------------------------------------------------------------------------- /action/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/action/registry.go -------------------------------------------------------------------------------- /action/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/action/registry_test.go -------------------------------------------------------------------------------- /activity/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/activity/activity.go -------------------------------------------------------------------------------- /activity/async.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/activity/async.go -------------------------------------------------------------------------------- /activity/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/activity/config.go -------------------------------------------------------------------------------- /activity/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/activity/context.go -------------------------------------------------------------------------------- /activity/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/activity/error.go -------------------------------------------------------------------------------- /activity/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/activity/error_test.go -------------------------------------------------------------------------------- /activity/legacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/activity/legacy.go -------------------------------------------------------------------------------- /activity/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/activity/metadata.go -------------------------------------------------------------------------------- /activity/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/activity/metadata_test.go -------------------------------------------------------------------------------- /activity/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/activity/registry.go -------------------------------------------------------------------------------- /activity/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/activity/registry_test.go -------------------------------------------------------------------------------- /activity/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/activity/schema.json -------------------------------------------------------------------------------- /api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/api/api.go -------------------------------------------------------------------------------- /api/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/api/api_test.go -------------------------------------------------------------------------------- /api/support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/api/support.go -------------------------------------------------------------------------------- /api/support_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/api/support_test.go -------------------------------------------------------------------------------- /app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/app.go -------------------------------------------------------------------------------- /app/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/app_test.go -------------------------------------------------------------------------------- /app/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/config.go -------------------------------------------------------------------------------- /app/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/controller.go -------------------------------------------------------------------------------- /app/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/controller_test.go -------------------------------------------------------------------------------- /app/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/data.go -------------------------------------------------------------------------------- /app/instances.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/instances.go -------------------------------------------------------------------------------- /app/propertyresolver/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/propertyresolver/env.go -------------------------------------------------------------------------------- /app/propertyresolver/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/propertyresolver/env_test.go -------------------------------------------------------------------------------- /app/propertyresolver/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/propertyresolver/json.go -------------------------------------------------------------------------------- /app/resolve/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/resolve/resolve.go -------------------------------------------------------------------------------- /app/resource/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/resource/config.go -------------------------------------------------------------------------------- /app/resource/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/resource/config_test.go -------------------------------------------------------------------------------- /app/resource/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/resource/manager.go -------------------------------------------------------------------------------- /app/resource/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/resource/manager_test.go -------------------------------------------------------------------------------- /app/resource/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/app/resource/resource.go -------------------------------------------------------------------------------- /data/attribute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/attribute.go -------------------------------------------------------------------------------- /data/coerce/coercion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/coerce/coercion.go -------------------------------------------------------------------------------- /data/coerce/coercion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/coerce/coercion_test.go -------------------------------------------------------------------------------- /data/coerce/compound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/coerce/compound.go -------------------------------------------------------------------------------- /data/coerce/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/coerce/connection.go -------------------------------------------------------------------------------- /data/coerce/primatives.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/coerce/primatives.go -------------------------------------------------------------------------------- /data/expression/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/expr.go -------------------------------------------------------------------------------- /data/expression/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/factory.go -------------------------------------------------------------------------------- /data/expression/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/factory_test.go -------------------------------------------------------------------------------- /data/expression/function/builtin/len.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/function/builtin/len.go -------------------------------------------------------------------------------- /data/expression/function/builtin/len_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/function/builtin/len_test.go -------------------------------------------------------------------------------- /data/expression/function/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/function/function.go -------------------------------------------------------------------------------- /data/expression/function/function_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/function/function_test.go -------------------------------------------------------------------------------- /data/expression/function/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/function/registry.go -------------------------------------------------------------------------------- /data/expression/script/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/expr.go -------------------------------------------------------------------------------- /data/expression/script/expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/expr_test.go -------------------------------------------------------------------------------- /data/expression/script/funcexpr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/funcexpr_test.go -------------------------------------------------------------------------------- /data/expression/script/gocc/LR1_sets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/LR1_sets.txt -------------------------------------------------------------------------------- /data/expression/script/gocc/ast/arithmetic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/ast/arithmetic.go -------------------------------------------------------------------------------- /data/expression/script/gocc/ast/builtin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/ast/builtin.go -------------------------------------------------------------------------------- /data/expression/script/gocc/ast/comparison.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/ast/comparison.go -------------------------------------------------------------------------------- /data/expression/script/gocc/ast/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/ast/expr.go -------------------------------------------------------------------------------- /data/expression/script/gocc/ast/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/ast/function.go -------------------------------------------------------------------------------- /data/expression/script/gocc/ast/literal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/ast/literal.go -------------------------------------------------------------------------------- /data/expression/script/gocc/ast/logical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/ast/logical.go -------------------------------------------------------------------------------- /data/expression/script/gocc/ast/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/ast/ref.go -------------------------------------------------------------------------------- /data/expression/script/gocc/ast/unary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/ast/unary.go -------------------------------------------------------------------------------- /data/expression/script/gocc/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/errors/errors.go -------------------------------------------------------------------------------- /data/expression/script/gocc/first.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/first.txt -------------------------------------------------------------------------------- /data/expression/script/gocc/fs.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/fs.bnf -------------------------------------------------------------------------------- /data/expression/script/gocc/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/generate.go -------------------------------------------------------------------------------- /data/expression/script/gocc/lexer/acttab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/lexer/acttab.go -------------------------------------------------------------------------------- /data/expression/script/gocc/lexer/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/lexer/lexer.go -------------------------------------------------------------------------------- /data/expression/script/gocc/lexer/transitiontable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/lexer/transitiontable.go -------------------------------------------------------------------------------- /data/expression/script/gocc/lexer_sets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/lexer_sets.txt -------------------------------------------------------------------------------- /data/expression/script/gocc/parser/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/parser/action.go -------------------------------------------------------------------------------- /data/expression/script/gocc/parser/actiontable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/parser/actiontable.go -------------------------------------------------------------------------------- /data/expression/script/gocc/parser/gototable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/parser/gototable.go -------------------------------------------------------------------------------- /data/expression/script/gocc/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/parser/parser.go -------------------------------------------------------------------------------- /data/expression/script/gocc/parser/productionstable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/parser/productionstable.go -------------------------------------------------------------------------------- /data/expression/script/gocc/terminals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/terminals.txt -------------------------------------------------------------------------------- /data/expression/script/gocc/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/token/token.go -------------------------------------------------------------------------------- /data/expression/script/gocc/util/litconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/util/litconv.go -------------------------------------------------------------------------------- /data/expression/script/gocc/util/rune.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/script/gocc/util/rune.go -------------------------------------------------------------------------------- /data/expression/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/simple.go -------------------------------------------------------------------------------- /data/expression/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/template.go -------------------------------------------------------------------------------- /data/expression/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/template_test.go -------------------------------------------------------------------------------- /data/expression/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/util.go -------------------------------------------------------------------------------- /data/expression/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/expression/util_test.go -------------------------------------------------------------------------------- /data/mapper/conditional.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/mapper/conditional.go -------------------------------------------------------------------------------- /data/mapper/conditional_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/mapper/conditional_test.go -------------------------------------------------------------------------------- /data/mapper/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/mapper/config/config.go -------------------------------------------------------------------------------- /data/mapper/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/mapper/config/config_test.go -------------------------------------------------------------------------------- /data/mapper/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/mapper/expr.go -------------------------------------------------------------------------------- /data/mapper/expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/mapper/expr_test.go -------------------------------------------------------------------------------- /data/mapper/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/mapper/mapper.go -------------------------------------------------------------------------------- /data/mapper/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/mapper/object.go -------------------------------------------------------------------------------- /data/mapper/object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/mapper/object_test.go -------------------------------------------------------------------------------- /data/mapper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/mapper/util.go -------------------------------------------------------------------------------- /data/mapper/variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/mapper/variable.go -------------------------------------------------------------------------------- /data/metadata/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/metadata/field.go -------------------------------------------------------------------------------- /data/metadata/field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/metadata/field_test.go -------------------------------------------------------------------------------- /data/metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/metadata/metadata.go -------------------------------------------------------------------------------- /data/metadata/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/metadata/util.go -------------------------------------------------------------------------------- /data/path/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/path/path.go -------------------------------------------------------------------------------- /data/path/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/path/path_test.go -------------------------------------------------------------------------------- /data/property/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/property/config.go -------------------------------------------------------------------------------- /data/property/external.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/property/external.go -------------------------------------------------------------------------------- /data/property/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/property/manager.go -------------------------------------------------------------------------------- /data/property/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/property/resolver.go -------------------------------------------------------------------------------- /data/resolve/composite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/resolve/composite.go -------------------------------------------------------------------------------- /data/resolve/composite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/resolve/composite_test.go -------------------------------------------------------------------------------- /data/resolve/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/resolve/env.go -------------------------------------------------------------------------------- /data/resolve/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/resolve/env_test.go -------------------------------------------------------------------------------- /data/resolve/loop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/resolve/loop.go -------------------------------------------------------------------------------- /data/resolve/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/resolve/resolve.go -------------------------------------------------------------------------------- /data/resolve/resolve_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/resolve/resolve_test.go -------------------------------------------------------------------------------- /data/resolve/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/resolve/scope.go -------------------------------------------------------------------------------- /data/schema/json/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/schema/json/factory.go -------------------------------------------------------------------------------- /data/schema/lazy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/schema/lazy.go -------------------------------------------------------------------------------- /data/schema/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/schema/registry.go -------------------------------------------------------------------------------- /data/schema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/schema/schema.go -------------------------------------------------------------------------------- /data/schema/support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/schema/support.go -------------------------------------------------------------------------------- /data/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/scope.go -------------------------------------------------------------------------------- /data/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/types.go -------------------------------------------------------------------------------- /data/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/util.go -------------------------------------------------------------------------------- /data/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/data/value.go -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/datatypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/docs/datatypes.md -------------------------------------------------------------------------------- /docs/engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/docs/engine.md -------------------------------------------------------------------------------- /docs/mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/docs/mapping.md -------------------------------------------------------------------------------- /docs/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/docs/model.md -------------------------------------------------------------------------------- /docs/properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/docs/properties.md -------------------------------------------------------------------------------- /engine/appconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/appconfig.go -------------------------------------------------------------------------------- /engine/channels/channels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/channels/channels.go -------------------------------------------------------------------------------- /engine/channels/channels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/channels/channels_test.go -------------------------------------------------------------------------------- /engine/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/config.go -------------------------------------------------------------------------------- /engine/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/config_test.go -------------------------------------------------------------------------------- /engine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/engine.go -------------------------------------------------------------------------------- /engine/engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/engine_test.go -------------------------------------------------------------------------------- /engine/engineimpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/engineimpl.go -------------------------------------------------------------------------------- /engine/envconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/envconfig.go -------------------------------------------------------------------------------- /engine/envconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/envconfig_test.go -------------------------------------------------------------------------------- /engine/event/emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/event/emitter.go -------------------------------------------------------------------------------- /engine/event/emitter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/event/emitter_test.go -------------------------------------------------------------------------------- /engine/event/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/event/env.go -------------------------------------------------------------------------------- /engine/event/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/event/events.go -------------------------------------------------------------------------------- /engine/event/publish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/event/publish.go -------------------------------------------------------------------------------- /engine/event/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/event/registry.go -------------------------------------------------------------------------------- /engine/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/properties.go -------------------------------------------------------------------------------- /engine/runner/debugger/reportgenerator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/runner/debugger/reportgenerator.go -------------------------------------------------------------------------------- /engine/runner/debugger/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/runner/debugger/utils.go -------------------------------------------------------------------------------- /engine/runner/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/runner/direct.go -------------------------------------------------------------------------------- /engine/runner/direct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/runner/direct_test.go -------------------------------------------------------------------------------- /engine/runner/pooled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/runner/pooled.go -------------------------------------------------------------------------------- /engine/runner/pooled_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/runner/pooled_test.go -------------------------------------------------------------------------------- /engine/runner/runner_tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/runner/runner_tracker.go -------------------------------------------------------------------------------- /engine/runner/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/runner/worker.go -------------------------------------------------------------------------------- /engine/runner/worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/runner/worker_test.go -------------------------------------------------------------------------------- /engine/secret/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/secret/config.go -------------------------------------------------------------------------------- /engine/secret/secretresolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/secret/secretresolver.go -------------------------------------------------------------------------------- /engine/secret/secretresolver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/secret/secretresolver_test.go -------------------------------------------------------------------------------- /engine/support/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/support/interceptor.go -------------------------------------------------------------------------------- /engine/support/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/engine/support/types.go -------------------------------------------------------------------------------- /examples/action/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/action/action.go -------------------------------------------------------------------------------- /examples/action/action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/action/action_test.go -------------------------------------------------------------------------------- /examples/action/descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/action/descriptor.json -------------------------------------------------------------------------------- /examples/action/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/action/metadata.go -------------------------------------------------------------------------------- /examples/activity/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/activity/activity.go -------------------------------------------------------------------------------- /examples/activity/activity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/activity/activity_test.go -------------------------------------------------------------------------------- /examples/activity/descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/activity/descriptor.json -------------------------------------------------------------------------------- /examples/activity/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/activity/metadata.go -------------------------------------------------------------------------------- /examples/alt/engine/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/alt/engine/flogo.json -------------------------------------------------------------------------------- /examples/engine/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/engine/flogo.json -------------------------------------------------------------------------------- /examples/engine/imports.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | ) 5 | -------------------------------------------------------------------------------- /examples/engine/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/engine/main.go -------------------------------------------------------------------------------- /examples/engine/shim/shim_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/engine/shim/shim_support.go -------------------------------------------------------------------------------- /examples/trigger/descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/trigger/descriptor.json -------------------------------------------------------------------------------- /examples/trigger/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/trigger/metadata.go -------------------------------------------------------------------------------- /examples/trigger/trigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/trigger/trigger.go -------------------------------------------------------------------------------- /examples/trigger/trigger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/examples/trigger/trigger_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/go.sum -------------------------------------------------------------------------------- /internal/schema/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/internal/schema/assets.go -------------------------------------------------------------------------------- /internal/schema/generate/schema_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/internal/schema/generate/schema_generator.go -------------------------------------------------------------------------------- /internal/schema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/internal/schema/schema.go -------------------------------------------------------------------------------- /internal/schema/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/internal/schema/schema.json -------------------------------------------------------------------------------- /schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/schema.json -------------------------------------------------------------------------------- /support/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/alias.go -------------------------------------------------------------------------------- /support/alias_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/alias_test.go -------------------------------------------------------------------------------- /support/cleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/cleanup.go -------------------------------------------------------------------------------- /support/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/compression.go -------------------------------------------------------------------------------- /support/compression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/compression_test.go -------------------------------------------------------------------------------- /support/connection/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/connection/config.go -------------------------------------------------------------------------------- /support/connection/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/connection/config_test.go -------------------------------------------------------------------------------- /support/connection/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/connection/manager.go -------------------------------------------------------------------------------- /support/connection/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/connection/manager_test.go -------------------------------------------------------------------------------- /support/connection/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/connection/registry.go -------------------------------------------------------------------------------- /support/connection/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/connection/registry_test.go -------------------------------------------------------------------------------- /support/fastuuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/fastuuid.go -------------------------------------------------------------------------------- /support/fastuuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/fastuuid_test.go -------------------------------------------------------------------------------- /support/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/iterator.go -------------------------------------------------------------------------------- /support/iterator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/iterator_test.go -------------------------------------------------------------------------------- /support/log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/log/logger.go -------------------------------------------------------------------------------- /support/log/zap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/log/zap.go -------------------------------------------------------------------------------- /support/log/zapfield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/log/zapfield.go -------------------------------------------------------------------------------- /support/managed/managed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/managed/managed.go -------------------------------------------------------------------------------- /support/managed/managed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/managed/managed_test.go -------------------------------------------------------------------------------- /support/managed/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/managed/status.go -------------------------------------------------------------------------------- /support/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/queue.go -------------------------------------------------------------------------------- /support/queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/queue_test.go -------------------------------------------------------------------------------- /support/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/ref.go -------------------------------------------------------------------------------- /support/ref_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/ref_test.go -------------------------------------------------------------------------------- /support/service/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/service/factory.go -------------------------------------------------------------------------------- /support/service/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/service/factory_test.go -------------------------------------------------------------------------------- /support/service/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/service/manager.go -------------------------------------------------------------------------------- /support/service/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/service/manager_test.go -------------------------------------------------------------------------------- /support/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/service/service.go -------------------------------------------------------------------------------- /support/ssl/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/ssl/client.go -------------------------------------------------------------------------------- /support/test/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/test/action.go -------------------------------------------------------------------------------- /support/test/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/test/activity.go -------------------------------------------------------------------------------- /support/test/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/test/context.go -------------------------------------------------------------------------------- /support/test/trigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/test/trigger.go -------------------------------------------------------------------------------- /support/trace/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/trace/context.go -------------------------------------------------------------------------------- /support/trace/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/trace/context_test.go -------------------------------------------------------------------------------- /support/trace/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/trace/registry.go -------------------------------------------------------------------------------- /support/trace/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/trace/registry_test.go -------------------------------------------------------------------------------- /support/trace/tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/trace/tracer.go -------------------------------------------------------------------------------- /support/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/utils.go -------------------------------------------------------------------------------- /support/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/support/utils_test.go -------------------------------------------------------------------------------- /trigger/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/config.go -------------------------------------------------------------------------------- /trigger/config_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/config_schema.json -------------------------------------------------------------------------------- /trigger/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/context.go -------------------------------------------------------------------------------- /trigger/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/deprecated.go -------------------------------------------------------------------------------- /trigger/descriptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/descriptor.go -------------------------------------------------------------------------------- /trigger/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/event.go -------------------------------------------------------------------------------- /trigger/event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/event_test.go -------------------------------------------------------------------------------- /trigger/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/handler.go -------------------------------------------------------------------------------- /trigger/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/handler_test.go -------------------------------------------------------------------------------- /trigger/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/metadata.go -------------------------------------------------------------------------------- /trigger/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/metadata_test.go -------------------------------------------------------------------------------- /trigger/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/registry.go -------------------------------------------------------------------------------- /trigger/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/registry_test.go -------------------------------------------------------------------------------- /trigger/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/schema.json -------------------------------------------------------------------------------- /trigger/sequenceKeyHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/sequenceKeyHandler.go -------------------------------------------------------------------------------- /trigger/trigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/trigger/trigger.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/core/HEAD/version.go --------------------------------------------------------------------------------