├── .github └── workflows │ ├── build-container-images.yml │ ├── build-push.yml │ ├── checkout-and-compile.yml │ ├── copydocs.yml │ ├── dependency-graph.yml │ └── run-tests.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── MAINTAINERS.md ├── Makefile ├── README.md ├── docs ├── QuickStart.md ├── README.md └── openapi-3-developer.json ├── project ├── build.properties └── plugins.sbt └── src ├── main ├── resources │ ├── application.conf │ ├── exchange.conf │ ├── logback.xml │ ├── messages.txt │ ├── messages_de.txt │ ├── messages_es.txt │ ├── messages_fr.txt │ ├── messages_it.txt │ ├── messages_ja.txt │ ├── messages_ko.txt │ ├── messages_pt_br.txt │ ├── messages_zh_cn.txt │ ├── messages_zh_tw.txt │ ├── reference.conf │ ├── swagger │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── index.css │ │ ├── index.html │ │ ├── oauth2-redirect.html │ │ ├── swagger-initializer.js │ │ ├── swagger-ui-bundle.js │ │ ├── swagger-ui-es-bundle-core.js │ │ ├── swagger-ui-es-bundle.js │ │ ├── swagger-ui-standalone-preset.js │ │ ├── swagger-ui.css │ │ └── swagger-ui.js │ └── version.txt └── scala │ └── org │ └── openhorizon │ └── exchangeapi │ ├── ExchangeApiApp.scala │ ├── SwaggerDocService.scala │ ├── auth │ ├── Access.scala │ ├── AccessGroups.scala │ ├── ApiKeyUtils.scala │ ├── AuthCache.scala │ ├── AuthRoles.scala │ ├── AuthenticationSupport.scala │ ├── AuthorizationSupport.scala │ ├── CacheIdType.scala │ ├── CompositeId.scala │ ├── Creds.scala │ ├── Exceptions.scala │ ├── IAgbot.scala │ ├── IIdentity.scala │ ├── INode.scala │ ├── IUser.scala │ ├── Identity.scala │ ├── Module.scala │ ├── OrgAndId.scala │ ├── OrgAndIdCred.scala │ ├── Password.scala │ ├── RequestInfo.scala │ ├── Role.scala │ ├── TAction.scala │ ├── TAgbot.scala │ ├── TBusiness.scala │ ├── TManagementPolicy.scala │ ├── TNode.scala │ ├── TOrg.scala │ ├── TPattern.scala │ ├── TService.scala │ ├── TUser.scala │ ├── Target.scala │ ├── Token.scala │ └── cloud │ │ └── IBM.scala │ ├── route │ ├── administration │ │ ├── AdminConfigRequest.scala │ │ ├── AdminDropdbTokenResponse.scala │ │ ├── AdminOrgStatus.scala │ │ ├── AdminStatus.scala │ │ ├── ClearAuthCache.scala │ │ ├── Configuration.scala │ │ ├── DeleteIBMChangesRequest.scala │ │ ├── DeleteOrgChangesRequest.scala │ │ ├── DropDatabase.scala │ │ ├── InitializeDatabase.scala │ │ ├── OrganizationStatus.scala │ │ ├── Reload.scala │ │ ├── Status.scala │ │ ├── Version.scala │ │ └── dropdatabase │ │ │ └── Token.scala │ ├── agent │ │ └── AgentConfigurationManagement.scala │ ├── agreementbot │ │ ├── AgreementBot.scala │ │ ├── AgreementBots.scala │ │ ├── GetAgbotAgreementsResponse.scala │ │ ├── GetAgbotAttributeResponse.scala │ │ ├── GetAgbotBusinessPolsResponse.scala │ │ ├── GetAgbotMsgsResponse.scala │ │ ├── GetAgbotPatternsResponse.scala │ │ ├── GetAgbotsResponse.scala │ │ ├── Heartbeat.scala │ │ ├── PatchAgbotsRequest.scala │ │ ├── PostAgbotBusinessPolRequest.scala │ │ ├── PostAgbotPatternRequest.scala │ │ ├── PostAgbotsMsgsRequest.scala │ │ ├── PostAgreementsConfirmRequest.scala │ │ ├── PutAgbotAgreementRequest.scala │ │ ├── PutAgbotsRequest.scala │ │ ├── agreement │ │ │ ├── Agreement.scala │ │ │ ├── Agreements.scala │ │ │ └── Confirm.scala │ │ ├── deploymentpattern │ │ │ ├── DeploymentPattern.scala │ │ │ └── DeploymentPatterns.scala │ │ ├── deploymentpolicy │ │ │ ├── DeploymentPolicies.scala │ │ │ └── DeploymentPolicy.scala │ │ └── message │ │ │ ├── Message.scala │ │ │ └── Messages.scala │ ├── catalog │ │ ├── DeploymentPatterns.scala │ │ ├── OrganizationDeploymentPatterns.scala │ │ ├── OrganizationServices.scala │ │ └── Services.scala │ ├── deploymentpattern │ │ ├── DeploymentPattern.scala │ │ ├── DeploymentPatterns.scala │ │ ├── GetPatternAttributeResponse.scala │ │ ├── GetPatternsResponse.scala │ │ ├── NodeHealth.scala │ │ ├── PatchPatternRequest.scala │ │ ├── PatternUtils.scala │ │ ├── PostPatternSearchRequest.scala │ │ ├── PostPutPatternRequest.scala │ │ ├── PutPatternKeyRequest.scala │ │ ├── Search.scala │ │ └── key │ │ │ ├── Key.scala │ │ │ └── Keys.scala │ ├── deploymentpolicy │ │ ├── BusinessPolicyNodeResponse.scala │ │ ├── BusinessPolicySearchHashElement.scala │ │ ├── BusinessUtils.scala │ │ ├── DeploymentPolicies.scala │ │ ├── DeploymentPolicy.scala │ │ ├── DeploymentPolicySearch.scala │ │ ├── GetBusinessPoliciesResponse.scala │ │ ├── GetBusinessPolicyAttributeResponse.scala │ │ ├── PatchBusinessPolicyRequest.scala │ │ ├── PolicySearchResponseDesync.scala │ │ ├── PostBusinessPolicySearchRequest.scala │ │ ├── PostBusinessPolicySearchResponse.scala │ │ └── PostPutBusinessPolicyRequest.scala │ ├── managementpolicy │ │ ├── GetManagementPoliciesResponse.scala │ │ ├── GetManagementPolicyAttributeResponse.scala │ │ ├── ManagementPolicies.scala │ │ ├── ManagementPolicy.scala │ │ └── PostPutManagementPolicyRequest.scala │ ├── node │ │ ├── ConfigurationState.scala │ │ ├── Details.scala │ │ ├── Errors.scala │ │ ├── GetNodeAgreementsResponse.scala │ │ ├── GetNodeAttributeResponse.scala │ │ ├── GetNodeMsgsResponse.scala │ │ ├── GetNodesResponse.scala │ │ ├── GetNodesUtils.scala │ │ ├── Heartbeat.scala │ │ ├── Node.scala │ │ ├── NodeDetails.scala │ │ ├── NodeMangementPolicyStatus.scala │ │ ├── NodeResponse.scala │ │ ├── Nodes.scala │ │ ├── PatchNodesRequest.scala │ │ ├── PatternNodeResponse.scala │ │ ├── PatternSearchHashElement.scala │ │ ├── Policy.scala │ │ ├── PostNodeConfigStateRequest.scala │ │ ├── PostNodeErrorRequest.scala │ │ ├── PostNodeErrorResponse.scala │ │ ├── PostNodesMsgsRequest.scala │ │ ├── PostPatternSearchResponse.scala │ │ ├── PostSearchNodesResponse.scala │ │ ├── PostServiceSearchRequest.scala │ │ ├── PostServiceSearchResponse.scala │ │ ├── PutNodeAgreementRequest.scala │ │ ├── PutNodeErrorRequest.scala │ │ ├── PutNodeMgmtPolStatusRequest.scala │ │ ├── PutNodePolicyRequest.scala │ │ ├── PutNodeStatusRequest.scala │ │ ├── PutNodesRequest.scala │ │ ├── Status.scala │ │ ├── UpgradedVersions.scala │ │ ├── agreement │ │ │ ├── Agreement.scala │ │ │ └── Agreements.scala │ │ ├── managementpolicy │ │ │ ├── Status.scala │ │ │ └── Statuses.scala │ │ └── message │ │ │ ├── Message.scala │ │ │ └── Messages.scala │ ├── nodegroup │ │ ├── GetNodeGroupsResponse.scala │ │ ├── NodeGroup.scala │ │ ├── NodeGroupResp.scala │ │ ├── NodeGroups.scala │ │ ├── PutNodeGroupsRequest.scala │ │ └── node │ │ │ └── Node.scala │ ├── organization │ │ ├── AllNodeErrorsInOrgResp.scala │ │ ├── ChangeEntry.scala │ │ ├── Changes.scala │ │ ├── Cleanup.scala │ │ ├── GetMyOrgsRequest.scala │ │ ├── GetOrgAttributeResponse.scala │ │ ├── GetOrgStatusResponse.scala │ │ ├── GetOrgsResponse.scala │ │ ├── MaxChangeId.scala │ │ ├── MaxChangeIdResponse.scala │ │ ├── MyOrganizations.scala │ │ ├── NodeErrorsResp.scala │ │ ├── NodeHealthAgreementElement.scala │ │ ├── NodeHealthHashElement.scala │ │ ├── Organization.scala │ │ ├── Organizations.scala │ │ ├── PatchOrgRequest.scala │ │ ├── PostNodeHealthRequest.scala │ │ ├── PostNodeHealthResponse.scala │ │ ├── PostPutOrgRequest.scala │ │ ├── ResourceChangesInnerObject.scala │ │ ├── ResourceChangesRequest.scala │ │ ├── ResourceChangesRespObject.scala │ │ └── Status.scala │ ├── search │ │ ├── NodeError.scala │ │ ├── NodeErrors.scala │ │ ├── NodeHealth.scala │ │ └── NodeService.scala │ ├── service │ │ ├── GetServiceAttributeResponse.scala │ │ ├── GetServicesResponse.scala │ │ ├── PatchServiceRequest.scala │ │ ├── Policy.scala │ │ ├── PostPutServiceDockAuthRequest.scala │ │ ├── PostPutServiceRequest.scala │ │ ├── PutServiceKeyRequest.scala │ │ ├── PutServicePolicyRequest.scala │ │ ├── Service.scala │ │ ├── Services.scala │ │ ├── SharableVals.scala │ │ ├── dockerauth │ │ │ ├── DockerAuth.scala │ │ │ └── DockerAuths.scala │ │ └── key │ │ │ ├── Key.scala │ │ │ └── Keys.scala │ └── user │ │ ├── ChangePassword.scala │ │ ├── ChangePwRequest.scala │ │ ├── Confirm.scala │ │ ├── GetUsersResponse.scala │ │ ├── MethodNotAllowedException.scala │ │ ├── PatchUsersRequest.scala │ │ ├── PostPutUsersRequest.scala │ │ ├── User.scala │ │ ├── Users.scala │ │ └── apikey │ │ ├── PostApiKeyRequest.scala │ │ ├── PostApiKeyResponse.scala │ │ └── UserApiKeys.scala │ ├── table │ ├── ExchangeApiTables.scala │ ├── ExchangePostgresProfile.scala │ ├── agent │ │ ├── AgentVersions.scala │ │ ├── AgentVersionsChanged.scala │ │ ├── AgentVersionsChangedTQ.scala │ │ ├── AgentVersionsRequest.scala │ │ ├── AgentVersionsResponse.scala │ │ ├── certificate │ │ │ ├── AgentCertificateVersions.scala │ │ │ └── AgentCertificateVersionsTQ.scala │ │ ├── configuration │ │ │ ├── AgentConfigurationVersions.scala │ │ │ └── AgentConfigurationVersionsTQ.scala │ │ └── software │ │ │ ├── AgentSoftwareVersions.scala │ │ │ └── AgentSoftwareVersionsTQ.scala │ ├── agreementbot │ │ ├── AAService.scala │ │ ├── AAWorkload.scala │ │ ├── Agbot.scala │ │ ├── AgbotRow.scala │ │ ├── Agbots.scala │ │ ├── AgbotsTQ.scala │ │ ├── agreement │ │ │ ├── AgbotAgreement.scala │ │ │ ├── AgbotAgreementRow.scala │ │ │ ├── AgbotAgreements.scala │ │ │ └── AgbotAgreementsTQ.scala │ │ ├── deploymentpattern │ │ │ ├── AgbotPattern.scala │ │ │ ├── AgbotPatternRow.scala │ │ │ ├── AgbotPatterns.scala │ │ │ └── AgbotPatternsTQ.scala │ │ ├── deploymentpolicy │ │ │ ├── AgbotBusinessPol.scala │ │ │ ├── AgbotBusinessPolRow.scala │ │ │ ├── AgbotBusinessPols.scala │ │ │ └── AgbotBusinessPolsTQ.scala │ │ └── message │ │ │ ├── AgbotMsg.scala │ │ │ ├── AgbotMsgRow.scala │ │ │ ├── AgbotMsgs.scala │ │ │ └── AgbotMsgsTQ.scala │ ├── apikey │ │ ├── ApiKeyMetadata.scala │ │ ├── ApiKeyRow.scala │ │ ├── ApiKeys.scala │ │ └── ApiKeysTQ.scala │ ├── deploymentpattern │ │ ├── OneSecretBindingService.scala │ │ ├── OneUserInputService.scala │ │ ├── OneUserInputValue.scala │ │ ├── PDataVerification.scala │ │ ├── PServiceVersions.scala │ │ ├── PServices.scala │ │ ├── Pattern.scala │ │ ├── PatternRow.scala │ │ ├── Patterns.scala │ │ ├── PatternsTQ.scala │ │ └── key │ │ │ ├── PatternKey.scala │ │ │ ├── PatternKeyRow.scala │ │ │ ├── PatternKeys.scala │ │ │ └── PatternKeysTQ.scala │ ├── deploymentpolicy │ │ ├── BService.scala │ │ ├── BServiceVersions.scala │ │ ├── Business.scala │ │ ├── BusinessPoliciesTQ.scala │ │ ├── BusinessPolicy.scala │ │ ├── BusinessPolicyRow.scala │ │ └── search │ │ │ ├── SearchOffsetPolicy.scala │ │ │ ├── SearchOffsetPolicyAttributes.scala │ │ │ └── SearchOffsetPolicyTQ.scala │ ├── managementpolicy │ │ ├── AgentUpgradePolicy.scala │ │ ├── ManagementPolicies.scala │ │ ├── ManagementPoliciesTQ.scala │ │ ├── ManagementPolicy.scala │ │ └── ManagementPolicyRow.scala │ ├── node │ │ ├── ContainerStatus.scala │ │ ├── Node.scala │ │ ├── NodeHeartbeatIntervals.scala │ │ ├── NodeRow.scala │ │ ├── NodeType.scala │ │ ├── Nodes.scala │ │ ├── NodesTQ.scala │ │ ├── OneService.scala │ │ ├── Op.scala │ │ ├── Prop.scala │ │ ├── PropList.scala │ │ ├── PropType.scala │ │ ├── PropVar.scala │ │ ├── RegService.scala │ │ ├── RegServiceSearch.scala │ │ ├── RegServiceTrait.scala │ │ ├── agreement │ │ │ ├── AgreementsHash.scala │ │ │ ├── NAService.scala │ │ │ ├── NAgrService.scala │ │ │ ├── NodeAgreement.scala │ │ │ ├── NodeAgreementRow.scala │ │ │ ├── NodeAgreements.scala │ │ │ └── NodeAgreementsTQ.scala │ │ ├── deploymentpolicy │ │ │ ├── NodePolicies.scala │ │ │ ├── NodePolicy.scala │ │ │ ├── NodePolicyRow.scala │ │ │ ├── NodePolicyTQ.scala │ │ │ └── PropertiesAndConstraints.scala │ │ ├── error │ │ │ ├── NodeError.scala │ │ │ ├── NodeErrorRow.scala │ │ │ ├── NodeErrorTQ.scala │ │ │ └── NodeErrors.scala │ │ ├── group │ │ │ ├── NodeGroup.scala │ │ │ ├── NodeGroupRow.scala │ │ │ ├── NodeGroupTQ.scala │ │ │ ├── NodeGroups.scala │ │ │ └── assignment │ │ │ │ ├── NodeGroupAssignment.scala │ │ │ │ ├── NodeGroupAssignmentRow.scala │ │ │ │ ├── NodeGroupAssignmentTQ.scala │ │ │ │ ├── NodeGroupAssignments.scala │ │ │ │ └── PostPutNodeGroupsRequest.scala │ │ ├── managementpolicy │ │ │ └── status │ │ │ │ ├── GetNMPStatusResponse.scala │ │ │ │ ├── NMPStatus.scala │ │ │ │ ├── NodeMgmtPolStatus.scala │ │ │ │ ├── NodeMgmtPolStatusRow.scala │ │ │ │ ├── NodeMgmtPolStatuses.scala │ │ │ │ ├── PolicyStatus.scala │ │ │ │ └── UpgradedVersions.scala │ │ ├── message │ │ │ ├── NodeMsg.scala │ │ │ ├── NodeMsgRow.scala │ │ │ ├── NodeMsgs.scala │ │ │ └── NodeMsgsTQ.scala │ │ └── status │ │ │ ├── NodeStatus.scala │ │ │ ├── NodeStatusRow.scala │ │ │ ├── NodeStatusTQ.scala │ │ │ └── NodeStatuses.scala │ ├── organization │ │ ├── Org.scala │ │ ├── OrgLimits.scala │ │ ├── OrgRow.scala │ │ ├── Orgs.scala │ │ └── OrgsTQ.scala │ ├── resourcechange │ │ ├── ResChangeCategory.scala │ │ ├── ResChangeOperation.scala │ │ ├── ResChangeResource.scala │ │ ├── ResourceChange.scala │ │ ├── ResourceChangeRow.scala │ │ ├── ResourceChanges.scala │ │ └── ResourceChangesTQ.scala │ ├── schema │ │ ├── Schema.scala │ │ ├── SchemaRow.scala │ │ ├── SchemaTQ.scala │ │ └── SchemaTable.scala │ ├── service │ │ ├── OneProperty.scala │ │ ├── SearchService.scala │ │ ├── SearchServiceKey.scala │ │ ├── SearchServiceTQ.scala │ │ ├── Service.scala │ │ ├── ServiceRef.scala │ │ ├── ServiceRef2.scala │ │ ├── ServiceRow.scala │ │ ├── Services.scala │ │ ├── ServicesTQ.scala │ │ ├── dockerauth │ │ │ ├── ServiceDockAuth.scala │ │ │ ├── ServiceDockAuthRow.scala │ │ │ ├── ServiceDockAuths.scala │ │ │ └── ServiceDockAuthsTQ.scala │ │ ├── key │ │ │ ├── ServiceKey.scala │ │ │ ├── ServiceKeyRow.scala │ │ │ ├── ServiceKeys.scala │ │ │ └── ServiceKeysTQ.scala │ │ └── policy │ │ │ ├── ServicePolicies.scala │ │ │ ├── ServicePolicy.scala │ │ │ ├── ServicePolicyRow.scala │ │ │ └── ServicePolicyTQ.scala │ └── user │ │ ├── User.scala │ │ ├── UserRow.scala │ │ ├── Users.scala │ │ └── UsersTQ.scala │ └── utility │ ├── AccessDeniedRejection.scala │ ├── AlreadyExists2Rejection.scala │ ├── AlreadyExistsRejection.scala │ ├── ApiRespType.scala │ ├── ApiResponse.scala │ ├── ApiTime.scala │ ├── ApiUtils.scala │ ├── AuthRejection.scala │ ├── BadCredsRejection.scala │ ├── BadGwRejection.scala │ ├── BadInputRejection.scala │ ├── Configuration.scala │ ├── DatabaseConnection.scala │ ├── ExchMsg.scala │ ├── ExchangePosgtresErrorHandling.scala │ ├── ExchangeRejection.scala │ ├── GwTimeoutRejection.scala │ ├── HttpCode.scala │ ├── InternalErrorRejection.scala │ ├── LogLevel.scala │ ├── NodeAgbotTokenValidation.scala │ ├── NotFoundRejection.scala │ ├── Nth.scala │ ├── RouteUtils.scala │ ├── StrConstants.scala │ ├── Version.scala │ └── VersionRange.scala └── test ├── bash ├── README.md ├── agbot.sh ├── anonymous.sh ├── dropalltables.sh ├── frontend.sh ├── functions.sh ├── get │ ├── admin │ │ ├── dropdb-token │ │ │ └── root.sh │ │ └── gettest │ │ │ └── root.sh │ ├── agbots │ │ └── notthere.sh │ ├── agreements │ │ ├── agbots-notthere.sh │ │ └── nodes-notthere.sh │ ├── nodes │ │ ├── 1-urlparms-noid.sh │ │ ├── 1-urlparms-user.sh │ │ ├── 1-urlparms.sh │ │ ├── all-root-urlparms.sh │ │ └── notthere.sh │ └── users │ │ ├── all-root-encoded.sh │ │ ├── user-baduser.sh │ │ └── user-newpw.sh ├── https.sh ├── node.sh ├── patch │ ├── agbots │ │ ├── 1-agbot-badinput.sh │ │ ├── 1-agbot-publicKey-blank.sh │ │ ├── 1-agbot-publicKey.sh │ │ └── 1-agbot-token.sh │ ├── nodes │ │ ├── 1-node-badinput.sh │ │ ├── 1-node-name.sh │ │ ├── 1-node-pattern.sh │ │ ├── 1-node-publicKey-blank.sh │ │ └── 1-node-publicKey.sh │ ├── pattern │ │ └── patch.sh │ └── services │ │ ├── gps-arch-bad.sh │ │ ├── gps-sharable-bad.sh │ │ ├── gps.sh │ │ └── location.sh ├── post │ ├── admin │ │ ├── dropdb │ │ │ └── root.sh │ │ ├── hashpw │ │ │ ├── root.sh │ │ │ └── user.sh │ │ ├── initdb │ │ │ └── root.sh │ │ └── reload │ │ │ ├── root.sh │ │ │ └── user.sh │ ├── agbots │ │ ├── dataheartbeat │ │ │ ├── 123-list.sh │ │ │ └── 123.sh │ │ ├── heartbeat │ │ │ ├── 1-user.sh │ │ │ └── 1.sh │ │ ├── isrecentdata │ │ │ └── 123-list.sh │ │ └── msgs │ │ │ └── a1-msg1.sh │ ├── agreements │ │ └── confirm │ │ │ ├── 123-a2.sh │ │ │ ├── 123-user.sh │ │ │ └── 123.sh │ ├── nodes │ │ ├── heartbeat │ │ │ ├── 1-user.sh │ │ │ └── 1.sh │ │ └── msgs │ │ │ ├── 1-msg1.sh │ │ │ ├── 1-msg2.sh │ │ │ └── 2-msg1.sh │ ├── orgs │ │ └── create.sh │ ├── patterns │ │ ├── nodehealth │ │ │ └── p1.sh │ │ ├── p1.sh │ │ └── search │ │ │ └── location.sh │ ├── search │ │ └── devices │ │ │ ├── multiple-wildcard.sh │ │ │ ├── netspeed-dave.sh │ │ │ ├── netspeed-wildcard-agbot.sh │ │ │ ├── netspeed-wildcard.sh │ │ │ ├── sdr-arch-x86.sh │ │ │ ├── sdr-badpw.sh │ │ │ ├── sdr-datav-false.sh │ │ │ ├── sdr-good-agbot.sh │ │ │ ├── sdr-good.sh │ │ │ ├── sdr-memory-400.sh │ │ │ ├── sdr-noversion.sh │ │ │ ├── sdr-version-2.sh │ │ │ ├── sdr-wildcard-prod.sh │ │ │ ├── sdr-wildcard-stale.sh │ │ │ └── sdr-wildcard.sh │ ├── services │ │ ├── dockauths │ │ │ └── gps.sh │ │ ├── gps.sh │ │ ├── location-bad-reqsvc.sh │ │ ├── location-diff-arch-bad.sh │ │ └── location.sh │ └── users │ │ ├── 2-create-admin.sh │ │ ├── 2-create-badinput.sh │ │ ├── 2-create-noemail.sh │ │ ├── 2-create.sh │ │ ├── 3-create-2.sh │ │ ├── changepw │ │ ├── user-backtoorig.sh │ │ └── user.sh │ │ ├── confirm │ │ ├── baduser.sh │ │ ├── user-encoded.sh │ │ ├── user-newpw.sh │ │ ├── user-urlparms.sh │ │ ├── user-urlparms2.sh │ │ └── user.sh │ │ ├── new-create-admin.sh │ │ ├── reset │ │ ├── anonymous.sh │ │ ├── user-root.sh │ │ └── user.sh │ │ ├── user-create-anonymous.sh │ │ ├── user-create-frontend.sh │ │ └── user-create-root.sh ├── primedb.sh ├── put │ ├── admin │ │ ├── config │ │ │ ├── maxAgbots.sh │ │ │ ├── maxAgreements.sh │ │ │ ├── maxDevices.sh │ │ │ └── maxMessagesInMailbox.sh │ │ ├── loglevel │ │ │ └── root.sh │ │ └── table │ │ │ └── users.sh │ ├── agbots │ │ ├── a1-compatible.sh │ │ ├── a1-frontend.sh │ │ ├── a1-root.sh │ │ ├── a1.sh │ │ ├── a2-root.sh │ │ ├── a2-user.sh │ │ └── a3.sh │ ├── agreements │ │ ├── 123-agbot-user.sh │ │ ├── 123-agbot.sh │ │ ├── 123-node.sh │ │ ├── 456-agbot.sh │ │ ├── 456-node.sh │ │ ├── 789-agbot.sh │ │ └── 789-node.sh │ ├── nodes │ │ ├── 1-node.sh │ │ ├── 1-user-changes.sh │ │ ├── 1-user-compatible.sh │ │ ├── 1-user.sh │ │ ├── 2-memory-400-node.sh │ │ ├── 2-memory-400.sh │ │ ├── 3-version-2-root.sh │ │ ├── 3-version-2-user.sh │ │ ├── 4-badbool.sh │ │ ├── 4-badint.sh │ │ ├── 4-badop.sh │ │ ├── 999-badinput.sh │ │ ├── status │ │ │ └── 1-node.sh │ │ └── weird-user.sh │ ├── patterns │ │ ├── p1-no-nodehealth.sh │ │ └── p1.sh │ ├── services │ │ ├── dockauths │ │ │ └── gps-1.sh │ │ ├── gps-arch-bad.sh │ │ ├── gps-sharable-bad.sh │ │ ├── gps.sh │ │ └── keys │ │ │ └── key.sh │ └── users │ │ ├── 2-create-root.sh │ │ ├── 2-update-root.sh │ │ ├── root-root.sh │ │ ├── root-user.sh │ │ ├── user-create-root.sh │ │ ├── user-update-email.sh │ │ ├── user-update-root.sh │ │ └── user-update.sh ├── root.sh ├── scale │ ├── agbot.sh │ ├── deleteperforg.sh │ ├── functions.sh │ ├── node.sh │ ├── scaledriver.sh │ ├── summarize.sh │ ├── test.sh │ └── wrapper.sh ├── user.sh └── user2.sh ├── go ├── .gitignore ├── Makefile ├── agbot │ └── agbot.go ├── node │ └── node.go └── perfutils │ └── perfutils.go ├── java └── org │ └── openhorizon │ └── exchangeapi │ └── annotation │ └── AdminStatusTest.java ├── resources └── logback-test.xml └── scala └── org └── openhorizon └── exchangeapi ├── AdminSuite.scala ├── AgbotsSuite.scala ├── BusinessSuite.scala ├── CatalogSuite.scala ├── NodesSuite.scala ├── PatternsSuite.scala ├── PerfSuite.scala ├── ServicesSuite.scala ├── SlickSuite.scala ├── UsersSuite.scala ├── route ├── administration │ ├── TestAdminConfigRequest.scala │ ├── TestAdminDropdbTokenResponse.scala │ └── TestGetAdminStatus.scala ├── agent │ ├── TestAgentConfigMgmt.scala │ ├── TestDeleteAgentConfigMgmt.scala │ ├── TestGetAgentConfigMgmt.scala │ └── TestPutAgentConfigMgmt.scala ├── agreement │ └── TestPostAgreementConfirmRoute.scala ├── agreementbot │ └── message │ │ └── TestAgbotGetMsgRoute.scala ├── deploymentpattern │ └── TestGetPatternsResponse.scala ├── deploymentpolicy │ ├── TestBusPolPostSearchRoute.scala │ ├── TestBusinessPolicyNodeResponse.scala │ └── TestBusinessPolicySearchHashElement.scala ├── managementpolicy │ ├── ManagementPoliciesSuite.scala │ ├── TestGetManagementPoliciesResponse.scala │ └── TestMgmtPolsGet.scala ├── node │ ├── TestGetNode.scala │ ├── TestNodeHealthAgreementElement.scala │ ├── TestNodePatch.scala │ ├── TestNodesGetDetails.scala │ ├── TestPatternNodeResponse.scala │ ├── TestPatternSearchHashElement.scala │ ├── managementpolicy │ │ ├── TestNodeDeleteMgmtPolStatus.scala │ │ ├── TestNodeGetAllMgmtPolStatus.scala │ │ ├── TestNodeGetMgmtPolStatus.scala │ │ └── TestNodePutMgmtPolStatus.scala │ └── message │ │ └── TestNodeGetMsgRoute.scala ├── nodegroup │ ├── TestDeleteNodeGroup.scala │ ├── TestGetAllNodeGroups.scala │ ├── TestGetNodeGroup.scala │ ├── TestPostNodeGroup.scala │ ├── TestPutNodeGroup.scala │ └── node │ │ ├── TestDeleteNodeFromNodeGroup.scala │ │ └── TestPostNodeToNodeGroup.scala ├── organization │ ├── TestDeleteOrgRoute.scala │ ├── TestGetMaxChangeIDRoute.scala │ ├── TestGetOrgRoute.scala │ ├── TestGetOrgsRoute.scala │ ├── TestPatchOrgRoute.scala │ ├── TestPostMyOrgsRoute.scala │ ├── TestPostOrgChangesRoute.scala │ ├── TestPostOrgRoute.scala │ └── TestPutOrgRoute.scala ├── search │ ├── TestGetAllNodeErrorsRoute.scala │ ├── TestPostNodeErrorsRoute.scala │ ├── TestPostNodeHealthRoute.scala │ └── TestPostNodesServiceRoute.scala ├── service │ ├── TestGetServiceAttributeResponse.scala │ └── TestGetServicesResponse.scala └── user │ ├── TestDeleteUserRoute.scala │ ├── TestGetUserRoute.scala │ ├── TestGetUsersResponse.scala │ ├── TestGetUsersRoute.scala │ ├── TestPatchUserRoute.scala │ ├── TestPostChangeUserPasswordRoute.scala │ ├── TestPostConfirmUserRoute.scala │ ├── TestPostUserRoute.scala │ ├── TestPutUserRoute.scala │ └── apikey │ ├── TestDeleteApiKeyRoute.scala │ ├── TestGetApiKeyRoute.scala │ └── TestPostApiKeyRoute.scala ├── tag └── AdminStatusTest.scala └── utility ├── TestVersion.scala ├── TestVersionRange.scala ├── apiutils └── TestApiUtilsTime.scala ├── exchconfiguration └── TestExchConfiguration.scala └── tokenvalidation └── TestNodeAgbotTokenValidation.scala /.github/workflows/build-container-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/.github/workflows/build-container-images.yml -------------------------------------------------------------------------------- /.github/workflows/build-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/.github/workflows/build-push.yml -------------------------------------------------------------------------------- /.github/workflows/checkout-and-compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/.github/workflows/checkout-and-compile.yml -------------------------------------------------------------------------------- /.github/workflows/copydocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/.github/workflows/copydocs.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-graph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/.github/workflows/dependency-graph.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/README.md -------------------------------------------------------------------------------- /docs/QuickStart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/docs/QuickStart.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/openapi-3-developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/docs/openapi-3-developer.json -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.7 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/application.conf -------------------------------------------------------------------------------- /src/main/resources/exchange.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/exchange.conf -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/main/resources/messages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/messages.txt -------------------------------------------------------------------------------- /src/main/resources/messages_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/messages_de.txt -------------------------------------------------------------------------------- /src/main/resources/messages_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/messages_es.txt -------------------------------------------------------------------------------- /src/main/resources/messages_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/messages_fr.txt -------------------------------------------------------------------------------- /src/main/resources/messages_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/messages_it.txt -------------------------------------------------------------------------------- /src/main/resources/messages_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/messages_ja.txt -------------------------------------------------------------------------------- /src/main/resources/messages_ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/messages_ko.txt -------------------------------------------------------------------------------- /src/main/resources/messages_pt_br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/messages_pt_br.txt -------------------------------------------------------------------------------- /src/main/resources/messages_zh_cn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/messages_zh_cn.txt -------------------------------------------------------------------------------- /src/main/resources/messages_zh_tw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/messages_zh_tw.txt -------------------------------------------------------------------------------- /src/main/resources/reference.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/reference.conf -------------------------------------------------------------------------------- /src/main/resources/swagger/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/swagger/favicon-16x16.png -------------------------------------------------------------------------------- /src/main/resources/swagger/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/swagger/favicon-32x32.png -------------------------------------------------------------------------------- /src/main/resources/swagger/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/swagger/index.css -------------------------------------------------------------------------------- /src/main/resources/swagger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/swagger/index.html -------------------------------------------------------------------------------- /src/main/resources/swagger/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/swagger/oauth2-redirect.html -------------------------------------------------------------------------------- /src/main/resources/swagger/swagger-initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/swagger/swagger-initializer.js -------------------------------------------------------------------------------- /src/main/resources/swagger/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/swagger/swagger-ui-bundle.js -------------------------------------------------------------------------------- /src/main/resources/swagger/swagger-ui-es-bundle-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/swagger/swagger-ui-es-bundle-core.js -------------------------------------------------------------------------------- /src/main/resources/swagger/swagger-ui-es-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/swagger/swagger-ui-es-bundle.js -------------------------------------------------------------------------------- /src/main/resources/swagger/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/swagger/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /src/main/resources/swagger/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/swagger/swagger-ui.css -------------------------------------------------------------------------------- /src/main/resources/swagger/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/resources/swagger/swagger-ui.js -------------------------------------------------------------------------------- /src/main/resources/version.txt: -------------------------------------------------------------------------------- 1 | 2.154.0 2 | -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/ExchangeApiApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/ExchangeApiApp.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/SwaggerDocService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/SwaggerDocService.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/Access.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/Access.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/AccessGroups.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/AccessGroups.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/ApiKeyUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/ApiKeyUtils.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/AuthCache.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/AuthCache.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/AuthRoles.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/AuthRoles.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/AuthenticationSupport.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/AuthenticationSupport.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/AuthorizationSupport.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/AuthorizationSupport.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/CacheIdType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/CacheIdType.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/CompositeId.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/CompositeId.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/Creds.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/Creds.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/Exceptions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/Exceptions.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/IAgbot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/IAgbot.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/IIdentity.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/IIdentity.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/INode.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/INode.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/IUser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/IUser.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/Identity.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/Identity.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/Module.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/Module.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/OrgAndId.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/OrgAndId.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/OrgAndIdCred.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/OrgAndIdCred.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/Password.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/Password.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/RequestInfo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/RequestInfo.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/Role.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/Role.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/TAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/TAction.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/TAgbot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/TAgbot.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/TBusiness.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/TBusiness.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/TManagementPolicy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/TManagementPolicy.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/TNode.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/TNode.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/TOrg.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/TOrg.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/TPattern.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/TPattern.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/TService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/TService.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/TUser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/TUser.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/Target.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/Target.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/Token.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/Token.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/auth/cloud/IBM.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/auth/cloud/IBM.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/AdminConfigRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/AdminConfigRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/AdminDropdbTokenResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/AdminDropdbTokenResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/AdminOrgStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/AdminOrgStatus.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/AdminStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/AdminStatus.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/ClearAuthCache.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/ClearAuthCache.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/Configuration.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/Configuration.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/DeleteIBMChangesRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/DeleteIBMChangesRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/DeleteOrgChangesRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/DeleteOrgChangesRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/DropDatabase.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/DropDatabase.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/InitializeDatabase.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/InitializeDatabase.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/OrganizationStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/OrganizationStatus.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/Reload.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/Reload.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/Status.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/Status.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/Version.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/Version.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/administration/dropdatabase/Token.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/administration/dropdatabase/Token.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agent/AgentConfigurationManagement.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agent/AgentConfigurationManagement.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/AgreementBot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/AgreementBot.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/AgreementBots.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/AgreementBots.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/GetAgbotAgreementsResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/GetAgbotAgreementsResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/GetAgbotAttributeResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/GetAgbotAttributeResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/GetAgbotBusinessPolsResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/GetAgbotBusinessPolsResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/GetAgbotMsgsResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/GetAgbotMsgsResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/GetAgbotPatternsResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/GetAgbotPatternsResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/GetAgbotsResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/GetAgbotsResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/Heartbeat.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/Heartbeat.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/PatchAgbotsRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/PatchAgbotsRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/PostAgbotBusinessPolRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/PostAgbotBusinessPolRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/PostAgbotPatternRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/PostAgbotPatternRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/PostAgbotsMsgsRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/PostAgbotsMsgsRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/PostAgreementsConfirmRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/PostAgreementsConfirmRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/PutAgbotAgreementRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/PutAgbotAgreementRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/PutAgbotsRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/PutAgbotsRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/agreement/Agreement.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/agreement/Agreement.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/agreement/Agreements.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/agreement/Agreements.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/agreement/Confirm.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/agreement/Confirm.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/deploymentpattern/DeploymentPattern.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/deploymentpattern/DeploymentPattern.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/deploymentpolicy/DeploymentPolicies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/deploymentpolicy/DeploymentPolicies.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/deploymentpolicy/DeploymentPolicy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/deploymentpolicy/DeploymentPolicy.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/message/Message.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/message/Message.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/message/Messages.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/agreementbot/message/Messages.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/catalog/DeploymentPatterns.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/catalog/DeploymentPatterns.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/catalog/OrganizationDeploymentPatterns.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/catalog/OrganizationDeploymentPatterns.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/catalog/OrganizationServices.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/catalog/OrganizationServices.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/catalog/Services.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/catalog/Services.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/DeploymentPattern.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/DeploymentPattern.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/DeploymentPatterns.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/DeploymentPatterns.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/GetPatternAttributeResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/GetPatternAttributeResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/GetPatternsResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/GetPatternsResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/NodeHealth.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/NodeHealth.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/PatchPatternRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/PatchPatternRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/PatternUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/PatternUtils.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/PostPatternSearchRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/PostPatternSearchRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/PostPutPatternRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/PostPutPatternRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/PutPatternKeyRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/PutPatternKeyRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/Search.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/Search.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/key/Key.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/key/Key.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/key/Keys.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpattern/key/Keys.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/BusinessPolicyNodeResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/BusinessPolicyNodeResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/BusinessPolicySearchHashElement.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/BusinessPolicySearchHashElement.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/BusinessUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/BusinessUtils.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/DeploymentPolicies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/DeploymentPolicies.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/DeploymentPolicy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/DeploymentPolicy.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/DeploymentPolicySearch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/DeploymentPolicySearch.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/GetBusinessPoliciesResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/GetBusinessPoliciesResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/PatchBusinessPolicyRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/PatchBusinessPolicyRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/PolicySearchResponseDesync.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/PolicySearchResponseDesync.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/PostBusinessPolicySearchRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/PostBusinessPolicySearchRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/PostPutBusinessPolicyRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/PostPutBusinessPolicyRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/managementpolicy/GetManagementPoliciesResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/managementpolicy/GetManagementPoliciesResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/managementpolicy/ManagementPolicies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/managementpolicy/ManagementPolicies.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/managementpolicy/ManagementPolicy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/managementpolicy/ManagementPolicy.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/ConfigurationState.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/ConfigurationState.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/Details.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/Details.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/Errors.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/Errors.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/GetNodeAgreementsResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/GetNodeAgreementsResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/GetNodeAttributeResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/GetNodeAttributeResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/GetNodeMsgsResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/GetNodeMsgsResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/GetNodesResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/GetNodesResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/GetNodesUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/GetNodesUtils.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/Heartbeat.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/Heartbeat.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/Node.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/Node.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/NodeDetails.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/NodeDetails.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/NodeMangementPolicyStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/NodeMangementPolicyStatus.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/NodeResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/NodeResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/Nodes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/Nodes.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PatchNodesRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PatchNodesRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PatternNodeResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PatternNodeResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PatternSearchHashElement.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PatternSearchHashElement.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/Policy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/Policy.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PostNodeConfigStateRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PostNodeConfigStateRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PostNodeErrorRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PostNodeErrorRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PostNodeErrorResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PostNodeErrorResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PostNodesMsgsRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PostNodesMsgsRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PostPatternSearchResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PostPatternSearchResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PostSearchNodesResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PostSearchNodesResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PostServiceSearchRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PostServiceSearchRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PostServiceSearchResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PostServiceSearchResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PutNodeAgreementRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PutNodeAgreementRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PutNodeErrorRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PutNodeErrorRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PutNodeMgmtPolStatusRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PutNodeMgmtPolStatusRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PutNodePolicyRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PutNodePolicyRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PutNodeStatusRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PutNodeStatusRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/PutNodesRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/PutNodesRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/Status.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/Status.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/UpgradedVersions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/UpgradedVersions.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/agreement/Agreement.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/agreement/Agreement.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/agreement/Agreements.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/agreement/Agreements.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/managementpolicy/Status.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/managementpolicy/Status.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/managementpolicy/Statuses.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/managementpolicy/Statuses.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/message/Message.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/message/Message.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/node/message/Messages.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/node/message/Messages.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/nodegroup/GetNodeGroupsResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/nodegroup/GetNodeGroupsResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/nodegroup/NodeGroup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/nodegroup/NodeGroup.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/nodegroup/NodeGroupResp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/nodegroup/NodeGroupResp.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/nodegroup/NodeGroups.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/nodegroup/NodeGroups.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/nodegroup/PutNodeGroupsRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/nodegroup/PutNodeGroupsRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/nodegroup/node/Node.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/nodegroup/node/Node.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/AllNodeErrorsInOrgResp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/AllNodeErrorsInOrgResp.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/ChangeEntry.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/ChangeEntry.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/Changes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/Changes.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/Cleanup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/Cleanup.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/GetMyOrgsRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/GetMyOrgsRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/GetOrgAttributeResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/GetOrgAttributeResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/GetOrgStatusResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/GetOrgStatusResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/GetOrgsResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/GetOrgsResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/MaxChangeId.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/MaxChangeId.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/MaxChangeIdResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/MaxChangeIdResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/MyOrganizations.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/MyOrganizations.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/NodeErrorsResp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/NodeErrorsResp.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/NodeHealthAgreementElement.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/NodeHealthAgreementElement.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/NodeHealthHashElement.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/NodeHealthHashElement.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/Organization.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/Organization.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/Organizations.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/Organizations.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/PatchOrgRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/PatchOrgRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/PostNodeHealthRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/PostNodeHealthRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/PostNodeHealthResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/PostNodeHealthResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/PostPutOrgRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/PostPutOrgRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/ResourceChangesInnerObject.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/ResourceChangesInnerObject.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/ResourceChangesRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/ResourceChangesRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/ResourceChangesRespObject.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/ResourceChangesRespObject.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/organization/Status.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/organization/Status.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/search/NodeError.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/search/NodeError.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/search/NodeErrors.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/search/NodeErrors.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/search/NodeHealth.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/search/NodeHealth.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/search/NodeService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/search/NodeService.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/GetServiceAttributeResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/GetServiceAttributeResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/GetServicesResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/GetServicesResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/PatchServiceRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/PatchServiceRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/Policy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/Policy.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/PostPutServiceDockAuthRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/PostPutServiceDockAuthRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/PostPutServiceRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/PostPutServiceRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/PutServiceKeyRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/PutServiceKeyRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/PutServicePolicyRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/PutServicePolicyRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/Service.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/Service.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/Services.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/Services.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/SharableVals.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/SharableVals.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/dockerauth/DockerAuth.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/dockerauth/DockerAuth.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/dockerauth/DockerAuths.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/dockerauth/DockerAuths.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/key/Key.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/key/Key.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/service/key/Keys.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/service/key/Keys.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/user/ChangePassword.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/user/ChangePassword.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/user/ChangePwRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/user/ChangePwRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/user/Confirm.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/user/Confirm.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/user/GetUsersResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/user/GetUsersResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/user/MethodNotAllowedException.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/user/MethodNotAllowedException.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/user/PatchUsersRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/user/PatchUsersRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/user/PostPutUsersRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/user/PostPutUsersRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/user/User.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/user/User.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/user/Users.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/user/Users.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/user/apikey/PostApiKeyRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/user/apikey/PostApiKeyRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/user/apikey/PostApiKeyResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/user/apikey/PostApiKeyResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/route/user/apikey/UserApiKeys.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/route/user/apikey/UserApiKeys.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/ExchangeApiTables.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/ExchangeApiTables.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/ExchangePostgresProfile.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/ExchangePostgresProfile.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agent/AgentVersions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agent/AgentVersions.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agent/AgentVersionsChanged.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agent/AgentVersionsChanged.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agent/AgentVersionsChangedTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agent/AgentVersionsChangedTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agent/AgentVersionsRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agent/AgentVersionsRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agent/AgentVersionsResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agent/AgentVersionsResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agent/certificate/AgentCertificateVersions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agent/certificate/AgentCertificateVersions.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agent/certificate/AgentCertificateVersionsTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agent/certificate/AgentCertificateVersionsTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agent/configuration/AgentConfigurationVersions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agent/configuration/AgentConfigurationVersions.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agent/software/AgentSoftwareVersions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agent/software/AgentSoftwareVersions.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agent/software/AgentSoftwareVersionsTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agent/software/AgentSoftwareVersionsTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/AAService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/AAService.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/AAWorkload.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/AAWorkload.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/Agbot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/Agbot.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/AgbotRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/AgbotRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/Agbots.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/Agbots.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/AgbotsTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/AgbotsTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/agreement/AgbotAgreement.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/agreement/AgbotAgreement.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/agreement/AgbotAgreementRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/agreement/AgbotAgreementRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/agreement/AgbotAgreements.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/agreement/AgbotAgreements.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/agreement/AgbotAgreementsTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/agreement/AgbotAgreementsTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/deploymentpattern/AgbotPattern.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/deploymentpattern/AgbotPattern.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/deploymentpattern/AgbotPatternRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/deploymentpattern/AgbotPatternRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/deploymentpattern/AgbotPatterns.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/deploymentpattern/AgbotPatterns.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/deploymentpattern/AgbotPatternsTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/deploymentpattern/AgbotPatternsTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/deploymentpolicy/AgbotBusinessPol.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/deploymentpolicy/AgbotBusinessPol.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/message/AgbotMsg.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/message/AgbotMsg.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/message/AgbotMsgRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/message/AgbotMsgRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/message/AgbotMsgs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/message/AgbotMsgs.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/message/AgbotMsgsTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/agreementbot/message/AgbotMsgsTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/apikey/ApiKeyMetadata.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/apikey/ApiKeyMetadata.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/apikey/ApiKeyRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/apikey/ApiKeyRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/apikey/ApiKeys.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/apikey/ApiKeys.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/apikey/ApiKeysTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/apikey/ApiKeysTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/OneSecretBindingService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/OneSecretBindingService.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/OneUserInputService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/OneUserInputService.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/OneUserInputValue.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/OneUserInputValue.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/PDataVerification.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/PDataVerification.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/PServiceVersions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/PServiceVersions.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/PServices.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/PServices.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/Pattern.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/Pattern.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/PatternRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/PatternRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/Patterns.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/Patterns.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/PatternsTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/PatternsTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/key/PatternKey.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/key/PatternKey.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/key/PatternKeyRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/key/PatternKeyRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/key/PatternKeys.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/key/PatternKeys.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/key/PatternKeysTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpattern/key/PatternKeysTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/BService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/BService.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/BServiceVersions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/BServiceVersions.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/Business.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/Business.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/BusinessPoliciesTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/BusinessPoliciesTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/BusinessPolicy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/BusinessPolicy.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/BusinessPolicyRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/BusinessPolicyRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/search/SearchOffsetPolicy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/search/SearchOffsetPolicy.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/search/SearchOffsetPolicyTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/deploymentpolicy/search/SearchOffsetPolicyTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/managementpolicy/AgentUpgradePolicy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/managementpolicy/AgentUpgradePolicy.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/managementpolicy/ManagementPolicies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/managementpolicy/ManagementPolicies.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/managementpolicy/ManagementPoliciesTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/managementpolicy/ManagementPoliciesTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/managementpolicy/ManagementPolicy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/managementpolicy/ManagementPolicy.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/managementpolicy/ManagementPolicyRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/managementpolicy/ManagementPolicyRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/ContainerStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/ContainerStatus.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/Node.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/Node.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/NodeHeartbeatIntervals.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/NodeHeartbeatIntervals.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/NodeRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/NodeRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/NodeType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/NodeType.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/Nodes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/Nodes.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/NodesTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/NodesTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/OneService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/OneService.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/Op.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/Op.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/Prop.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/Prop.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/PropList.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/PropList.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/PropType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/PropType.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/PropVar.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/PropVar.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/RegService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/RegService.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/RegServiceSearch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/RegServiceSearch.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/RegServiceTrait.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/RegServiceTrait.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/agreement/AgreementsHash.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/agreement/AgreementsHash.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/agreement/NAService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/agreement/NAService.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/agreement/NAgrService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/agreement/NAgrService.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/agreement/NodeAgreement.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/agreement/NodeAgreement.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/agreement/NodeAgreementRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/agreement/NodeAgreementRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/agreement/NodeAgreements.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/agreement/NodeAgreements.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/agreement/NodeAgreementsTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/agreement/NodeAgreementsTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/deploymentpolicy/NodePolicies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/deploymentpolicy/NodePolicies.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/deploymentpolicy/NodePolicy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/deploymentpolicy/NodePolicy.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/deploymentpolicy/NodePolicyRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/deploymentpolicy/NodePolicyRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/deploymentpolicy/NodePolicyTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/deploymentpolicy/NodePolicyTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/deploymentpolicy/PropertiesAndConstraints.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/deploymentpolicy/PropertiesAndConstraints.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/error/NodeError.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/error/NodeError.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/error/NodeErrorRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/error/NodeErrorRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/error/NodeErrorTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/error/NodeErrorTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/error/NodeErrors.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/error/NodeErrors.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/group/NodeGroup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/group/NodeGroup.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/group/NodeGroupRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/group/NodeGroupRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/group/NodeGroupTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/group/NodeGroupTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/group/NodeGroups.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/group/NodeGroups.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/group/assignment/NodeGroupAssignment.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/group/assignment/NodeGroupAssignment.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/group/assignment/NodeGroupAssignmentRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/group/assignment/NodeGroupAssignmentRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/group/assignment/NodeGroupAssignmentTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/group/assignment/NodeGroupAssignmentTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/group/assignment/NodeGroupAssignments.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/group/assignment/NodeGroupAssignments.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/group/assignment/PostPutNodeGroupsRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/group/assignment/PostPutNodeGroupsRequest.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/managementpolicy/status/NMPStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/managementpolicy/status/NMPStatus.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/managementpolicy/status/NodeMgmtPolStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/managementpolicy/status/NodeMgmtPolStatus.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/managementpolicy/status/PolicyStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/managementpolicy/status/PolicyStatus.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/managementpolicy/status/UpgradedVersions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/managementpolicy/status/UpgradedVersions.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/message/NodeMsg.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/message/NodeMsg.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/message/NodeMsgRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/message/NodeMsgRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/message/NodeMsgs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/message/NodeMsgs.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/message/NodeMsgsTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/message/NodeMsgsTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/status/NodeStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/status/NodeStatus.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/status/NodeStatusRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/status/NodeStatusRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/status/NodeStatusTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/status/NodeStatusTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/node/status/NodeStatuses.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/node/status/NodeStatuses.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/organization/Org.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/organization/Org.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/organization/OrgLimits.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/organization/OrgLimits.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/organization/OrgRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/organization/OrgRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/organization/Orgs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/organization/Orgs.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/organization/OrgsTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/organization/OrgsTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/resourcechange/ResChangeCategory.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/resourcechange/ResChangeCategory.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/resourcechange/ResChangeOperation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/resourcechange/ResChangeOperation.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/resourcechange/ResChangeResource.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/resourcechange/ResChangeResource.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/resourcechange/ResourceChange.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/resourcechange/ResourceChange.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/resourcechange/ResourceChangeRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/resourcechange/ResourceChangeRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/resourcechange/ResourceChanges.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/resourcechange/ResourceChanges.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/resourcechange/ResourceChangesTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/resourcechange/ResourceChangesTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/schema/Schema.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/schema/Schema.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/schema/SchemaRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/schema/SchemaRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/schema/SchemaTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/schema/SchemaTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/schema/SchemaTable.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/schema/SchemaTable.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/OneProperty.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/OneProperty.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/SearchService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/SearchService.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/SearchServiceKey.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/SearchServiceKey.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/SearchServiceTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/SearchServiceTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/Service.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/Service.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/ServiceRef.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/ServiceRef.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/ServiceRef2.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/ServiceRef2.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/ServiceRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/ServiceRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/Services.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/Services.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/ServicesTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/ServicesTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/dockerauth/ServiceDockAuth.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/dockerauth/ServiceDockAuth.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/dockerauth/ServiceDockAuthRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/dockerauth/ServiceDockAuthRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/dockerauth/ServiceDockAuths.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/dockerauth/ServiceDockAuths.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/dockerauth/ServiceDockAuthsTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/dockerauth/ServiceDockAuthsTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/key/ServiceKey.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/key/ServiceKey.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/key/ServiceKeyRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/key/ServiceKeyRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/key/ServiceKeys.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/key/ServiceKeys.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/key/ServiceKeysTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/key/ServiceKeysTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/policy/ServicePolicies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/policy/ServicePolicies.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/policy/ServicePolicy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/policy/ServicePolicy.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/policy/ServicePolicyRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/policy/ServicePolicyRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/service/policy/ServicePolicyTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/service/policy/ServicePolicyTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/user/User.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/user/User.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/user/UserRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/user/UserRow.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/user/Users.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/user/Users.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/table/user/UsersTQ.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/table/user/UsersTQ.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/AccessDeniedRejection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/AccessDeniedRejection.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/AlreadyExists2Rejection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/AlreadyExists2Rejection.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/AlreadyExistsRejection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/AlreadyExistsRejection.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/ApiRespType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/ApiRespType.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/ApiResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/ApiResponse.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/ApiTime.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/ApiTime.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/ApiUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/ApiUtils.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/AuthRejection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/AuthRejection.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/BadCredsRejection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/BadCredsRejection.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/BadGwRejection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/BadGwRejection.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/BadInputRejection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/BadInputRejection.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/Configuration.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/Configuration.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/DatabaseConnection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/DatabaseConnection.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/ExchMsg.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/ExchMsg.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/ExchangePosgtresErrorHandling.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/ExchangePosgtresErrorHandling.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/ExchangeRejection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/ExchangeRejection.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/GwTimeoutRejection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/GwTimeoutRejection.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/HttpCode.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/HttpCode.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/InternalErrorRejection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/InternalErrorRejection.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/LogLevel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/LogLevel.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/NodeAgbotTokenValidation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/NodeAgbotTokenValidation.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/NotFoundRejection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/NotFoundRejection.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/Nth.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/Nth.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/RouteUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/RouteUtils.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/StrConstants.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/StrConstants.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/Version.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/Version.scala -------------------------------------------------------------------------------- /src/main/scala/org/openhorizon/exchangeapi/utility/VersionRange.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/main/scala/org/openhorizon/exchangeapi/utility/VersionRange.scala -------------------------------------------------------------------------------- /src/test/bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/README.md -------------------------------------------------------------------------------- /src/test/bash/agbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/agbot.sh -------------------------------------------------------------------------------- /src/test/bash/anonymous.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/anonymous.sh -------------------------------------------------------------------------------- /src/test/bash/dropalltables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/dropalltables.sh -------------------------------------------------------------------------------- /src/test/bash/frontend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/frontend.sh -------------------------------------------------------------------------------- /src/test/bash/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/functions.sh -------------------------------------------------------------------------------- /src/test/bash/get/admin/dropdb-token/root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/get/admin/dropdb-token/root.sh -------------------------------------------------------------------------------- /src/test/bash/get/admin/gettest/root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/get/admin/gettest/root.sh -------------------------------------------------------------------------------- /src/test/bash/get/agbots/notthere.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/get/agbots/notthere.sh -------------------------------------------------------------------------------- /src/test/bash/get/agreements/agbots-notthere.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/get/agreements/agbots-notthere.sh -------------------------------------------------------------------------------- /src/test/bash/get/agreements/nodes-notthere.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/get/agreements/nodes-notthere.sh -------------------------------------------------------------------------------- /src/test/bash/get/nodes/1-urlparms-noid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/get/nodes/1-urlparms-noid.sh -------------------------------------------------------------------------------- /src/test/bash/get/nodes/1-urlparms-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/get/nodes/1-urlparms-user.sh -------------------------------------------------------------------------------- /src/test/bash/get/nodes/1-urlparms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/get/nodes/1-urlparms.sh -------------------------------------------------------------------------------- /src/test/bash/get/nodes/all-root-urlparms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/get/nodes/all-root-urlparms.sh -------------------------------------------------------------------------------- /src/test/bash/get/nodes/notthere.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/get/nodes/notthere.sh -------------------------------------------------------------------------------- /src/test/bash/get/users/all-root-encoded.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/get/users/all-root-encoded.sh -------------------------------------------------------------------------------- /src/test/bash/get/users/user-baduser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/get/users/user-baduser.sh -------------------------------------------------------------------------------- /src/test/bash/get/users/user-newpw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/get/users/user-newpw.sh -------------------------------------------------------------------------------- /src/test/bash/https.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/https.sh -------------------------------------------------------------------------------- /src/test/bash/node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/node.sh -------------------------------------------------------------------------------- /src/test/bash/patch/agbots/1-agbot-badinput.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/patch/agbots/1-agbot-badinput.sh -------------------------------------------------------------------------------- /src/test/bash/patch/agbots/1-agbot-publicKey-blank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/patch/agbots/1-agbot-publicKey-blank.sh -------------------------------------------------------------------------------- /src/test/bash/patch/agbots/1-agbot-publicKey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/patch/agbots/1-agbot-publicKey.sh -------------------------------------------------------------------------------- /src/test/bash/patch/agbots/1-agbot-token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/patch/agbots/1-agbot-token.sh -------------------------------------------------------------------------------- /src/test/bash/patch/nodes/1-node-badinput.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/patch/nodes/1-node-badinput.sh -------------------------------------------------------------------------------- /src/test/bash/patch/nodes/1-node-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/patch/nodes/1-node-name.sh -------------------------------------------------------------------------------- /src/test/bash/patch/nodes/1-node-pattern.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/patch/nodes/1-node-pattern.sh -------------------------------------------------------------------------------- /src/test/bash/patch/nodes/1-node-publicKey-blank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/patch/nodes/1-node-publicKey-blank.sh -------------------------------------------------------------------------------- /src/test/bash/patch/nodes/1-node-publicKey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/patch/nodes/1-node-publicKey.sh -------------------------------------------------------------------------------- /src/test/bash/patch/pattern/patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/patch/pattern/patch.sh -------------------------------------------------------------------------------- /src/test/bash/patch/services/gps-arch-bad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/patch/services/gps-arch-bad.sh -------------------------------------------------------------------------------- /src/test/bash/patch/services/gps-sharable-bad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/patch/services/gps-sharable-bad.sh -------------------------------------------------------------------------------- /src/test/bash/patch/services/gps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/patch/services/gps.sh -------------------------------------------------------------------------------- /src/test/bash/patch/services/location.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/patch/services/location.sh -------------------------------------------------------------------------------- /src/test/bash/post/admin/dropdb/root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/admin/dropdb/root.sh -------------------------------------------------------------------------------- /src/test/bash/post/admin/hashpw/root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/admin/hashpw/root.sh -------------------------------------------------------------------------------- /src/test/bash/post/admin/hashpw/user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/admin/hashpw/user.sh -------------------------------------------------------------------------------- /src/test/bash/post/admin/initdb/root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/admin/initdb/root.sh -------------------------------------------------------------------------------- /src/test/bash/post/admin/reload/root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/admin/reload/root.sh -------------------------------------------------------------------------------- /src/test/bash/post/admin/reload/user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/admin/reload/user.sh -------------------------------------------------------------------------------- /src/test/bash/post/agbots/dataheartbeat/123-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/agbots/dataheartbeat/123-list.sh -------------------------------------------------------------------------------- /src/test/bash/post/agbots/dataheartbeat/123.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/agbots/dataheartbeat/123.sh -------------------------------------------------------------------------------- /src/test/bash/post/agbots/heartbeat/1-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/agbots/heartbeat/1-user.sh -------------------------------------------------------------------------------- /src/test/bash/post/agbots/heartbeat/1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/agbots/heartbeat/1.sh -------------------------------------------------------------------------------- /src/test/bash/post/agbots/isrecentdata/123-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/agbots/isrecentdata/123-list.sh -------------------------------------------------------------------------------- /src/test/bash/post/agbots/msgs/a1-msg1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/agbots/msgs/a1-msg1.sh -------------------------------------------------------------------------------- /src/test/bash/post/agreements/confirm/123-a2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/agreements/confirm/123-a2.sh -------------------------------------------------------------------------------- /src/test/bash/post/agreements/confirm/123-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/agreements/confirm/123-user.sh -------------------------------------------------------------------------------- /src/test/bash/post/agreements/confirm/123.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/agreements/confirm/123.sh -------------------------------------------------------------------------------- /src/test/bash/post/nodes/heartbeat/1-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/nodes/heartbeat/1-user.sh -------------------------------------------------------------------------------- /src/test/bash/post/nodes/heartbeat/1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/nodes/heartbeat/1.sh -------------------------------------------------------------------------------- /src/test/bash/post/nodes/msgs/1-msg1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/nodes/msgs/1-msg1.sh -------------------------------------------------------------------------------- /src/test/bash/post/nodes/msgs/1-msg2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/nodes/msgs/1-msg2.sh -------------------------------------------------------------------------------- /src/test/bash/post/nodes/msgs/2-msg1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/nodes/msgs/2-msg1.sh -------------------------------------------------------------------------------- /src/test/bash/post/orgs/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/orgs/create.sh -------------------------------------------------------------------------------- /src/test/bash/post/patterns/nodehealth/p1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/patterns/nodehealth/p1.sh -------------------------------------------------------------------------------- /src/test/bash/post/patterns/p1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/patterns/p1.sh -------------------------------------------------------------------------------- /src/test/bash/post/patterns/search/location.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/patterns/search/location.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/multiple-wildcard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/multiple-wildcard.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/netspeed-dave.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/netspeed-dave.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/netspeed-wildcard-agbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/netspeed-wildcard-agbot.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/netspeed-wildcard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/netspeed-wildcard.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/sdr-arch-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/sdr-arch-x86.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/sdr-badpw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/sdr-badpw.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/sdr-datav-false.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/sdr-datav-false.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/sdr-good-agbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/sdr-good-agbot.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/sdr-good.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/sdr-good.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/sdr-memory-400.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/sdr-memory-400.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/sdr-noversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/sdr-noversion.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/sdr-version-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/sdr-version-2.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/sdr-wildcard-prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/sdr-wildcard-prod.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/sdr-wildcard-stale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/sdr-wildcard-stale.sh -------------------------------------------------------------------------------- /src/test/bash/post/search/devices/sdr-wildcard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/search/devices/sdr-wildcard.sh -------------------------------------------------------------------------------- /src/test/bash/post/services/dockauths/gps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/services/dockauths/gps.sh -------------------------------------------------------------------------------- /src/test/bash/post/services/gps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/services/gps.sh -------------------------------------------------------------------------------- /src/test/bash/post/services/location-bad-reqsvc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/services/location-bad-reqsvc.sh -------------------------------------------------------------------------------- /src/test/bash/post/services/location-diff-arch-bad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/services/location-diff-arch-bad.sh -------------------------------------------------------------------------------- /src/test/bash/post/services/location.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/services/location.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/2-create-admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/2-create-admin.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/2-create-badinput.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/2-create-badinput.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/2-create-noemail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/2-create-noemail.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/2-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/2-create.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/3-create-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/3-create-2.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/changepw/user-backtoorig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/changepw/user-backtoorig.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/changepw/user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/changepw/user.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/confirm/baduser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/confirm/baduser.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/confirm/user-encoded.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/confirm/user-encoded.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/confirm/user-newpw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/confirm/user-newpw.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/confirm/user-urlparms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/confirm/user-urlparms.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/confirm/user-urlparms2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/confirm/user-urlparms2.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/confirm/user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/confirm/user.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/new-create-admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/new-create-admin.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/reset/anonymous.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/reset/anonymous.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/reset/user-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/reset/user-root.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/reset/user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/reset/user.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/user-create-anonymous.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/user-create-anonymous.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/user-create-frontend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/user-create-frontend.sh -------------------------------------------------------------------------------- /src/test/bash/post/users/user-create-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/post/users/user-create-root.sh -------------------------------------------------------------------------------- /src/test/bash/primedb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/primedb.sh -------------------------------------------------------------------------------- /src/test/bash/put/admin/config/maxAgbots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/admin/config/maxAgbots.sh -------------------------------------------------------------------------------- /src/test/bash/put/admin/config/maxAgreements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/admin/config/maxAgreements.sh -------------------------------------------------------------------------------- /src/test/bash/put/admin/config/maxDevices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/admin/config/maxDevices.sh -------------------------------------------------------------------------------- /src/test/bash/put/admin/config/maxMessagesInMailbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/admin/config/maxMessagesInMailbox.sh -------------------------------------------------------------------------------- /src/test/bash/put/admin/loglevel/root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/admin/loglevel/root.sh -------------------------------------------------------------------------------- /src/test/bash/put/admin/table/users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/admin/table/users.sh -------------------------------------------------------------------------------- /src/test/bash/put/agbots/a1-compatible.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/agbots/a1-compatible.sh -------------------------------------------------------------------------------- /src/test/bash/put/agbots/a1-frontend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/agbots/a1-frontend.sh -------------------------------------------------------------------------------- /src/test/bash/put/agbots/a1-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/agbots/a1-root.sh -------------------------------------------------------------------------------- /src/test/bash/put/agbots/a1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/agbots/a1.sh -------------------------------------------------------------------------------- /src/test/bash/put/agbots/a2-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/agbots/a2-root.sh -------------------------------------------------------------------------------- /src/test/bash/put/agbots/a2-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/agbots/a2-user.sh -------------------------------------------------------------------------------- /src/test/bash/put/agbots/a3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/agbots/a3.sh -------------------------------------------------------------------------------- /src/test/bash/put/agreements/123-agbot-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/agreements/123-agbot-user.sh -------------------------------------------------------------------------------- /src/test/bash/put/agreements/123-agbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/agreements/123-agbot.sh -------------------------------------------------------------------------------- /src/test/bash/put/agreements/123-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/agreements/123-node.sh -------------------------------------------------------------------------------- /src/test/bash/put/agreements/456-agbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/agreements/456-agbot.sh -------------------------------------------------------------------------------- /src/test/bash/put/agreements/456-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/agreements/456-node.sh -------------------------------------------------------------------------------- /src/test/bash/put/agreements/789-agbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/agreements/789-agbot.sh -------------------------------------------------------------------------------- /src/test/bash/put/agreements/789-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/agreements/789-node.sh -------------------------------------------------------------------------------- /src/test/bash/put/nodes/1-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/nodes/1-node.sh -------------------------------------------------------------------------------- /src/test/bash/put/nodes/1-user-changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/nodes/1-user-changes.sh -------------------------------------------------------------------------------- /src/test/bash/put/nodes/1-user-compatible.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/nodes/1-user-compatible.sh -------------------------------------------------------------------------------- /src/test/bash/put/nodes/1-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/nodes/1-user.sh -------------------------------------------------------------------------------- /src/test/bash/put/nodes/2-memory-400-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/nodes/2-memory-400-node.sh -------------------------------------------------------------------------------- /src/test/bash/put/nodes/2-memory-400.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/nodes/2-memory-400.sh -------------------------------------------------------------------------------- /src/test/bash/put/nodes/3-version-2-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/nodes/3-version-2-root.sh -------------------------------------------------------------------------------- /src/test/bash/put/nodes/3-version-2-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/nodes/3-version-2-user.sh -------------------------------------------------------------------------------- /src/test/bash/put/nodes/4-badbool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/nodes/4-badbool.sh -------------------------------------------------------------------------------- /src/test/bash/put/nodes/4-badint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/nodes/4-badint.sh -------------------------------------------------------------------------------- /src/test/bash/put/nodes/4-badop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/nodes/4-badop.sh -------------------------------------------------------------------------------- /src/test/bash/put/nodes/999-badinput.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/nodes/999-badinput.sh -------------------------------------------------------------------------------- /src/test/bash/put/nodes/status/1-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/nodes/status/1-node.sh -------------------------------------------------------------------------------- /src/test/bash/put/nodes/weird-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/nodes/weird-user.sh -------------------------------------------------------------------------------- /src/test/bash/put/patterns/p1-no-nodehealth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/patterns/p1-no-nodehealth.sh -------------------------------------------------------------------------------- /src/test/bash/put/patterns/p1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/patterns/p1.sh -------------------------------------------------------------------------------- /src/test/bash/put/services/dockauths/gps-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/services/dockauths/gps-1.sh -------------------------------------------------------------------------------- /src/test/bash/put/services/gps-arch-bad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/services/gps-arch-bad.sh -------------------------------------------------------------------------------- /src/test/bash/put/services/gps-sharable-bad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/services/gps-sharable-bad.sh -------------------------------------------------------------------------------- /src/test/bash/put/services/gps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/services/gps.sh -------------------------------------------------------------------------------- /src/test/bash/put/services/keys/key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/services/keys/key.sh -------------------------------------------------------------------------------- /src/test/bash/put/users/2-create-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/users/2-create-root.sh -------------------------------------------------------------------------------- /src/test/bash/put/users/2-update-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/users/2-update-root.sh -------------------------------------------------------------------------------- /src/test/bash/put/users/root-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/users/root-root.sh -------------------------------------------------------------------------------- /src/test/bash/put/users/root-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/users/root-user.sh -------------------------------------------------------------------------------- /src/test/bash/put/users/user-create-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/users/user-create-root.sh -------------------------------------------------------------------------------- /src/test/bash/put/users/user-update-email.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/users/user-update-email.sh -------------------------------------------------------------------------------- /src/test/bash/put/users/user-update-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/users/user-update-root.sh -------------------------------------------------------------------------------- /src/test/bash/put/users/user-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/put/users/user-update.sh -------------------------------------------------------------------------------- /src/test/bash/root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/root.sh -------------------------------------------------------------------------------- /src/test/bash/scale/agbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/scale/agbot.sh -------------------------------------------------------------------------------- /src/test/bash/scale/deleteperforg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/scale/deleteperforg.sh -------------------------------------------------------------------------------- /src/test/bash/scale/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/scale/functions.sh -------------------------------------------------------------------------------- /src/test/bash/scale/node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/scale/node.sh -------------------------------------------------------------------------------- /src/test/bash/scale/scaledriver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/scale/scaledriver.sh -------------------------------------------------------------------------------- /src/test/bash/scale/summarize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/scale/summarize.sh -------------------------------------------------------------------------------- /src/test/bash/scale/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/scale/test.sh -------------------------------------------------------------------------------- /src/test/bash/scale/wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/scale/wrapper.sh -------------------------------------------------------------------------------- /src/test/bash/user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/user.sh -------------------------------------------------------------------------------- /src/test/bash/user2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/bash/user2.sh -------------------------------------------------------------------------------- /src/test/go/.gitignore: -------------------------------------------------------------------------------- 1 | darwin/ 2 | linux/ 3 | -------------------------------------------------------------------------------- /src/test/go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/go/Makefile -------------------------------------------------------------------------------- /src/test/go/agbot/agbot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/go/agbot/agbot.go -------------------------------------------------------------------------------- /src/test/go/node/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/go/node/node.go -------------------------------------------------------------------------------- /src/test/go/perfutils/perfutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/go/perfutils/perfutils.go -------------------------------------------------------------------------------- /src/test/java/org/openhorizon/exchangeapi/annotation/AdminStatusTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/java/org/openhorizon/exchangeapi/annotation/AdminStatusTest.java -------------------------------------------------------------------------------- /src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/AdminSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/AdminSuite.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/AgbotsSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/AgbotsSuite.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/BusinessSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/BusinessSuite.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/CatalogSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/CatalogSuite.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/NodesSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/NodesSuite.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/PatternsSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/PatternsSuite.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/PerfSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/PerfSuite.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/ServicesSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/ServicesSuite.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/SlickSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/SlickSuite.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/UsersSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/UsersSuite.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/administration/TestAdminConfigRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/administration/TestAdminConfigRequest.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/administration/TestAdminDropdbTokenResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/administration/TestAdminDropdbTokenResponse.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/administration/TestGetAdminStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/administration/TestGetAdminStatus.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/agent/TestAgentConfigMgmt.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/agent/TestAgentConfigMgmt.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/agent/TestDeleteAgentConfigMgmt.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/agent/TestDeleteAgentConfigMgmt.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/agent/TestGetAgentConfigMgmt.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/agent/TestGetAgentConfigMgmt.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/agent/TestPutAgentConfigMgmt.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/agent/TestPutAgentConfigMgmt.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/agreement/TestPostAgreementConfirmRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/agreement/TestPostAgreementConfirmRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/agreementbot/message/TestAgbotGetMsgRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/agreementbot/message/TestAgbotGetMsgRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/deploymentpattern/TestGetPatternsResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/deploymentpattern/TestGetPatternsResponse.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/TestBusPolPostSearchRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/deploymentpolicy/TestBusPolPostSearchRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/managementpolicy/ManagementPoliciesSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/managementpolicy/ManagementPoliciesSuite.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/managementpolicy/TestMgmtPolsGet.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/managementpolicy/TestMgmtPolsGet.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/node/TestGetNode.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/node/TestGetNode.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/node/TestNodeHealthAgreementElement.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/node/TestNodeHealthAgreementElement.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/node/TestNodePatch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/node/TestNodePatch.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/node/TestNodesGetDetails.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/node/TestNodesGetDetails.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/node/TestPatternNodeResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/node/TestPatternNodeResponse.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/node/TestPatternSearchHashElement.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/node/TestPatternSearchHashElement.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/node/managementpolicy/TestNodeGetMgmtPolStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/node/managementpolicy/TestNodeGetMgmtPolStatus.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/node/managementpolicy/TestNodePutMgmtPolStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/node/managementpolicy/TestNodePutMgmtPolStatus.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/node/message/TestNodeGetMsgRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/node/message/TestNodeGetMsgRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/nodegroup/TestDeleteNodeGroup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/nodegroup/TestDeleteNodeGroup.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/nodegroup/TestGetAllNodeGroups.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/nodegroup/TestGetAllNodeGroups.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/nodegroup/TestGetNodeGroup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/nodegroup/TestGetNodeGroup.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/nodegroup/TestPostNodeGroup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/nodegroup/TestPostNodeGroup.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/nodegroup/TestPutNodeGroup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/nodegroup/TestPutNodeGroup.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/nodegroup/node/TestDeleteNodeFromNodeGroup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/nodegroup/node/TestDeleteNodeFromNodeGroup.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/nodegroup/node/TestPostNodeToNodeGroup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/nodegroup/node/TestPostNodeToNodeGroup.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/organization/TestDeleteOrgRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/organization/TestDeleteOrgRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/organization/TestGetMaxChangeIDRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/organization/TestGetMaxChangeIDRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/organization/TestGetOrgRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/organization/TestGetOrgRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/organization/TestGetOrgsRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/organization/TestGetOrgsRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/organization/TestPatchOrgRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/organization/TestPatchOrgRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/organization/TestPostMyOrgsRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/organization/TestPostMyOrgsRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/organization/TestPostOrgChangesRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/organization/TestPostOrgChangesRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/organization/TestPostOrgRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/organization/TestPostOrgRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/organization/TestPutOrgRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/organization/TestPutOrgRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/search/TestGetAllNodeErrorsRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/search/TestGetAllNodeErrorsRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/search/TestPostNodeErrorsRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/search/TestPostNodeErrorsRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/search/TestPostNodeHealthRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/search/TestPostNodeHealthRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/search/TestPostNodesServiceRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/search/TestPostNodesServiceRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/service/TestGetServiceAttributeResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/service/TestGetServiceAttributeResponse.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/service/TestGetServicesResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/service/TestGetServicesResponse.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/user/TestDeleteUserRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/user/TestDeleteUserRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/user/TestGetUserRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/user/TestGetUserRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/user/TestGetUsersResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/user/TestGetUsersResponse.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/user/TestGetUsersRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/user/TestGetUsersRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/user/TestPatchUserRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/user/TestPatchUserRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/user/TestPostChangeUserPasswordRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/user/TestPostChangeUserPasswordRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/user/TestPostConfirmUserRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/user/TestPostConfirmUserRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/user/TestPostUserRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/user/TestPostUserRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/user/TestPutUserRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/user/TestPutUserRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/user/apikey/TestDeleteApiKeyRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/user/apikey/TestDeleteApiKeyRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/user/apikey/TestGetApiKeyRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/user/apikey/TestGetApiKeyRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/route/user/apikey/TestPostApiKeyRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/route/user/apikey/TestPostApiKeyRoute.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/tag/AdminStatusTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/tag/AdminStatusTest.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/utility/TestVersion.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/utility/TestVersion.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/utility/TestVersionRange.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/utility/TestVersionRange.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/utility/apiutils/TestApiUtilsTime.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/utility/apiutils/TestApiUtilsTime.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/utility/exchconfiguration/TestExchConfiguration.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/utility/exchconfiguration/TestExchConfiguration.scala -------------------------------------------------------------------------------- /src/test/scala/org/openhorizon/exchangeapi/utility/tokenvalidation/TestNodeAgbotTokenValidation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/exchange-api/HEAD/src/test/scala/org/openhorizon/exchangeapi/utility/tokenvalidation/TestNodeAgbotTokenValidation.scala --------------------------------------------------------------------------------