├── .gitignore ├── .mvn └── wrapper │ └── maven-wrapper.properties ├── LICENSE ├── README.md ├── build-logic ├── .gradle │ ├── 8.10 │ │ └── executionHistory │ │ │ ├── executionHistory.bin │ │ │ └── executionHistory.lock │ ├── buildOutputCleanup │ │ ├── buildOutputCleanup.lock │ │ ├── cache.properties │ │ └── outputFiles.bin │ └── file-system.probe ├── build.gradle ├── build │ ├── groovy-dsl-plugins │ │ ├── output │ │ │ ├── adapter-src │ │ │ │ └── BuildlogicJavaConventionsPlugin.java │ │ │ └── plugin-requests │ │ │ │ └── buildlogic.java-conventions │ │ │ │ └── metadata.bin │ │ └── work │ │ │ └── metadata │ │ │ └── buildlogic.java-conventions │ │ │ └── metadata.bin │ ├── pluginDescriptors │ │ └── buildlogic.java-conventions.properties │ ├── pluginUnderTestMetadata │ │ └── plugin-under-test-metadata.properties │ ├── reports │ │ └── plugin-development │ │ │ └── validation-report.json │ ├── resources │ │ └── main │ │ │ └── META-INF │ │ │ └── gradle-plugins │ │ │ └── buildlogic.java-conventions.properties │ └── tmp │ │ ├── compileJava │ │ └── previous-compilation-data.bin │ │ └── jar │ │ └── MANIFEST.MF └── src │ └── main │ └── groovy │ └── buildlogic.java-conventions.gradle ├── intellij-style.xml ├── mvnw ├── mvnw.cmd ├── onvif-java ├── pom.xml └── src │ ├── main │ ├── java │ │ └── de │ │ │ └── onvif │ │ │ ├── beans │ │ │ └── DeviceInfo.java │ │ │ ├── discovery │ │ │ ├── DeviceDiscovery.java │ │ │ └── OnvifDiscovery.java │ │ │ ├── soap │ │ │ ├── NaiveSSLHelper.java │ │ │ ├── OnvifDevice.java │ │ │ ├── ProcessedPullMessagesResponse.java │ │ │ ├── PullMessagesCallbacks.java │ │ │ ├── PullMessagesResponseData.java │ │ │ ├── PullPointSubscriptionHandler.java │ │ │ ├── SSLUtilities.java │ │ │ ├── SimpleItem.java │ │ │ └── SimpleSecurityHandler.java │ │ │ └── utils │ │ │ └── OnvifUtils.java │ └── resources │ │ └── log4j.properties │ └── test │ ├── java │ └── org │ │ └── onvif │ │ └── client │ │ ├── AuthTest.java │ │ ├── Base64Test.java │ │ ├── DiscoverAndTest.java │ │ ├── DiscoveryTest.java │ │ ├── GetTestDevice.java │ │ ├── OnvifCredentials.java │ │ ├── PullPointTest.java │ │ ├── ReadCommandsFromStdInput.java │ │ ├── SimpleTest.java │ │ ├── TestDevice.java │ │ └── WsNotificationTest.java │ └── resources │ └── onvif.properties ├── onvif-ws-client ├── pom.xml └── src │ └── main │ ├── java │ ├── .gitignore │ └── org │ │ ├── oasis_open │ │ └── docs │ │ │ ├── wsn │ │ │ ├── b_2 │ │ │ │ ├── CreatePullPoint.java │ │ │ │ ├── CreatePullPointResponse.java │ │ │ │ ├── DestroyPullPoint.java │ │ │ │ ├── DestroyPullPointResponse.java │ │ │ │ ├── FilterType.java │ │ │ │ ├── GetCurrentMessage.java │ │ │ │ ├── GetCurrentMessageResponse.java │ │ │ │ ├── GetMessages.java │ │ │ │ ├── GetMessagesResponse.java │ │ │ │ ├── InvalidFilterFaultType.java │ │ │ │ ├── InvalidMessageContentExpressionFaultType.java │ │ │ │ ├── InvalidProducerPropertiesExpressionFaultType.java │ │ │ │ ├── InvalidTopicExpressionFaultType.java │ │ │ │ ├── MultipleTopicsSpecifiedFaultType.java │ │ │ │ ├── NoCurrentMessageOnTopicFaultType.java │ │ │ │ ├── NotificationMessageHolderType.java │ │ │ │ ├── NotificationProducerRP.java │ │ │ │ ├── Notify.java │ │ │ │ ├── NotifyMessageNotSupportedFaultType.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── PauseFailedFaultType.java │ │ │ │ ├── PauseSubscription.java │ │ │ │ ├── PauseSubscriptionResponse.java │ │ │ │ ├── QueryExpressionType.java │ │ │ │ ├── Renew.java │ │ │ │ ├── RenewResponse.java │ │ │ │ ├── ResumeFailedFaultType.java │ │ │ │ ├── ResumeSubscription.java │ │ │ │ ├── ResumeSubscriptionResponse.java │ │ │ │ ├── Subscribe.java │ │ │ │ ├── SubscribeCreationFailedFaultType.java │ │ │ │ ├── SubscribeResponse.java │ │ │ │ ├── SubscriptionManagerRP.java │ │ │ │ ├── SubscriptionPolicyType.java │ │ │ │ ├── TopicExpressionDialectUnknownFaultType.java │ │ │ │ ├── TopicExpressionType.java │ │ │ │ ├── TopicNotSupportedFaultType.java │ │ │ │ ├── UnableToCreatePullPointFaultType.java │ │ │ │ ├── UnableToDestroyPullPointFaultType.java │ │ │ │ ├── UnableToDestroySubscriptionFaultType.java │ │ │ │ ├── UnableToGetMessagesFaultType.java │ │ │ │ ├── UnacceptableInitialTerminationTimeFaultType.java │ │ │ │ ├── UnacceptableTerminationTimeFaultType.java │ │ │ │ ├── UnrecognizedPolicyRequestFaultType.java │ │ │ │ ├── Unsubscribe.java │ │ │ │ ├── UnsubscribeResponse.java │ │ │ │ ├── UnsupportedPolicyRequestFaultType.java │ │ │ │ ├── UseRaw.java │ │ │ │ └── package-info.java │ │ │ ├── bw_2 │ │ │ │ ├── InvalidFilterFault.java │ │ │ │ ├── InvalidMessageContentExpressionFault.java │ │ │ │ ├── InvalidProducerPropertiesExpressionFault.java │ │ │ │ ├── InvalidTopicExpressionFault.java │ │ │ │ ├── NotifyMessageNotSupportedFault.java │ │ │ │ ├── SubscribeCreationFailedFault.java │ │ │ │ ├── SubscriptionManager.java │ │ │ │ ├── TopicExpressionDialectUnknownFault.java │ │ │ │ ├── TopicNotSupportedFault.java │ │ │ │ ├── UnableToDestroySubscriptionFault.java │ │ │ │ ├── UnacceptableInitialTerminationTimeFault.java │ │ │ │ ├── UnacceptableTerminationTimeFault.java │ │ │ │ ├── UnrecognizedPolicyRequestFault.java │ │ │ │ └── UnsupportedPolicyRequestFault.java │ │ │ └── t_1 │ │ │ │ ├── Documentation.java │ │ │ │ ├── ExtensibleDocumented.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── QueryExpressionType.java │ │ │ │ ├── TopicNamespaceType.java │ │ │ │ ├── TopicSetType.java │ │ │ │ ├── TopicType.java │ │ │ │ └── package-info.java │ │ │ └── wsrf │ │ │ ├── bf_2 │ │ │ ├── BaseFaultType.java │ │ │ ├── ObjectFactory.java │ │ │ └── package-info.java │ │ │ ├── r_2 │ │ │ ├── ObjectFactory.java │ │ │ ├── ResourceUnavailableFaultType.java │ │ │ ├── ResourceUnknownFaultType.java │ │ │ └── package-info.java │ │ │ └── rw_2 │ │ │ └── ResourceUnknownFault.java │ │ ├── onvif │ │ ├── ver10 │ │ │ ├── accesscontrol │ │ │ │ └── wsdl │ │ │ │ │ ├── AccessPointCapabilities.java │ │ │ │ │ ├── AccessPointInfo.java │ │ │ │ │ ├── AccessPointInfoBase.java │ │ │ │ │ ├── AccessPointState.java │ │ │ │ │ ├── AreaInfo.java │ │ │ │ │ ├── AreaInfoBase.java │ │ │ │ │ ├── Decision.java │ │ │ │ │ ├── DenyReason.java │ │ │ │ │ ├── DisableAccessPoint.java │ │ │ │ │ ├── DisableAccessPointResponse.java │ │ │ │ │ ├── EnableAccessPoint.java │ │ │ │ │ ├── EnableAccessPointResponse.java │ │ │ │ │ ├── ExternalAuthorization.java │ │ │ │ │ ├── ExternalAuthorizationResponse.java │ │ │ │ │ ├── GetAccessPointInfo.java │ │ │ │ │ ├── GetAccessPointInfoList.java │ │ │ │ │ ├── GetAccessPointInfoListResponse.java │ │ │ │ │ ├── GetAccessPointInfoResponse.java │ │ │ │ │ ├── GetAccessPointState.java │ │ │ │ │ ├── GetAccessPointStateResponse.java │ │ │ │ │ ├── GetAreaInfo.java │ │ │ │ │ ├── GetAreaInfoList.java │ │ │ │ │ ├── GetAreaInfoListResponse.java │ │ │ │ │ ├── GetAreaInfoResponse.java │ │ │ │ │ ├── GetServiceCapabilities.java │ │ │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── PACSPort.java │ │ │ │ │ ├── PACSService.java │ │ │ │ │ ├── ServiceCapabilities.java │ │ │ │ │ └── package-info.java │ │ │ ├── accessrules │ │ │ │ └── wsdl │ │ │ │ │ ├── AccessPolicy.java │ │ │ │ │ ├── AccessPolicyExtension.java │ │ │ │ │ ├── AccessProfile.java │ │ │ │ │ ├── AccessProfileExtension.java │ │ │ │ │ ├── AccessProfileInfo.java │ │ │ │ │ ├── AccessRulesPort.java │ │ │ │ │ ├── AccessRulesService.java │ │ │ │ │ ├── CreateAccessProfile.java │ │ │ │ │ ├── CreateAccessProfileResponse.java │ │ │ │ │ ├── DeleteAccessProfile.java │ │ │ │ │ ├── DeleteAccessProfileResponse.java │ │ │ │ │ ├── GetAccessProfileInfo.java │ │ │ │ │ ├── GetAccessProfileInfoList.java │ │ │ │ │ ├── GetAccessProfileInfoListResponse.java │ │ │ │ │ ├── GetAccessProfileInfoResponse.java │ │ │ │ │ ├── GetAccessProfileList.java │ │ │ │ │ ├── GetAccessProfileListResponse.java │ │ │ │ │ ├── GetAccessProfiles.java │ │ │ │ │ ├── GetAccessProfilesResponse.java │ │ │ │ │ ├── GetServiceCapabilities.java │ │ │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ │ │ ├── ModifyAccessProfile.java │ │ │ │ │ ├── ModifyAccessProfileResponse.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── ServiceCapabilities.java │ │ │ │ │ └── package-info.java │ │ │ ├── advancedsecurity │ │ │ │ └── wsdl │ │ │ │ │ ├── AddCertPathValidationPolicyAssignment.java │ │ │ │ │ ├── AddCertPathValidationPolicyAssignmentResponse.java │ │ │ │ │ ├── AddServerCertificateAssignment.java │ │ │ │ │ ├── AddServerCertificateAssignmentResponse.java │ │ │ │ │ ├── AdvancedSecurityService.java │ │ │ │ │ ├── AdvancedSecurityService_Service.java │ │ │ │ │ ├── AlgorithmIdentifier.java │ │ │ │ │ ├── BasicRequestAttribute.java │ │ │ │ │ ├── CRL.java │ │ │ │ │ ├── CSRAttribute.java │ │ │ │ │ ├── Capabilities.java │ │ │ │ │ ├── CertPathValidationParameters.java │ │ │ │ │ ├── CertPathValidationPolicy.java │ │ │ │ │ ├── CertificateIDs.java │ │ │ │ │ ├── CertificationPath.java │ │ │ │ │ ├── CreateCertPathValidationPolicy.java │ │ │ │ │ ├── CreateCertPathValidationPolicyResponse.java │ │ │ │ │ ├── CreateCertificationPath.java │ │ │ │ │ ├── CreateCertificationPathResponse.java │ │ │ │ │ ├── CreatePKCS10CSR.java │ │ │ │ │ ├── CreatePKCS10CSRResponse.java │ │ │ │ │ ├── CreateRSAKeyPair.java │ │ │ │ │ ├── CreateRSAKeyPairResponse.java │ │ │ │ │ ├── CreateSelfSignedCertificate.java │ │ │ │ │ ├── CreateSelfSignedCertificateResponse.java │ │ │ │ │ ├── DNAttributeTypeAndValue.java │ │ │ │ │ ├── DeleteCRL.java │ │ │ │ │ ├── DeleteCRLResponse.java │ │ │ │ │ ├── DeleteCertPathValidationPolicy.java │ │ │ │ │ ├── DeleteCertPathValidationPolicyResponse.java │ │ │ │ │ ├── DeleteCertificate.java │ │ │ │ │ ├── DeleteCertificateResponse.java │ │ │ │ │ ├── DeleteCertificationPath.java │ │ │ │ │ ├── DeleteCertificationPathResponse.java │ │ │ │ │ ├── DeleteKey.java │ │ │ │ │ ├── DeleteKeyResponse.java │ │ │ │ │ ├── DeletePassphrase.java │ │ │ │ │ ├── DeletePassphraseResponse.java │ │ │ │ │ ├── DistinguishedName.java │ │ │ │ │ ├── GetAllCRLs.java │ │ │ │ │ ├── GetAllCRLsResponse.java │ │ │ │ │ ├── GetAllCertPathValidationPolicies.java │ │ │ │ │ ├── GetAllCertPathValidationPoliciesResponse.java │ │ │ │ │ ├── GetAllCertificates.java │ │ │ │ │ ├── GetAllCertificatesResponse.java │ │ │ │ │ ├── GetAllCertificationPaths.java │ │ │ │ │ ├── GetAllCertificationPathsResponse.java │ │ │ │ │ ├── GetAllKeys.java │ │ │ │ │ ├── GetAllKeysResponse.java │ │ │ │ │ ├── GetAllPassphrases.java │ │ │ │ │ ├── GetAllPassphrasesResponse.java │ │ │ │ │ ├── GetAssignedCertPathValidationPolicies.java │ │ │ │ │ ├── GetAssignedCertPathValidationPoliciesResponse.java │ │ │ │ │ ├── GetAssignedServerCertificates.java │ │ │ │ │ ├── GetAssignedServerCertificatesResponse.java │ │ │ │ │ ├── GetCRL.java │ │ │ │ │ ├── GetCRLResponse.java │ │ │ │ │ ├── GetCertPathValidationPolicy.java │ │ │ │ │ ├── GetCertPathValidationPolicyResponse.java │ │ │ │ │ ├── GetCertificate.java │ │ │ │ │ ├── GetCertificateResponse.java │ │ │ │ │ ├── GetCertificationPath.java │ │ │ │ │ ├── GetCertificationPathResponse.java │ │ │ │ │ ├── GetClientAuthenticationRequired.java │ │ │ │ │ ├── GetClientAuthenticationRequiredResponse.java │ │ │ │ │ ├── GetKeyStatus.java │ │ │ │ │ ├── GetKeyStatusResponse.java │ │ │ │ │ ├── GetPrivateKeyStatus.java │ │ │ │ │ ├── GetPrivateKeyStatusResponse.java │ │ │ │ │ ├── GetServiceCapabilities.java │ │ │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ │ │ ├── KeyAttribute.java │ │ │ │ │ ├── KeyStatus.java │ │ │ │ │ ├── Keystore.java │ │ │ │ │ ├── KeystoreCapabilities.java │ │ │ │ │ ├── MultiValuedRDN.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── PassphraseAttribute.java │ │ │ │ │ ├── RemoveCertPathValidationPolicyAssignment.java │ │ │ │ │ ├── RemoveCertPathValidationPolicyAssignmentResponse.java │ │ │ │ │ ├── RemoveServerCertificateAssignment.java │ │ │ │ │ ├── RemoveServerCertificateAssignmentResponse.java │ │ │ │ │ ├── ReplaceCertPathValidationPolicyAssignment.java │ │ │ │ │ ├── ReplaceCertPathValidationPolicyAssignmentResponse.java │ │ │ │ │ ├── ReplaceServerCertificateAssignment.java │ │ │ │ │ ├── ReplaceServerCertificateAssignmentResponse.java │ │ │ │ │ ├── SetClientAuthenticationRequired.java │ │ │ │ │ ├── SetClientAuthenticationRequiredResponse.java │ │ │ │ │ ├── TLSServer.java │ │ │ │ │ ├── TLSServerCapabilities.java │ │ │ │ │ ├── TrustAnchor.java │ │ │ │ │ ├── UploadCRL.java │ │ │ │ │ ├── UploadCRLResponse.java │ │ │ │ │ ├── UploadCertificate.java │ │ │ │ │ ├── UploadCertificateResponse.java │ │ │ │ │ ├── UploadCertificateWithPrivateKeyInPKCS12.java │ │ │ │ │ ├── UploadCertificateWithPrivateKeyInPKCS12Response.java │ │ │ │ │ ├── UploadKeyPairInPKCS8.java │ │ │ │ │ ├── UploadKeyPairInPKCS8Response.java │ │ │ │ │ ├── UploadPassphrase.java │ │ │ │ │ ├── UploadPassphraseResponse.java │ │ │ │ │ ├── X509Certificate.java │ │ │ │ │ ├── X509V3Extension.java │ │ │ │ │ └── package-info.java │ │ │ ├── device │ │ │ │ └── wsdl │ │ │ │ │ ├── AddIPAddressFilter.java │ │ │ │ │ ├── AddIPAddressFilterResponse.java │ │ │ │ │ ├── AddScopes.java │ │ │ │ │ ├── AddScopesResponse.java │ │ │ │ │ ├── CreateCertificate.java │ │ │ │ │ ├── CreateCertificateResponse.java │ │ │ │ │ ├── CreateDot1XConfiguration.java │ │ │ │ │ ├── CreateDot1XConfigurationResponse.java │ │ │ │ │ ├── CreateStorageConfiguration.java │ │ │ │ │ ├── CreateStorageConfigurationResponse.java │ │ │ │ │ ├── CreateUsers.java │ │ │ │ │ ├── CreateUsersResponse.java │ │ │ │ │ ├── DeleteCertificates.java │ │ │ │ │ ├── DeleteCertificatesResponse.java │ │ │ │ │ ├── DeleteDot1XConfiguration.java │ │ │ │ │ ├── DeleteDot1XConfigurationResponse.java │ │ │ │ │ ├── DeleteStorageConfiguration.java │ │ │ │ │ ├── DeleteStorageConfigurationResponse.java │ │ │ │ │ ├── DeleteUsers.java │ │ │ │ │ ├── DeleteUsersResponse.java │ │ │ │ │ ├── Device.java │ │ │ │ │ ├── DeviceService.java │ │ │ │ │ ├── DeviceServiceCapabilities.java │ │ │ │ │ ├── GetAccessPolicy.java │ │ │ │ │ ├── GetAccessPolicyResponse.java │ │ │ │ │ ├── GetCACertificates.java │ │ │ │ │ ├── GetCACertificatesResponse.java │ │ │ │ │ ├── GetCapabilities.java │ │ │ │ │ ├── GetCapabilitiesResponse.java │ │ │ │ │ ├── GetCertificateInformation.java │ │ │ │ │ ├── GetCertificateInformationResponse.java │ │ │ │ │ ├── GetCertificates.java │ │ │ │ │ ├── GetCertificatesResponse.java │ │ │ │ │ ├── GetCertificatesStatus.java │ │ │ │ │ ├── GetCertificatesStatusResponse.java │ │ │ │ │ ├── GetClientCertificateMode.java │ │ │ │ │ ├── GetClientCertificateModeResponse.java │ │ │ │ │ ├── GetDNS.java │ │ │ │ │ ├── GetDNSResponse.java │ │ │ │ │ ├── GetDPAddresses.java │ │ │ │ │ ├── GetDPAddressesResponse.java │ │ │ │ │ ├── GetDeviceInformation.java │ │ │ │ │ ├── GetDeviceInformationResponse.java │ │ │ │ │ ├── GetDiscoveryMode.java │ │ │ │ │ ├── GetDiscoveryModeResponse.java │ │ │ │ │ ├── GetDot11Capabilities.java │ │ │ │ │ ├── GetDot11CapabilitiesResponse.java │ │ │ │ │ ├── GetDot11Status.java │ │ │ │ │ ├── GetDot11StatusResponse.java │ │ │ │ │ ├── GetDot1XConfiguration.java │ │ │ │ │ ├── GetDot1XConfigurationResponse.java │ │ │ │ │ ├── GetDot1XConfigurations.java │ │ │ │ │ ├── GetDot1XConfigurationsResponse.java │ │ │ │ │ ├── GetDynamicDNS.java │ │ │ │ │ ├── GetDynamicDNSResponse.java │ │ │ │ │ ├── GetEndpointReference.java │ │ │ │ │ ├── GetEndpointReferenceResponse.java │ │ │ │ │ ├── GetHostname.java │ │ │ │ │ ├── GetHostnameResponse.java │ │ │ │ │ ├── GetIPAddressFilter.java │ │ │ │ │ ├── GetIPAddressFilterResponse.java │ │ │ │ │ ├── GetNTP.java │ │ │ │ │ ├── GetNTPResponse.java │ │ │ │ │ ├── GetNetworkDefaultGateway.java │ │ │ │ │ ├── GetNetworkDefaultGatewayResponse.java │ │ │ │ │ ├── GetNetworkInterfaces.java │ │ │ │ │ ├── GetNetworkInterfacesResponse.java │ │ │ │ │ ├── GetNetworkProtocols.java │ │ │ │ │ ├── GetNetworkProtocolsResponse.java │ │ │ │ │ ├── GetPkcs10Request.java │ │ │ │ │ ├── GetPkcs10RequestResponse.java │ │ │ │ │ ├── GetRelayOutputs.java │ │ │ │ │ ├── GetRelayOutputsResponse.java │ │ │ │ │ ├── GetRemoteDiscoveryMode.java │ │ │ │ │ ├── GetRemoteDiscoveryModeResponse.java │ │ │ │ │ ├── GetRemoteUser.java │ │ │ │ │ ├── GetRemoteUserResponse.java │ │ │ │ │ ├── GetScopes.java │ │ │ │ │ ├── GetScopesResponse.java │ │ │ │ │ ├── GetServiceCapabilities.java │ │ │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ │ │ ├── GetServices.java │ │ │ │ │ ├── GetServicesResponse.java │ │ │ │ │ ├── GetStorageConfiguration.java │ │ │ │ │ ├── GetStorageConfigurationResponse.java │ │ │ │ │ ├── GetStorageConfigurations.java │ │ │ │ │ ├── GetStorageConfigurationsResponse.java │ │ │ │ │ ├── GetSystemBackup.java │ │ │ │ │ ├── GetSystemBackupResponse.java │ │ │ │ │ ├── GetSystemDateAndTime.java │ │ │ │ │ ├── GetSystemDateAndTimeResponse.java │ │ │ │ │ ├── GetSystemLog.java │ │ │ │ │ ├── GetSystemLogResponse.java │ │ │ │ │ ├── GetSystemSupportInformation.java │ │ │ │ │ ├── GetSystemSupportInformationResponse.java │ │ │ │ │ ├── GetSystemUris.java │ │ │ │ │ ├── GetSystemUrisResponse.java │ │ │ │ │ ├── GetUsers.java │ │ │ │ │ ├── GetUsersResponse.java │ │ │ │ │ ├── GetWsdlUrl.java │ │ │ │ │ ├── GetWsdlUrlResponse.java │ │ │ │ │ ├── GetZeroConfiguration.java │ │ │ │ │ ├── GetZeroConfigurationResponse.java │ │ │ │ │ ├── LoadCACertificates.java │ │ │ │ │ ├── LoadCACertificatesResponse.java │ │ │ │ │ ├── LoadCertificateWithPrivateKey.java │ │ │ │ │ ├── LoadCertificateWithPrivateKeyResponse.java │ │ │ │ │ ├── LoadCertificates.java │ │ │ │ │ ├── LoadCertificatesResponse.java │ │ │ │ │ ├── MiscCapabilities.java │ │ │ │ │ ├── NetworkCapabilities.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── RemoveIPAddressFilter.java │ │ │ │ │ ├── RemoveIPAddressFilterResponse.java │ │ │ │ │ ├── RemoveScopes.java │ │ │ │ │ ├── RemoveScopesResponse.java │ │ │ │ │ ├── RestoreSystem.java │ │ │ │ │ ├── RestoreSystemResponse.java │ │ │ │ │ ├── ScanAvailableDot11Networks.java │ │ │ │ │ ├── ScanAvailableDot11NetworksResponse.java │ │ │ │ │ ├── SecurityCapabilities.java │ │ │ │ │ ├── SendAuxiliaryCommand.java │ │ │ │ │ ├── SendAuxiliaryCommandResponse.java │ │ │ │ │ ├── Service.java │ │ │ │ │ ├── SetAccessPolicy.java │ │ │ │ │ ├── SetAccessPolicyResponse.java │ │ │ │ │ ├── SetCertificatesStatus.java │ │ │ │ │ ├── SetCertificatesStatusResponse.java │ │ │ │ │ ├── SetClientCertificateMode.java │ │ │ │ │ ├── SetClientCertificateModeResponse.java │ │ │ │ │ ├── SetDNS.java │ │ │ │ │ ├── SetDNSResponse.java │ │ │ │ │ ├── SetDPAddresses.java │ │ │ │ │ ├── SetDPAddressesResponse.java │ │ │ │ │ ├── SetDiscoveryMode.java │ │ │ │ │ ├── SetDiscoveryModeResponse.java │ │ │ │ │ ├── SetDot1XConfiguration.java │ │ │ │ │ ├── SetDot1XConfigurationResponse.java │ │ │ │ │ ├── SetDynamicDNS.java │ │ │ │ │ ├── SetDynamicDNSResponse.java │ │ │ │ │ ├── SetHostname.java │ │ │ │ │ ├── SetHostnameFromDHCP.java │ │ │ │ │ ├── SetHostnameFromDHCPResponse.java │ │ │ │ │ ├── SetHostnameResponse.java │ │ │ │ │ ├── SetIPAddressFilter.java │ │ │ │ │ ├── SetIPAddressFilterResponse.java │ │ │ │ │ ├── SetNTP.java │ │ │ │ │ ├── SetNTPResponse.java │ │ │ │ │ ├── SetNetworkDefaultGateway.java │ │ │ │ │ ├── SetNetworkDefaultGatewayResponse.java │ │ │ │ │ ├── SetNetworkInterfaces.java │ │ │ │ │ ├── SetNetworkInterfacesResponse.java │ │ │ │ │ ├── SetNetworkProtocols.java │ │ │ │ │ ├── SetNetworkProtocolsResponse.java │ │ │ │ │ ├── SetRelayOutputSettings.java │ │ │ │ │ ├── SetRelayOutputSettingsResponse.java │ │ │ │ │ ├── SetRelayOutputState.java │ │ │ │ │ ├── SetRelayOutputStateResponse.java │ │ │ │ │ ├── SetRemoteDiscoveryMode.java │ │ │ │ │ ├── SetRemoteDiscoveryModeResponse.java │ │ │ │ │ ├── SetRemoteUser.java │ │ │ │ │ ├── SetRemoteUserResponse.java │ │ │ │ │ ├── SetScopes.java │ │ │ │ │ ├── SetScopesResponse.java │ │ │ │ │ ├── SetStorageConfiguration.java │ │ │ │ │ ├── SetStorageConfigurationResponse.java │ │ │ │ │ ├── SetSystemDateAndTime.java │ │ │ │ │ ├── SetSystemDateAndTimeResponse.java │ │ │ │ │ ├── SetSystemFactoryDefault.java │ │ │ │ │ ├── SetSystemFactoryDefaultResponse.java │ │ │ │ │ ├── SetUser.java │ │ │ │ │ ├── SetUserResponse.java │ │ │ │ │ ├── SetZeroConfiguration.java │ │ │ │ │ ├── SetZeroConfigurationResponse.java │ │ │ │ │ ├── StartFirmwareUpgrade.java │ │ │ │ │ ├── StartFirmwareUpgradeResponse.java │ │ │ │ │ ├── StartSystemRestore.java │ │ │ │ │ ├── StartSystemRestoreResponse.java │ │ │ │ │ ├── StorageConfiguration.java │ │ │ │ │ ├── StorageConfigurationData.java │ │ │ │ │ ├── StorageType.java │ │ │ │ │ ├── SystemCapabilities.java │ │ │ │ │ ├── SystemReboot.java │ │ │ │ │ ├── SystemRebootResponse.java │ │ │ │ │ ├── UpgradeSystemFirmware.java │ │ │ │ │ ├── UpgradeSystemFirmwareResponse.java │ │ │ │ │ ├── UserCredential.java │ │ │ │ │ └── package-info.java │ │ │ ├── deviceio │ │ │ │ └── wsdl │ │ │ │ │ ├── Capabilities.java │ │ │ │ │ ├── DeviceIOPService.java │ │ │ │ │ ├── DeviceIOPort.java │ │ │ │ │ ├── DigitalInputConfigurationInputOptions.java │ │ │ │ │ ├── Get.java │ │ │ │ │ ├── GetAudioOutputConfiguration.java │ │ │ │ │ ├── GetAudioOutputConfigurationOptions.java │ │ │ │ │ ├── GetAudioOutputConfigurationOptionsResponse.java │ │ │ │ │ ├── GetAudioOutputConfigurationResponse.java │ │ │ │ │ ├── GetAudioSourceConfiguration.java │ │ │ │ │ ├── GetAudioSourceConfigurationOptions.java │ │ │ │ │ ├── GetAudioSourceConfigurationOptionsResponse.java │ │ │ │ │ ├── GetAudioSourceConfigurationResponse.java │ │ │ │ │ ├── GetDigitalInputConfigurationOptions.java │ │ │ │ │ ├── GetDigitalInputConfigurationOptionsResponse.java │ │ │ │ │ ├── GetDigitalInputs.java │ │ │ │ │ ├── GetDigitalInputsResponse.java │ │ │ │ │ ├── GetRelayOutputOptions.java │ │ │ │ │ ├── GetRelayOutputOptionsResponse.java │ │ │ │ │ ├── GetResponse.java │ │ │ │ │ ├── GetSerialPortConfiguration.java │ │ │ │ │ ├── GetSerialPortConfigurationOptions.java │ │ │ │ │ ├── GetSerialPortConfigurationOptionsResponse.java │ │ │ │ │ ├── GetSerialPortConfigurationResponse.java │ │ │ │ │ ├── GetSerialPorts.java │ │ │ │ │ ├── GetSerialPortsResponse.java │ │ │ │ │ ├── GetServiceCapabilities.java │ │ │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ │ │ ├── GetVideoOutputConfiguration.java │ │ │ │ │ ├── GetVideoOutputConfigurationOptions.java │ │ │ │ │ ├── GetVideoOutputConfigurationOptionsResponse.java │ │ │ │ │ ├── GetVideoOutputConfigurationResponse.java │ │ │ │ │ ├── GetVideoOutputs.java │ │ │ │ │ ├── GetVideoOutputsResponse.java │ │ │ │ │ ├── GetVideoSourceConfiguration.java │ │ │ │ │ ├── GetVideoSourceConfigurationOptions.java │ │ │ │ │ ├── GetVideoSourceConfigurationOptionsResponse.java │ │ │ │ │ ├── GetVideoSourceConfigurationResponse.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── ParityBit.java │ │ │ │ │ ├── ParityBitList.java │ │ │ │ │ ├── RelayOutputOptions.java │ │ │ │ │ ├── RelayOutputOptionsExtension.java │ │ │ │ │ ├── SendReceiveSerialCommand.java │ │ │ │ │ ├── SendReceiveSerialCommandResponse.java │ │ │ │ │ ├── SerialData.java │ │ │ │ │ ├── SerialPort.java │ │ │ │ │ ├── SerialPortConfiguration.java │ │ │ │ │ ├── SerialPortConfigurationOptions.java │ │ │ │ │ ├── SerialPortType.java │ │ │ │ │ ├── SetAudioOutputConfiguration.java │ │ │ │ │ ├── SetAudioOutputConfigurationResponse.java │ │ │ │ │ ├── SetAudioSourceConfiguration.java │ │ │ │ │ ├── SetAudioSourceConfigurationResponse.java │ │ │ │ │ ├── SetDigitalInputConfigurations.java │ │ │ │ │ ├── SetDigitalInputConfigurationsResponse.java │ │ │ │ │ ├── SetRelayOutputSettings.java │ │ │ │ │ ├── SetRelayOutputSettingsResponse.java │ │ │ │ │ ├── SetSerialPortConfiguration.java │ │ │ │ │ ├── SetSerialPortConfigurationResponse.java │ │ │ │ │ ├── SetVideoOutputConfiguration.java │ │ │ │ │ ├── SetVideoOutputConfigurationResponse.java │ │ │ │ │ ├── SetVideoSourceConfiguration.java │ │ │ │ │ ├── SetVideoSourceConfigurationResponse.java │ │ │ │ │ └── package-info.java │ │ │ ├── display │ │ │ │ └── wsdl │ │ │ │ │ ├── Capabilities.java │ │ │ │ │ ├── CreatePaneConfiguration.java │ │ │ │ │ ├── CreatePaneConfigurationResponse.java │ │ │ │ │ ├── DeletePaneConfiguration.java │ │ │ │ │ ├── DeletePaneConfigurationResponse.java │ │ │ │ │ ├── DisplayPort.java │ │ │ │ │ ├── DisplayService.java │ │ │ │ │ ├── GetDisplayOptions.java │ │ │ │ │ ├── GetDisplayOptionsResponse.java │ │ │ │ │ ├── GetLayout.java │ │ │ │ │ ├── GetLayoutResponse.java │ │ │ │ │ ├── GetPaneConfiguration.java │ │ │ │ │ ├── GetPaneConfigurationResponse.java │ │ │ │ │ ├── GetPaneConfigurations.java │ │ │ │ │ ├── GetPaneConfigurationsResponse.java │ │ │ │ │ ├── GetServiceCapabilities.java │ │ │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── SetLayout.java │ │ │ │ │ ├── SetLayoutResponse.java │ │ │ │ │ ├── SetPaneConfiguration.java │ │ │ │ │ ├── SetPaneConfigurationResponse.java │ │ │ │ │ ├── SetPaneConfigurations.java │ │ │ │ │ ├── SetPaneConfigurationsResponse.java │ │ │ │ │ └── package-info.java │ │ │ ├── doorcontrol │ │ │ │ └── wsdl │ │ │ │ │ ├── AccessDoor.java │ │ │ │ │ ├── AccessDoorExtension.java │ │ │ │ │ ├── AccessDoorResponse.java │ │ │ │ │ ├── BlockDoor.java │ │ │ │ │ ├── BlockDoorResponse.java │ │ │ │ │ ├── DoorAlarmState.java │ │ │ │ │ ├── DoorCapabilities.java │ │ │ │ │ ├── DoorControlPort.java │ │ │ │ │ ├── DoorControlService.java │ │ │ │ │ ├── DoorFault.java │ │ │ │ │ ├── DoorFaultState.java │ │ │ │ │ ├── DoorInfo.java │ │ │ │ │ ├── DoorInfoBase.java │ │ │ │ │ ├── DoorMode.java │ │ │ │ │ ├── DoorPhysicalState.java │ │ │ │ │ ├── DoorState.java │ │ │ │ │ ├── DoorTamper.java │ │ │ │ │ ├── DoorTamperState.java │ │ │ │ │ ├── DoubleLockDoor.java │ │ │ │ │ ├── DoubleLockDoorResponse.java │ │ │ │ │ ├── GetDoorInfo.java │ │ │ │ │ ├── GetDoorInfoList.java │ │ │ │ │ ├── GetDoorInfoListResponse.java │ │ │ │ │ ├── GetDoorInfoResponse.java │ │ │ │ │ ├── GetDoorState.java │ │ │ │ │ ├── GetDoorStateResponse.java │ │ │ │ │ ├── GetServiceCapabilities.java │ │ │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ │ │ ├── LockDoor.java │ │ │ │ │ ├── LockDoorResponse.java │ │ │ │ │ ├── LockDownDoor.java │ │ │ │ │ ├── LockDownDoorResponse.java │ │ │ │ │ ├── LockDownReleaseDoor.java │ │ │ │ │ ├── LockDownReleaseDoorResponse.java │ │ │ │ │ ├── LockOpenDoor.java │ │ │ │ │ ├── LockOpenDoorResponse.java │ │ │ │ │ ├── LockOpenReleaseDoor.java │ │ │ │ │ ├── LockOpenReleaseDoorResponse.java │ │ │ │ │ ├── LockPhysicalState.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── ServiceCapabilities.java │ │ │ │ │ ├── UnlockDoor.java │ │ │ │ │ ├── UnlockDoorResponse.java │ │ │ │ │ └── package-info.java │ │ │ ├── events │ │ │ │ └── wsdl │ │ │ │ │ ├── Capabilities.java │ │ │ │ │ ├── CreatePullPointSubscription.java │ │ │ │ │ ├── CreatePullPointSubscriptionResponse.java │ │ │ │ │ ├── EventPortType.java │ │ │ │ │ ├── EventService.java │ │ │ │ │ ├── GetEventProperties.java │ │ │ │ │ ├── GetEventPropertiesResponse.java │ │ │ │ │ ├── GetServiceCapabilities.java │ │ │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── PullMessages.java │ │ │ │ │ ├── PullMessagesFaultResponse.java │ │ │ │ │ ├── PullMessagesResponse.java │ │ │ │ │ ├── Seek.java │ │ │ │ │ ├── SeekResponse.java │ │ │ │ │ ├── SetSynchronizationPoint.java │ │ │ │ │ ├── SetSynchronizationPointResponse.java │ │ │ │ │ ├── SubscriptionPolicy.java │ │ │ │ │ └── package-info.java │ │ │ ├── media │ │ │ │ └── wsdl │ │ │ │ │ ├── AddAudioDecoderConfiguration.java │ │ │ │ │ ├── AddAudioDecoderConfigurationResponse.java │ │ │ │ │ ├── AddAudioEncoderConfiguration.java │ │ │ │ │ ├── AddAudioEncoderConfigurationResponse.java │ │ │ │ │ ├── AddAudioOutputConfiguration.java │ │ │ │ │ ├── AddAudioOutputConfigurationResponse.java │ │ │ │ │ ├── AddAudioSourceConfiguration.java │ │ │ │ │ ├── AddAudioSourceConfigurationResponse.java │ │ │ │ │ ├── AddMetadataConfiguration.java │ │ │ │ │ ├── AddMetadataConfigurationResponse.java │ │ │ │ │ ├── AddPTZConfiguration.java │ │ │ │ │ ├── AddPTZConfigurationResponse.java │ │ │ │ │ ├── AddVideoAnalyticsConfiguration.java │ │ │ │ │ ├── AddVideoAnalyticsConfigurationResponse.java │ │ │ │ │ ├── AddVideoEncoderConfiguration.java │ │ │ │ │ ├── AddVideoEncoderConfigurationResponse.java │ │ │ │ │ ├── AddVideoSourceConfiguration.java │ │ │ │ │ ├── AddVideoSourceConfigurationResponse.java │ │ │ │ │ ├── Capabilities.java │ │ │ │ │ ├── CreateOSD.java │ │ │ │ │ ├── CreateOSDResponse.java │ │ │ │ │ ├── CreateProfile.java │ │ │ │ │ ├── CreateProfileResponse.java │ │ │ │ │ ├── DeleteOSD.java │ │ │ │ │ ├── DeleteOSDResponse.java │ │ │ │ │ ├── DeleteProfile.java │ │ │ │ │ ├── DeleteProfileResponse.java │ │ │ │ │ ├── GetAudioDecoderConfiguration.java │ │ │ │ │ ├── GetAudioDecoderConfigurationOptions.java │ │ │ │ │ ├── GetAudioDecoderConfigurationOptionsResponse.java │ │ │ │ │ ├── GetAudioDecoderConfigurationResponse.java │ │ │ │ │ ├── GetAudioDecoderConfigurations.java │ │ │ │ │ ├── GetAudioDecoderConfigurationsResponse.java │ │ │ │ │ ├── GetAudioEncoderConfiguration.java │ │ │ │ │ ├── GetAudioEncoderConfigurationOptions.java │ │ │ │ │ ├── GetAudioEncoderConfigurationOptionsResponse.java │ │ │ │ │ ├── GetAudioEncoderConfigurationResponse.java │ │ │ │ │ ├── GetAudioEncoderConfigurations.java │ │ │ │ │ ├── GetAudioEncoderConfigurationsResponse.java │ │ │ │ │ ├── GetAudioOutputConfiguration.java │ │ │ │ │ ├── GetAudioOutputConfigurationOptions.java │ │ │ │ │ ├── GetAudioOutputConfigurationOptionsResponse.java │ │ │ │ │ ├── GetAudioOutputConfigurationResponse.java │ │ │ │ │ ├── GetAudioOutputConfigurations.java │ │ │ │ │ ├── GetAudioOutputConfigurationsResponse.java │ │ │ │ │ ├── GetAudioOutputs.java │ │ │ │ │ ├── GetAudioOutputsResponse.java │ │ │ │ │ ├── GetAudioSourceConfiguration.java │ │ │ │ │ ├── GetAudioSourceConfigurationOptions.java │ │ │ │ │ ├── GetAudioSourceConfigurationOptionsResponse.java │ │ │ │ │ ├── GetAudioSourceConfigurationResponse.java │ │ │ │ │ ├── GetAudioSourceConfigurations.java │ │ │ │ │ ├── GetAudioSourceConfigurationsResponse.java │ │ │ │ │ ├── GetAudioSources.java │ │ │ │ │ ├── GetAudioSourcesResponse.java │ │ │ │ │ ├── GetCompatibleAudioDecoderConfigurations.java │ │ │ │ │ ├── GetCompatibleAudioDecoderConfigurationsResponse.java │ │ │ │ │ ├── GetCompatibleAudioEncoderConfigurations.java │ │ │ │ │ ├── GetCompatibleAudioEncoderConfigurationsResponse.java │ │ │ │ │ ├── GetCompatibleAudioOutputConfigurations.java │ │ │ │ │ ├── GetCompatibleAudioOutputConfigurationsResponse.java │ │ │ │ │ ├── GetCompatibleAudioSourceConfigurations.java │ │ │ │ │ ├── GetCompatibleAudioSourceConfigurationsResponse.java │ │ │ │ │ ├── GetCompatibleMetadataConfigurations.java │ │ │ │ │ ├── GetCompatibleMetadataConfigurationsResponse.java │ │ │ │ │ ├── GetCompatibleVideoAnalyticsConfigurations.java │ │ │ │ │ ├── GetCompatibleVideoAnalyticsConfigurationsResponse.java │ │ │ │ │ ├── GetCompatibleVideoEncoderConfigurations.java │ │ │ │ │ ├── GetCompatibleVideoEncoderConfigurationsResponse.java │ │ │ │ │ ├── GetCompatibleVideoSourceConfigurations.java │ │ │ │ │ ├── GetCompatibleVideoSourceConfigurationsResponse.java │ │ │ │ │ ├── GetGuaranteedNumberOfVideoEncoderInstances.java │ │ │ │ │ ├── GetGuaranteedNumberOfVideoEncoderInstancesResponse.java │ │ │ │ │ ├── GetMetadataConfiguration.java │ │ │ │ │ ├── GetMetadataConfigurationOptions.java │ │ │ │ │ ├── GetMetadataConfigurationOptionsResponse.java │ │ │ │ │ ├── GetMetadataConfigurationResponse.java │ │ │ │ │ ├── GetMetadataConfigurations.java │ │ │ │ │ ├── GetMetadataConfigurationsResponse.java │ │ │ │ │ ├── GetOSD.java │ │ │ │ │ ├── GetOSDOptions.java │ │ │ │ │ ├── GetOSDOptionsResponse.java │ │ │ │ │ ├── GetOSDResponse.java │ │ │ │ │ ├── GetOSDs.java │ │ │ │ │ ├── GetOSDsResponse.java │ │ │ │ │ ├── GetProfile.java │ │ │ │ │ ├── GetProfileResponse.java │ │ │ │ │ ├── GetProfiles.java │ │ │ │ │ ├── GetProfilesResponse.java │ │ │ │ │ ├── GetServiceCapabilities.java │ │ │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ │ │ ├── GetSnapshotUri.java │ │ │ │ │ ├── GetSnapshotUriResponse.java │ │ │ │ │ ├── GetStreamUri.java │ │ │ │ │ ├── GetStreamUriResponse.java │ │ │ │ │ ├── GetVideoAnalyticsConfiguration.java │ │ │ │ │ ├── GetVideoAnalyticsConfigurationResponse.java │ │ │ │ │ ├── GetVideoAnalyticsConfigurations.java │ │ │ │ │ ├── GetVideoAnalyticsConfigurationsResponse.java │ │ │ │ │ ├── GetVideoEncoderConfiguration.java │ │ │ │ │ ├── GetVideoEncoderConfigurationOptions.java │ │ │ │ │ ├── GetVideoEncoderConfigurationOptionsResponse.java │ │ │ │ │ ├── GetVideoEncoderConfigurationResponse.java │ │ │ │ │ ├── GetVideoEncoderConfigurations.java │ │ │ │ │ ├── GetVideoEncoderConfigurationsResponse.java │ │ │ │ │ ├── GetVideoSourceConfiguration.java │ │ │ │ │ ├── GetVideoSourceConfigurationOptions.java │ │ │ │ │ ├── GetVideoSourceConfigurationOptionsResponse.java │ │ │ │ │ ├── GetVideoSourceConfigurationResponse.java │ │ │ │ │ ├── GetVideoSourceConfigurations.java │ │ │ │ │ ├── GetVideoSourceConfigurationsResponse.java │ │ │ │ │ ├── GetVideoSourceModes.java │ │ │ │ │ ├── GetVideoSourceModesResponse.java │ │ │ │ │ ├── GetVideoSources.java │ │ │ │ │ ├── GetVideoSourcesResponse.java │ │ │ │ │ ├── Media.java │ │ │ │ │ ├── MediaService.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── ProfileCapabilities.java │ │ │ │ │ ├── RemoveAudioDecoderConfiguration.java │ │ │ │ │ ├── RemoveAudioDecoderConfigurationResponse.java │ │ │ │ │ ├── RemoveAudioEncoderConfiguration.java │ │ │ │ │ ├── RemoveAudioEncoderConfigurationResponse.java │ │ │ │ │ ├── RemoveAudioOutputConfiguration.java │ │ │ │ │ ├── RemoveAudioOutputConfigurationResponse.java │ │ │ │ │ ├── RemoveAudioSourceConfiguration.java │ │ │ │ │ ├── RemoveAudioSourceConfigurationResponse.java │ │ │ │ │ ├── RemoveMetadataConfiguration.java │ │ │ │ │ ├── RemoveMetadataConfigurationResponse.java │ │ │ │ │ ├── RemovePTZConfiguration.java │ │ │ │ │ ├── RemovePTZConfigurationResponse.java │ │ │ │ │ ├── RemoveVideoAnalyticsConfiguration.java │ │ │ │ │ ├── RemoveVideoAnalyticsConfigurationResponse.java │ │ │ │ │ ├── RemoveVideoEncoderConfiguration.java │ │ │ │ │ ├── RemoveVideoEncoderConfigurationResponse.java │ │ │ │ │ ├── RemoveVideoSourceConfiguration.java │ │ │ │ │ ├── RemoveVideoSourceConfigurationResponse.java │ │ │ │ │ ├── SetAudioDecoderConfiguration.java │ │ │ │ │ ├── SetAudioDecoderConfigurationResponse.java │ │ │ │ │ ├── SetAudioEncoderConfiguration.java │ │ │ │ │ ├── SetAudioEncoderConfigurationResponse.java │ │ │ │ │ ├── SetAudioOutputConfiguration.java │ │ │ │ │ ├── SetAudioOutputConfigurationResponse.java │ │ │ │ │ ├── SetAudioSourceConfiguration.java │ │ │ │ │ ├── SetAudioSourceConfigurationResponse.java │ │ │ │ │ ├── SetMetadataConfiguration.java │ │ │ │ │ ├── SetMetadataConfigurationResponse.java │ │ │ │ │ ├── SetOSD.java │ │ │ │ │ ├── SetOSDResponse.java │ │ │ │ │ ├── SetSynchronizationPoint.java │ │ │ │ │ ├── SetSynchronizationPointResponse.java │ │ │ │ │ ├── SetVideoAnalyticsConfiguration.java │ │ │ │ │ ├── SetVideoAnalyticsConfigurationResponse.java │ │ │ │ │ ├── SetVideoEncoderConfiguration.java │ │ │ │ │ ├── SetVideoEncoderConfigurationResponse.java │ │ │ │ │ ├── SetVideoSourceConfiguration.java │ │ │ │ │ ├── SetVideoSourceConfigurationResponse.java │ │ │ │ │ ├── SetVideoSourceMode.java │ │ │ │ │ ├── SetVideoSourceModeResponse.java │ │ │ │ │ ├── StartMulticastStreaming.java │ │ │ │ │ ├── StartMulticastStreamingResponse.java │ │ │ │ │ ├── StopMulticastStreaming.java │ │ │ │ │ ├── StopMulticastStreamingResponse.java │ │ │ │ │ ├── StreamingCapabilities.java │ │ │ │ │ ├── VideoSourceMode.java │ │ │ │ │ ├── VideoSourceModeExtension.java │ │ │ │ │ └── package-info.java │ │ │ ├── network │ │ │ │ └── wsdl │ │ │ │ │ ├── DiscoveryLookupPort.java │ │ │ │ │ ├── DiscoveryService.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ └── RemoteDiscoveryPort.java │ │ │ ├── pacs │ │ │ │ ├── DataEntity.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ └── package-info.java │ │ │ ├── receiver │ │ │ │ └── wsdl │ │ │ │ │ ├── Capabilities.java │ │ │ │ │ ├── ConfigureReceiver.java │ │ │ │ │ ├── ConfigureReceiverResponse.java │ │ │ │ │ ├── CreateReceiver.java │ │ │ │ │ ├── CreateReceiverResponse.java │ │ │ │ │ ├── DeleteReceiver.java │ │ │ │ │ ├── DeleteReceiverResponse.java │ │ │ │ │ ├── GetReceiver.java │ │ │ │ │ ├── GetReceiverResponse.java │ │ │ │ │ ├── GetReceiverState.java │ │ │ │ │ ├── GetReceiverStateResponse.java │ │ │ │ │ ├── GetReceivers.java │ │ │ │ │ ├── GetReceiversResponse.java │ │ │ │ │ ├── GetServiceCapabilities.java │ │ │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── ReceiverPort.java │ │ │ │ │ ├── ReceiverService.java │ │ │ │ │ ├── SetReceiverMode.java │ │ │ │ │ ├── SetReceiverModeResponse.java │ │ │ │ │ └── package-info.java │ │ │ ├── recording │ │ │ │ └── wsdl │ │ │ │ │ ├── Capabilities.java │ │ │ │ │ ├── CreateRecording.java │ │ │ │ │ ├── CreateRecordingJob.java │ │ │ │ │ ├── CreateRecordingJobResponse.java │ │ │ │ │ ├── CreateRecordingResponse.java │ │ │ │ │ ├── CreateTrack.java │ │ │ │ │ ├── CreateTrackResponse.java │ │ │ │ │ ├── DeleteRecording.java │ │ │ │ │ ├── DeleteRecordingJob.java │ │ │ │ │ ├── DeleteRecordingJobResponse.java │ │ │ │ │ ├── DeleteRecordingResponse.java │ │ │ │ │ ├── DeleteTrack.java │ │ │ │ │ ├── DeleteTrackResponse.java │ │ │ │ │ ├── ExportRecordedData.java │ │ │ │ │ ├── ExportRecordedDataResponse.java │ │ │ │ │ ├── GetExportRecordedDataState.java │ │ │ │ │ ├── GetExportRecordedDataStateResponse.java │ │ │ │ │ ├── GetRecordingConfiguration.java │ │ │ │ │ ├── GetRecordingConfigurationResponse.java │ │ │ │ │ ├── GetRecordingJobConfiguration.java │ │ │ │ │ ├── GetRecordingJobConfigurationResponse.java │ │ │ │ │ ├── GetRecordingJobState.java │ │ │ │ │ ├── GetRecordingJobStateResponse.java │ │ │ │ │ ├── GetRecordingJobs.java │ │ │ │ │ ├── GetRecordingJobsResponse.java │ │ │ │ │ ├── GetRecordingOptions.java │ │ │ │ │ ├── GetRecordingOptionsResponse.java │ │ │ │ │ ├── GetRecordings.java │ │ │ │ │ ├── GetRecordingsResponse.java │ │ │ │ │ ├── GetServiceCapabilities.java │ │ │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ │ │ ├── GetTrackConfiguration.java │ │ │ │ │ ├── GetTrackConfigurationResponse.java │ │ │ │ │ ├── JobOptions.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── RecordingOptions.java │ │ │ │ │ ├── RecordingPort.java │ │ │ │ │ ├── RecordingService.java │ │ │ │ │ ├── SetRecordingConfiguration.java │ │ │ │ │ ├── SetRecordingConfigurationResponse.java │ │ │ │ │ ├── SetRecordingJobConfiguration.java │ │ │ │ │ ├── SetRecordingJobConfigurationResponse.java │ │ │ │ │ ├── SetRecordingJobMode.java │ │ │ │ │ ├── SetRecordingJobModeResponse.java │ │ │ │ │ ├── SetTrackConfiguration.java │ │ │ │ │ ├── SetTrackConfigurationResponse.java │ │ │ │ │ ├── StopExportRecordedData.java │ │ │ │ │ ├── StopExportRecordedDataResponse.java │ │ │ │ │ ├── TrackOptions.java │ │ │ │ │ └── package-info.java │ │ │ ├── replay │ │ │ │ └── wsdl │ │ │ │ │ ├── Capabilities.java │ │ │ │ │ ├── GetReplayConfiguration.java │ │ │ │ │ ├── GetReplayConfigurationResponse.java │ │ │ │ │ ├── GetReplayUri.java │ │ │ │ │ ├── GetReplayUriResponse.java │ │ │ │ │ ├── GetServiceCapabilities.java │ │ │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── ReplayPort.java │ │ │ │ │ ├── ReplayService.java │ │ │ │ │ ├── SetReplayConfiguration.java │ │ │ │ │ ├── SetReplayConfigurationResponse.java │ │ │ │ │ └── package-info.java │ │ │ ├── schema │ │ │ │ ├── AACDecOptions.java │ │ │ │ ├── AbsoluteFocus.java │ │ │ │ ├── AbsoluteFocusOptions.java │ │ │ │ ├── ActionEngineEventPayload.java │ │ │ │ ├── ActionEngineEventPayloadExtension.java │ │ │ │ ├── AnalyticsCapabilities.java │ │ │ │ ├── AnalyticsDeviceCapabilities.java │ │ │ │ ├── AnalyticsDeviceEngineConfiguration.java │ │ │ │ ├── AnalyticsDeviceEngineConfigurationExtension.java │ │ │ │ ├── AnalyticsDeviceExtension.java │ │ │ │ ├── AnalyticsEngine.java │ │ │ │ ├── AnalyticsEngineConfiguration.java │ │ │ │ ├── AnalyticsEngineConfigurationExtension.java │ │ │ │ ├── AnalyticsEngineControl.java │ │ │ │ ├── AnalyticsEngineInput.java │ │ │ │ ├── AnalyticsEngineInputInfo.java │ │ │ │ ├── AnalyticsEngineInputInfoExtension.java │ │ │ │ ├── AnalyticsState.java │ │ │ │ ├── AnalyticsStateInformation.java │ │ │ │ ├── AnyHolder.java │ │ │ │ ├── Appearance.java │ │ │ │ ├── AppearanceExtension.java │ │ │ │ ├── ArrayOfFileProgress.java │ │ │ │ ├── ArrayOfFileProgressExtension.java │ │ │ │ ├── AttachmentData.java │ │ │ │ ├── AudioAnalyticsStream.java │ │ │ │ ├── AudioAnalyticsStreamExtension.java │ │ │ │ ├── AudioAttributes.java │ │ │ │ ├── AudioClassCandidate.java │ │ │ │ ├── AudioClassDescriptor.java │ │ │ │ ├── AudioClassDescriptorExtension.java │ │ │ │ ├── AudioDecoderConfiguration.java │ │ │ │ ├── AudioDecoderConfigurationOptions.java │ │ │ │ ├── AudioDecoderConfigurationOptionsExtension.java │ │ │ │ ├── AudioDescriptor.java │ │ │ │ ├── AudioEncoder2Configuration.java │ │ │ │ ├── AudioEncoder2ConfigurationOptions.java │ │ │ │ ├── AudioEncoderConfiguration.java │ │ │ │ ├── AudioEncoderConfigurationOption.java │ │ │ │ ├── AudioEncoderConfigurationOptions.java │ │ │ │ ├── AudioEncoding.java │ │ │ │ ├── AudioEncodingMimeNames.java │ │ │ │ ├── AudioOutput.java │ │ │ │ ├── AudioOutputConfiguration.java │ │ │ │ ├── AudioOutputConfigurationOptions.java │ │ │ │ ├── AudioSource.java │ │ │ │ ├── AudioSourceConfiguration.java │ │ │ │ ├── AudioSourceConfigurationOptions.java │ │ │ │ ├── AudioSourceOptionsExtension.java │ │ │ │ ├── AutoFocusMode.java │ │ │ │ ├── BacklightCompensation.java │ │ │ │ ├── BacklightCompensation20.java │ │ │ │ ├── BacklightCompensationMode.java │ │ │ │ ├── BacklightCompensationOptions.java │ │ │ │ ├── BacklightCompensationOptions20.java │ │ │ │ ├── BackupFile.java │ │ │ │ ├── Behaviour.java │ │ │ │ ├── BehaviourExtension.java │ │ │ │ ├── BinaryData.java │ │ │ │ ├── Capabilities.java │ │ │ │ ├── CapabilitiesExtension.java │ │ │ │ ├── CapabilitiesExtension2.java │ │ │ │ ├── CapabilityCategory.java │ │ │ │ ├── CellLayout.java │ │ │ │ ├── Certificate.java │ │ │ │ ├── CertificateGenerationParameters.java │ │ │ │ ├── CertificateGenerationParametersExtension.java │ │ │ │ ├── CertificateInformation.java │ │ │ │ ├── CertificateInformationExtension.java │ │ │ │ ├── CertificateStatus.java │ │ │ │ ├── CertificateUsage.java │ │ │ │ ├── CertificateWithPrivateKey.java │ │ │ │ ├── ClassDescriptor.java │ │ │ │ ├── ClassDescriptorExtension.java │ │ │ │ ├── ClassDescriptorExtension2.java │ │ │ │ ├── ClassType.java │ │ │ │ ├── CodingCapabilities.java │ │ │ │ ├── Color.java │ │ │ │ ├── ColorCovariance.java │ │ │ │ ├── ColorDescriptor.java │ │ │ │ ├── ColorDescriptorExtension.java │ │ │ │ ├── ColorOptions.java │ │ │ │ ├── ColorspaceRange.java │ │ │ │ ├── Config.java │ │ │ │ ├── ConfigDescription.java │ │ │ │ ├── ConfigDescriptionExtension.java │ │ │ │ ├── ConfigurationEntity.java │ │ │ │ ├── ContinuousFocus.java │ │ │ │ ├── ContinuousFocusOptions.java │ │ │ │ ├── DNSInformation.java │ │ │ │ ├── DNSInformationExtension.java │ │ │ │ ├── Date.java │ │ │ │ ├── DateTime.java │ │ │ │ ├── DateTimeRange.java │ │ │ │ ├── Defogging.java │ │ │ │ ├── DefoggingExtension.java │ │ │ │ ├── DefoggingMode.java │ │ │ │ ├── DefoggingOptions.java │ │ │ │ ├── DeviceCapabilities.java │ │ │ │ ├── DeviceCapabilitiesExtension.java │ │ │ │ ├── DeviceEntity.java │ │ │ │ ├── DeviceIOCapabilities.java │ │ │ │ ├── DigitalIdleState.java │ │ │ │ ├── DigitalInput.java │ │ │ │ ├── Direction.java │ │ │ │ ├── DiscoveryMode.java │ │ │ │ ├── DisplayCapabilities.java │ │ │ │ ├── Dot11AuthAndMangementSuite.java │ │ │ │ ├── Dot11AvailableNetworks.java │ │ │ │ ├── Dot11AvailableNetworksExtension.java │ │ │ │ ├── Dot11Capabilities.java │ │ │ │ ├── Dot11Cipher.java │ │ │ │ ├── Dot11Configuration.java │ │ │ │ ├── Dot11PSKSet.java │ │ │ │ ├── Dot11PSKSetExtension.java │ │ │ │ ├── Dot11SecurityConfiguration.java │ │ │ │ ├── Dot11SecurityConfigurationExtension.java │ │ │ │ ├── Dot11SecurityMode.java │ │ │ │ ├── Dot11SignalStrength.java │ │ │ │ ├── Dot11StationMode.java │ │ │ │ ├── Dot11Status.java │ │ │ │ ├── Dot1XConfiguration.java │ │ │ │ ├── Dot1XConfigurationExtension.java │ │ │ │ ├── Dot3Configuration.java │ │ │ │ ├── Duplex.java │ │ │ │ ├── DurationRange.java │ │ │ │ ├── DynamicDNSInformation.java │ │ │ │ ├── DynamicDNSInformationExtension.java │ │ │ │ ├── DynamicDNSType.java │ │ │ │ ├── EAPMethodConfiguration.java │ │ │ │ ├── EFlip.java │ │ │ │ ├── EFlipMode.java │ │ │ │ ├── EFlipOptions.java │ │ │ │ ├── EFlipOptionsExtension.java │ │ │ │ ├── EapMethodExtension.java │ │ │ │ ├── Enabled.java │ │ │ │ ├── EngineConfiguration.java │ │ │ │ ├── EventCapabilities.java │ │ │ │ ├── EventFilter.java │ │ │ │ ├── EventStream.java │ │ │ │ ├── EventStreamExtension.java │ │ │ │ ├── EventSubscription.java │ │ │ │ ├── Exposure.java │ │ │ │ ├── Exposure20.java │ │ │ │ ├── ExposureMode.java │ │ │ │ ├── ExposureOptions.java │ │ │ │ ├── ExposureOptions20.java │ │ │ │ ├── ExposurePriority.java │ │ │ │ ├── FactoryDefaultType.java │ │ │ │ ├── FileProgress.java │ │ │ │ ├── FindEventResult.java │ │ │ │ ├── FindEventResultList.java │ │ │ │ ├── FindMetadataResult.java │ │ │ │ ├── FindMetadataResultList.java │ │ │ │ ├── FindPTZPositionResult.java │ │ │ │ ├── FindPTZPositionResultList.java │ │ │ │ ├── FindRecordingResultList.java │ │ │ │ ├── FloatList.java │ │ │ │ ├── FloatRange.java │ │ │ │ ├── FocusConfiguration.java │ │ │ │ ├── FocusConfiguration20.java │ │ │ │ ├── FocusConfiguration20Extension.java │ │ │ │ ├── FocusMove.java │ │ │ │ ├── FocusOptions.java │ │ │ │ ├── FocusOptions20.java │ │ │ │ ├── FocusOptions20Extension.java │ │ │ │ ├── FocusStatus.java │ │ │ │ ├── FocusStatus20.java │ │ │ │ ├── FocusStatus20Extension.java │ │ │ │ ├── Frame.java │ │ │ │ ├── FrameExtension.java │ │ │ │ ├── FrameExtension2.java │ │ │ │ ├── G711DecOptions.java │ │ │ │ ├── G726DecOptions.java │ │ │ │ ├── GenericEapPwdConfigurationExtension.java │ │ │ │ ├── GetRecordingJobsResponseItem.java │ │ │ │ ├── GetRecordingsResponseItem.java │ │ │ │ ├── GetTracksResponseItem.java │ │ │ │ ├── GetTracksResponseList.java │ │ │ │ ├── H264Configuration.java │ │ │ │ ├── H264DecOptions.java │ │ │ │ ├── H264Options.java │ │ │ │ ├── H264Options2.java │ │ │ │ ├── H264Profile.java │ │ │ │ ├── HostnameInformation.java │ │ │ │ ├── HostnameInformationExtension.java │ │ │ │ ├── IOCapabilities.java │ │ │ │ ├── IOCapabilitiesExtension.java │ │ │ │ ├── IOCapabilitiesExtension2.java │ │ │ │ ├── IPAddress.java │ │ │ │ ├── IPAddressFilter.java │ │ │ │ ├── IPAddressFilterExtension.java │ │ │ │ ├── IPAddressFilterType.java │ │ │ │ ├── IPType.java │ │ │ │ ├── IPv4Configuration.java │ │ │ │ ├── IPv4NetworkInterface.java │ │ │ │ ├── IPv4NetworkInterfaceSetConfiguration.java │ │ │ │ ├── IPv6Configuration.java │ │ │ │ ├── IPv6ConfigurationExtension.java │ │ │ │ ├── IPv6DHCPConfiguration.java │ │ │ │ ├── IPv6NetworkInterface.java │ │ │ │ ├── IPv6NetworkInterfaceSetConfiguration.java │ │ │ │ ├── ImageStabilization.java │ │ │ │ ├── ImageStabilizationExtension.java │ │ │ │ ├── ImageStabilizationMode.java │ │ │ │ ├── ImageStabilizationOptions.java │ │ │ │ ├── ImageStabilizationOptionsExtension.java │ │ │ │ ├── ImagingCapabilities.java │ │ │ │ ├── ImagingOptions.java │ │ │ │ ├── ImagingOptions20.java │ │ │ │ ├── ImagingOptions20Extension.java │ │ │ │ ├── ImagingOptions20Extension2.java │ │ │ │ ├── ImagingOptions20Extension3.java │ │ │ │ ├── ImagingOptions20Extension4.java │ │ │ │ ├── ImagingSettings.java │ │ │ │ ├── ImagingSettings20.java │ │ │ │ ├── ImagingSettingsExtension.java │ │ │ │ ├── ImagingSettingsExtension20.java │ │ │ │ ├── ImagingSettingsExtension202.java │ │ │ │ ├── ImagingSettingsExtension203.java │ │ │ │ ├── ImagingSettingsExtension204.java │ │ │ │ ├── ImagingStatus.java │ │ │ │ ├── ImagingStatus20.java │ │ │ │ ├── ImagingStatus20Extension.java │ │ │ │ ├── IntList.java │ │ │ │ ├── IntRange.java │ │ │ │ ├── IntRectangle.java │ │ │ │ ├── IntRectangleRange.java │ │ │ │ ├── IrCutFilterAutoAdjustment.java │ │ │ │ ├── IrCutFilterAutoAdjustmentExtension.java │ │ │ │ ├── IrCutFilterAutoAdjustmentOptions.java │ │ │ │ ├── IrCutFilterAutoAdjustmentOptionsExtension.java │ │ │ │ ├── IrCutFilterAutoBoundaryType.java │ │ │ │ ├── IrCutFilterMode.java │ │ │ │ ├── ItemList.java │ │ │ │ ├── ItemListDescription.java │ │ │ │ ├── ItemListDescriptionExtension.java │ │ │ │ ├── ItemListExtension.java │ │ │ │ ├── JpegDecOptions.java │ │ │ │ ├── JpegOptions.java │ │ │ │ ├── JpegOptions2.java │ │ │ │ ├── Layout.java │ │ │ │ ├── LayoutExtension.java │ │ │ │ ├── LayoutOptions.java │ │ │ │ ├── LayoutOptionsExtension.java │ │ │ │ ├── LensDescription.java │ │ │ │ ├── LensOffset.java │ │ │ │ ├── LensProjection.java │ │ │ │ ├── MaximumNumberOfOSDs.java │ │ │ │ ├── MediaAttributes.java │ │ │ │ ├── MediaCapabilities.java │ │ │ │ ├── MediaCapabilitiesExtension.java │ │ │ │ ├── MediaUri.java │ │ │ │ ├── Merge.java │ │ │ │ ├── Message.java │ │ │ │ ├── MessageDescription.java │ │ │ │ ├── MessageDescriptionExtension.java │ │ │ │ ├── MessageExtension.java │ │ │ │ ├── MetadataAttributes.java │ │ │ │ ├── MetadataCompressionType.java │ │ │ │ ├── MetadataConfiguration.java │ │ │ │ ├── MetadataConfigurationExtension.java │ │ │ │ ├── MetadataConfigurationOptions.java │ │ │ │ ├── MetadataConfigurationOptionsExtension.java │ │ │ │ ├── MetadataConfigurationOptionsExtension2.java │ │ │ │ ├── MetadataFilter.java │ │ │ │ ├── MetadataInput.java │ │ │ │ ├── MetadataInputExtension.java │ │ │ │ ├── MetadataStream.java │ │ │ │ ├── MetadataStreamExtension.java │ │ │ │ ├── MetadataStreamExtension2.java │ │ │ │ ├── ModeOfOperation.java │ │ │ │ ├── MotionExpression.java │ │ │ │ ├── MotionExpressionConfiguration.java │ │ │ │ ├── MotionInCells.java │ │ │ │ ├── MoveOptions.java │ │ │ │ ├── MoveOptions20.java │ │ │ │ ├── MoveStatus.java │ │ │ │ ├── Mpeg4Configuration.java │ │ │ │ ├── Mpeg4DecOptions.java │ │ │ │ ├── Mpeg4Options.java │ │ │ │ ├── Mpeg4Options2.java │ │ │ │ ├── Mpeg4Profile.java │ │ │ │ ├── MulticastConfiguration.java │ │ │ │ ├── NTPInformation.java │ │ │ │ ├── NTPInformationExtension.java │ │ │ │ ├── NetworkCapabilities.java │ │ │ │ ├── NetworkCapabilitiesExtension.java │ │ │ │ ├── NetworkCapabilitiesExtension2.java │ │ │ │ ├── NetworkGateway.java │ │ │ │ ├── NetworkHost.java │ │ │ │ ├── NetworkHostExtension.java │ │ │ │ ├── NetworkHostType.java │ │ │ │ ├── NetworkInterface.java │ │ │ │ ├── NetworkInterfaceConnectionSetting.java │ │ │ │ ├── NetworkInterfaceExtension.java │ │ │ │ ├── NetworkInterfaceExtension2.java │ │ │ │ ├── NetworkInterfaceInfo.java │ │ │ │ ├── NetworkInterfaceLink.java │ │ │ │ ├── NetworkInterfaceSetConfiguration.java │ │ │ │ ├── NetworkInterfaceSetConfigurationExtension.java │ │ │ │ ├── NetworkInterfaceSetConfigurationExtension2.java │ │ │ │ ├── NetworkProtocol.java │ │ │ │ ├── NetworkProtocolExtension.java │ │ │ │ ├── NetworkProtocolType.java │ │ │ │ ├── NetworkZeroConfiguration.java │ │ │ │ ├── NetworkZeroConfigurationExtension.java │ │ │ │ ├── NetworkZeroConfigurationExtension2.java │ │ │ │ ├── NoiseReduction.java │ │ │ │ ├── NoiseReductionOptions.java │ │ │ │ ├── OSDColor.java │ │ │ │ ├── OSDColorOptions.java │ │ │ │ ├── OSDColorOptionsExtension.java │ │ │ │ ├── OSDConfiguration.java │ │ │ │ ├── OSDConfigurationExtension.java │ │ │ │ ├── OSDConfigurationOptions.java │ │ │ │ ├── OSDConfigurationOptionsExtension.java │ │ │ │ ├── OSDImgConfiguration.java │ │ │ │ ├── OSDImgConfigurationExtension.java │ │ │ │ ├── OSDImgOptions.java │ │ │ │ ├── OSDImgOptionsExtension.java │ │ │ │ ├── OSDPosConfiguration.java │ │ │ │ ├── OSDPosConfigurationExtension.java │ │ │ │ ├── OSDReference.java │ │ │ │ ├── OSDTextConfiguration.java │ │ │ │ ├── OSDTextConfigurationExtension.java │ │ │ │ ├── OSDTextOptions.java │ │ │ │ ├── OSDTextOptionsExtension.java │ │ │ │ ├── OSDType.java │ │ │ │ ├── Object.java │ │ │ │ ├── ObjectExtension.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── ObjectId.java │ │ │ │ ├── ObjectTree.java │ │ │ │ ├── ObjectTreeExtension.java │ │ │ │ ├── OnvifVersion.java │ │ │ │ ├── OtherType.java │ │ │ │ ├── PTControlDirection.java │ │ │ │ ├── PTControlDirectionExtension.java │ │ │ │ ├── PTControlDirectionOptions.java │ │ │ │ ├── PTControlDirectionOptionsExtension.java │ │ │ │ ├── PTZCapabilities.java │ │ │ │ ├── PTZConfiguration.java │ │ │ │ ├── PTZConfigurationExtension.java │ │ │ │ ├── PTZConfigurationExtension2.java │ │ │ │ ├── PTZConfigurationOptions.java │ │ │ │ ├── PTZConfigurationOptions2.java │ │ │ │ ├── PTZFilter.java │ │ │ │ ├── PTZMoveStatus.java │ │ │ │ ├── PTZNode.java │ │ │ │ ├── PTZNodeExtension.java │ │ │ │ ├── PTZNodeExtension2.java │ │ │ │ ├── PTZPositionFilter.java │ │ │ │ ├── PTZPreset.java │ │ │ │ ├── PTZPresetTourDirection.java │ │ │ │ ├── PTZPresetTourExtension.java │ │ │ │ ├── PTZPresetTourOperation.java │ │ │ │ ├── PTZPresetTourOptions.java │ │ │ │ ├── PTZPresetTourPresetDetail.java │ │ │ │ ├── PTZPresetTourPresetDetailOptions.java │ │ │ │ ├── PTZPresetTourPresetDetailOptionsExtension.java │ │ │ │ ├── PTZPresetTourSpot.java │ │ │ │ ├── PTZPresetTourSpotExtension.java │ │ │ │ ├── PTZPresetTourSpotOptions.java │ │ │ │ ├── PTZPresetTourStartingCondition.java │ │ │ │ ├── PTZPresetTourStartingConditionExtension.java │ │ │ │ ├── PTZPresetTourStartingConditionOptions.java │ │ │ │ ├── PTZPresetTourStartingConditionOptionsExtension.java │ │ │ │ ├── PTZPresetTourState.java │ │ │ │ ├── PTZPresetTourStatus.java │ │ │ │ ├── PTZPresetTourStatusExtension.java │ │ │ │ ├── PTZPresetTourSupported.java │ │ │ │ ├── PTZPresetTourSupportedExtension.java │ │ │ │ ├── PTZPresetTourTypeExtension.java │ │ │ │ ├── PTZSpaces.java │ │ │ │ ├── PTZSpacesExtension.java │ │ │ │ ├── PTZSpeed.java │ │ │ │ ├── PTZStatus.java │ │ │ │ ├── PTZStatusFilterOptions.java │ │ │ │ ├── PTZStatusFilterOptionsExtension.java │ │ │ │ ├── PTZStream.java │ │ │ │ ├── PTZStreamExtension.java │ │ │ │ ├── PTZVector.java │ │ │ │ ├── PanTiltLimits.java │ │ │ │ ├── PaneConfiguration.java │ │ │ │ ├── PaneLayout.java │ │ │ │ ├── PaneLayoutOptions.java │ │ │ │ ├── PaneOptionExtension.java │ │ │ │ ├── Polygon.java │ │ │ │ ├── PolygonConfiguration.java │ │ │ │ ├── Polyline.java │ │ │ │ ├── PolylineArray.java │ │ │ │ ├── PolylineArrayConfiguration.java │ │ │ │ ├── PolylineArrayExtension.java │ │ │ │ ├── PrefixedIPv4Address.java │ │ │ │ ├── PrefixedIPv6Address.java │ │ │ │ ├── PresetTour.java │ │ │ │ ├── Profile.java │ │ │ │ ├── ProfileCapabilities.java │ │ │ │ ├── ProfileExtension.java │ │ │ │ ├── ProfileExtension2.java │ │ │ │ ├── PropertyOperation.java │ │ │ │ ├── RealTimeStreamingCapabilities.java │ │ │ │ ├── RealTimeStreamingCapabilitiesExtension.java │ │ │ │ ├── Receiver.java │ │ │ │ ├── ReceiverCapabilities.java │ │ │ │ ├── ReceiverConfiguration.java │ │ │ │ ├── ReceiverMode.java │ │ │ │ ├── ReceiverState.java │ │ │ │ ├── ReceiverStateInformation.java │ │ │ │ ├── RecordingCapabilities.java │ │ │ │ ├── RecordingConfiguration.java │ │ │ │ ├── RecordingInformation.java │ │ │ │ ├── RecordingJobConfiguration.java │ │ │ │ ├── RecordingJobConfigurationExtension.java │ │ │ │ ├── RecordingJobSource.java │ │ │ │ ├── RecordingJobSourceExtension.java │ │ │ │ ├── RecordingJobStateInformation.java │ │ │ │ ├── RecordingJobStateInformationExtension.java │ │ │ │ ├── RecordingJobStateSource.java │ │ │ │ ├── RecordingJobStateTrack.java │ │ │ │ ├── RecordingJobStateTracks.java │ │ │ │ ├── RecordingJobTrack.java │ │ │ │ ├── RecordingSourceInformation.java │ │ │ │ ├── RecordingStatus.java │ │ │ │ ├── RecordingSummary.java │ │ │ │ ├── Rectangle.java │ │ │ │ ├── RelativeFocus.java │ │ │ │ ├── RelativeFocusOptions.java │ │ │ │ ├── RelativeFocusOptions20.java │ │ │ │ ├── RelayIdleState.java │ │ │ │ ├── RelayLogicalState.java │ │ │ │ ├── RelayMode.java │ │ │ │ ├── RelayOutput.java │ │ │ │ ├── RelayOutputSettings.java │ │ │ │ ├── RemoteUser.java │ │ │ │ ├── Rename.java │ │ │ │ ├── ReplayCapabilities.java │ │ │ │ ├── ReplayConfiguration.java │ │ │ │ ├── Reverse.java │ │ │ │ ├── ReverseMode.java │ │ │ │ ├── ReverseOptions.java │ │ │ │ ├── ReverseOptionsExtension.java │ │ │ │ ├── Rotate.java │ │ │ │ ├── RotateExtension.java │ │ │ │ ├── RotateMode.java │ │ │ │ ├── RotateOptions.java │ │ │ │ ├── RotateOptionsExtension.java │ │ │ │ ├── RuleEngineConfiguration.java │ │ │ │ ├── RuleEngineConfigurationExtension.java │ │ │ │ ├── Scope.java │ │ │ │ ├── ScopeDefinition.java │ │ │ │ ├── SearchCapabilities.java │ │ │ │ ├── SearchScope.java │ │ │ │ ├── SearchScopeExtension.java │ │ │ │ ├── SearchState.java │ │ │ │ ├── SecurityCapabilities.java │ │ │ │ ├── SecurityCapabilitiesExtension.java │ │ │ │ ├── SecurityCapabilitiesExtension2.java │ │ │ │ ├── SetDateTimeType.java │ │ │ │ ├── ShapeDescriptor.java │ │ │ │ ├── ShapeDescriptorExtension.java │ │ │ │ ├── SourceIdentification.java │ │ │ │ ├── SourceIdentificationExtension.java │ │ │ │ ├── SourceReference.java │ │ │ │ ├── Space1DDescription.java │ │ │ │ ├── Space2DDescription.java │ │ │ │ ├── Split.java │ │ │ │ ├── StorageReferencePath.java │ │ │ │ ├── StorageReferencePathExtension.java │ │ │ │ ├── StreamSetup.java │ │ │ │ ├── StreamType.java │ │ │ │ ├── SupportInformation.java │ │ │ │ ├── SupportedAnalyticsModules.java │ │ │ │ ├── SupportedAnalyticsModulesExtension.java │ │ │ │ ├── SupportedRules.java │ │ │ │ ├── SupportedRulesExtension.java │ │ │ │ ├── SystemCapabilities.java │ │ │ │ ├── SystemCapabilitiesExtension.java │ │ │ │ ├── SystemCapabilitiesExtension2.java │ │ │ │ ├── SystemDateTime.java │ │ │ │ ├── SystemDateTimeExtension.java │ │ │ │ ├── SystemLog.java │ │ │ │ ├── SystemLogType.java │ │ │ │ ├── SystemLogUri.java │ │ │ │ ├── SystemLogUriList.java │ │ │ │ ├── TLSConfiguration.java │ │ │ │ ├── Time.java │ │ │ │ ├── TimeZone.java │ │ │ │ ├── ToneCompensation.java │ │ │ │ ├── ToneCompensationExtension.java │ │ │ │ ├── ToneCompensationMode.java │ │ │ │ ├── ToneCompensationOptions.java │ │ │ │ ├── TrackAttributes.java │ │ │ │ ├── TrackAttributesExtension.java │ │ │ │ ├── TrackConfiguration.java │ │ │ │ ├── TrackInformation.java │ │ │ │ ├── TrackType.java │ │ │ │ ├── Transformation.java │ │ │ │ ├── TransformationExtension.java │ │ │ │ ├── Transport.java │ │ │ │ ├── TransportProtocol.java │ │ │ │ ├── User.java │ │ │ │ ├── UserExtension.java │ │ │ │ ├── UserLevel.java │ │ │ │ ├── Vector.java │ │ │ │ ├── Vector1D.java │ │ │ │ ├── Vector2D.java │ │ │ │ ├── VideoAnalyticsConfiguration.java │ │ │ │ ├── VideoAnalyticsStream.java │ │ │ │ ├── VideoAnalyticsStreamExtension.java │ │ │ │ ├── VideoAttributes.java │ │ │ │ ├── VideoDecoderConfigurationOptions.java │ │ │ │ ├── VideoDecoderConfigurationOptionsExtension.java │ │ │ │ ├── VideoEncoder2Configuration.java │ │ │ │ ├── VideoEncoder2ConfigurationOptions.java │ │ │ │ ├── VideoEncoderConfiguration.java │ │ │ │ ├── VideoEncoderConfigurationOptions.java │ │ │ │ ├── VideoEncoderOptionsExtension.java │ │ │ │ ├── VideoEncoderOptionsExtension2.java │ │ │ │ ├── VideoEncoding.java │ │ │ │ ├── VideoEncodingMimeNames.java │ │ │ │ ├── VideoEncodingProfiles.java │ │ │ │ ├── VideoOutput.java │ │ │ │ ├── VideoOutputConfiguration.java │ │ │ │ ├── VideoOutputConfigurationOptions.java │ │ │ │ ├── VideoOutputExtension.java │ │ │ │ ├── VideoRateControl.java │ │ │ │ ├── VideoRateControl2.java │ │ │ │ ├── VideoResolution.java │ │ │ │ ├── VideoResolution2.java │ │ │ │ ├── VideoSource.java │ │ │ │ ├── VideoSourceConfiguration.java │ │ │ │ ├── VideoSourceConfigurationExtension.java │ │ │ │ ├── VideoSourceConfigurationExtension2.java │ │ │ │ ├── VideoSourceConfigurationOptions.java │ │ │ │ ├── VideoSourceConfigurationOptionsExtension.java │ │ │ │ ├── VideoSourceConfigurationOptionsExtension2.java │ │ │ │ ├── VideoSourceExtension.java │ │ │ │ ├── VideoSourceExtension2.java │ │ │ │ ├── WhiteBalance.java │ │ │ │ ├── WhiteBalance20.java │ │ │ │ ├── WhiteBalance20Extension.java │ │ │ │ ├── WhiteBalanceMode.java │ │ │ │ ├── WhiteBalanceOptions.java │ │ │ │ ├── WhiteBalanceOptions20.java │ │ │ │ ├── WhiteBalanceOptions20Extension.java │ │ │ │ ├── WideDynamicMode.java │ │ │ │ ├── WideDynamicRange.java │ │ │ │ ├── WideDynamicRange20.java │ │ │ │ ├── WideDynamicRangeOptions.java │ │ │ │ ├── WideDynamicRangeOptions20.java │ │ │ │ ├── ZoomLimits.java │ │ │ │ └── package-info.java │ │ │ └── search │ │ │ │ └── wsdl │ │ │ │ ├── Capabilities.java │ │ │ │ ├── EndSearch.java │ │ │ │ ├── EndSearchResponse.java │ │ │ │ ├── FindEvents.java │ │ │ │ ├── FindEventsResponse.java │ │ │ │ ├── FindMetadata.java │ │ │ │ ├── FindMetadataResponse.java │ │ │ │ ├── FindPTZPosition.java │ │ │ │ ├── FindPTZPositionResponse.java │ │ │ │ ├── FindRecordings.java │ │ │ │ ├── FindRecordingsResponse.java │ │ │ │ ├── GetEventSearchResults.java │ │ │ │ ├── GetEventSearchResultsResponse.java │ │ │ │ ├── GetMediaAttributes.java │ │ │ │ ├── GetMediaAttributesResponse.java │ │ │ │ ├── GetMetadataSearchResults.java │ │ │ │ ├── GetMetadataSearchResultsResponse.java │ │ │ │ ├── GetPTZPositionSearchResults.java │ │ │ │ ├── GetPTZPositionSearchResultsResponse.java │ │ │ │ ├── GetRecordingInformation.java │ │ │ │ ├── GetRecordingInformationResponse.java │ │ │ │ ├── GetRecordingSearchResults.java │ │ │ │ ├── GetRecordingSearchResultsResponse.java │ │ │ │ ├── GetRecordingSummary.java │ │ │ │ ├── GetRecordingSummaryResponse.java │ │ │ │ ├── GetSearchState.java │ │ │ │ ├── GetSearchStateResponse.java │ │ │ │ ├── GetServiceCapabilities.java │ │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── SearchPort.java │ │ │ │ ├── SearchService.java │ │ │ │ └── package-info.java │ │ └── ver20 │ │ │ ├── imaging │ │ │ └── wsdl │ │ │ │ ├── Capabilities.java │ │ │ │ ├── GetImagingSettings.java │ │ │ │ ├── GetImagingSettingsResponse.java │ │ │ │ ├── GetMoveOptions.java │ │ │ │ ├── GetMoveOptionsResponse.java │ │ │ │ ├── GetOptions.java │ │ │ │ ├── GetOptionsResponse.java │ │ │ │ ├── GetServiceCapabilities.java │ │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ │ ├── GetStatus.java │ │ │ │ ├── GetStatusResponse.java │ │ │ │ ├── ImagingPort.java │ │ │ │ ├── ImagingService.java │ │ │ │ ├── Move.java │ │ │ │ ├── MoveResponse.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── SetImagingSettings.java │ │ │ │ ├── SetImagingSettingsResponse.java │ │ │ │ ├── Stop.java │ │ │ │ ├── StopResponse.java │ │ │ │ └── package-info.java │ │ │ └── ptz │ │ │ └── wsdl │ │ │ ├── AbsoluteMove.java │ │ │ ├── AbsoluteMoveResponse.java │ │ │ ├── Capabilities.java │ │ │ ├── ContinuousMove.java │ │ │ ├── ContinuousMoveResponse.java │ │ │ ├── CreatePresetTour.java │ │ │ ├── CreatePresetTourResponse.java │ │ │ ├── GetCompatibleConfigurations.java │ │ │ ├── GetCompatibleConfigurationsResponse.java │ │ │ ├── GetConfiguration.java │ │ │ ├── GetConfigurationOptions.java │ │ │ ├── GetConfigurationOptionsResponse.java │ │ │ ├── GetConfigurationResponse.java │ │ │ ├── GetConfigurations.java │ │ │ ├── GetConfigurationsResponse.java │ │ │ ├── GetNode.java │ │ │ ├── GetNodeResponse.java │ │ │ ├── GetNodes.java │ │ │ ├── GetNodesResponse.java │ │ │ ├── GetPresetTour.java │ │ │ ├── GetPresetTourOptions.java │ │ │ ├── GetPresetTourOptionsResponse.java │ │ │ ├── GetPresetTourResponse.java │ │ │ ├── GetPresetTours.java │ │ │ ├── GetPresetToursResponse.java │ │ │ ├── GetPresets.java │ │ │ ├── GetPresetsResponse.java │ │ │ ├── GetServiceCapabilities.java │ │ │ ├── GetServiceCapabilitiesResponse.java │ │ │ ├── GetStatus.java │ │ │ ├── GetStatusResponse.java │ │ │ ├── GotoHomePosition.java │ │ │ ├── GotoHomePositionResponse.java │ │ │ ├── GotoPreset.java │ │ │ ├── GotoPresetResponse.java │ │ │ ├── ModifyPresetTour.java │ │ │ ├── ModifyPresetTourResponse.java │ │ │ ├── ObjectFactory.java │ │ │ ├── OperatePresetTour.java │ │ │ ├── OperatePresetTourResponse.java │ │ │ ├── PTZ.java │ │ │ ├── PtzService.java │ │ │ ├── RelativeMove.java │ │ │ ├── RelativeMoveResponse.java │ │ │ ├── RemovePreset.java │ │ │ ├── RemovePresetResponse.java │ │ │ ├── RemovePresetTour.java │ │ │ ├── RemovePresetTourResponse.java │ │ │ ├── SendAuxiliaryCommand.java │ │ │ ├── SendAuxiliaryCommandResponse.java │ │ │ ├── SetConfiguration.java │ │ │ ├── SetConfigurationResponse.java │ │ │ ├── SetHomePosition.java │ │ │ ├── SetHomePositionResponse.java │ │ │ ├── SetPreset.java │ │ │ ├── SetPresetResponse.java │ │ │ ├── Stop.java │ │ │ ├── StopResponse.java │ │ │ └── package-info.java │ │ ├── w3 │ │ ├── _2003 │ │ │ └── _05 │ │ │ │ └── soap_envelope │ │ │ │ ├── Body.java │ │ │ │ ├── Detail.java │ │ │ │ ├── Envelope.java │ │ │ │ ├── Fault.java │ │ │ │ ├── Faultcode.java │ │ │ │ ├── Faultreason.java │ │ │ │ ├── Header.java │ │ │ │ ├── NotUnderstoodType.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── Reasontext.java │ │ │ │ ├── Subcode.java │ │ │ │ ├── SupportedEnvType.java │ │ │ │ ├── UpgradeType.java │ │ │ │ └── package-info.java │ │ ├── _2004 │ │ │ └── _08 │ │ │ │ └── xop │ │ │ │ └── include │ │ │ │ ├── Include.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ └── package-info.java │ │ └── _2005 │ │ │ └── _05 │ │ │ └── xmlmime │ │ │ ├── Base64Binary.java │ │ │ ├── HexBinary.java │ │ │ ├── ObjectFactory.java │ │ │ └── package-info.java │ │ └── xmlsoap │ │ └── schemas │ │ └── ws │ │ ├── _2004 │ │ └── _08 │ │ │ └── addressing │ │ │ ├── AttributedQName.java │ │ │ ├── AttributedURI.java │ │ │ ├── EndpointReferenceType.java │ │ │ ├── ObjectFactory.java │ │ │ ├── ReferenceParametersType.java │ │ │ ├── ReferencePropertiesType.java │ │ │ ├── Relationship.java │ │ │ ├── ReplyAfterType.java │ │ │ ├── RetryAfterType.java │ │ │ ├── ServiceNameType.java │ │ │ └── package-info.java │ │ └── _2005 │ │ └── _04 │ │ └── discovery │ │ ├── AppSequenceType.java │ │ ├── ByeType.java │ │ ├── HelloType.java │ │ ├── ObjectFactory.java │ │ ├── ProbeMatchType.java │ │ ├── ProbeMatchesType.java │ │ ├── ProbeType.java │ │ ├── ResolveMatchType.java │ │ ├── ResolveMatchesType.java │ │ ├── ResolveType.java │ │ ├── ScopesType.java │ │ ├── SecurityType.java │ │ ├── SigType.java │ │ └── package-info.java │ └── resources │ └── wsdl │ ├── accesscontrol_1.0.wsdl │ ├── accessrules_1.0.wsdl │ ├── advancedsecurity_1.2.wsdl │ ├── deviceio_2.6.1.wsdl │ ├── devicemgmt_2.5.wsdl │ ├── display_2.1.1.wsdl │ ├── doorcontrol_1.0.wsdl │ ├── event_2.6.wsdlXXX │ ├── event_24.12.wsdl │ ├── imaging_2.5.wsdl │ ├── jax-ws-catalog.xml │ ├── local │ ├── docs.oasis-open.org │ │ ├── wsn │ │ │ ├── b-2.xsd │ │ │ ├── bw-2.wsdl │ │ │ └── t-1.xsd │ │ └── wsrf │ │ │ ├── bf-2.xsd │ │ │ ├── r-2.xsd │ │ │ └── rw-2.wsdl │ ├── schemas.xmlsoap.org │ │ ├── soap │ │ │ └── envelope │ │ └── ws │ │ │ ├── 2004 │ │ │ └── 08 │ │ │ │ └── addressing │ │ │ └── 2005 │ │ │ └── 04 │ │ │ └── discovery │ │ │ └── ws-discovery.xsd │ ├── www.onvif.org │ │ └── ver10 │ │ │ ├── pacs │ │ │ └── types.xsd │ │ │ ├── schema │ │ │ └── onvif.xsd │ │ │ └── topics │ │ │ └── topicns.xml │ └── www.w3.org │ │ ├── 2001 │ │ └── xml.xsd │ │ ├── 2003 │ │ └── 05 │ │ │ └── soap-envelope │ │ ├── 2004 │ │ └── 08 │ │ │ └── xop │ │ │ └── include │ │ ├── 2005 │ │ ├── 05 │ │ │ └── xmlmime │ │ └── 08 │ │ │ └── addressing │ │ └── 2006 │ │ └── 03 │ │ └── addressing │ │ └── ws-addr.xsd │ ├── media_2.6.wsdl │ ├── ptz_2.5.wsdl │ ├── receiver_2.1.1.wsdl │ ├── recording_2.5.wsdl │ ├── remotediscovery_1.0.wsdl │ ├── replay_2.2.1.wsdl │ └── search_2.4.2.wsdl ├── pom.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | *target* 2 | *.jar 3 | *.war 4 | *.ear 5 | *.class 6 | 7 | # eclipse specific git ignore 8 | *.pydevproject 9 | .project 10 | .metadata 11 | bin/** 12 | *.tmp 13 | *.bak 14 | *~.nib 15 | *~ 16 | *.swp 17 | *.swo 18 | 19 | .idea/** 20 | .idea 21 | 22 | local.properties 23 | .classpath 24 | .settings/ 25 | .loadpath -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | wrapperVersion=3.3.2 18 | distributionType=only-script 19 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.7/apache-maven-3.8.7-bin.zip 20 | -------------------------------------------------------------------------------- /build-logic/.gradle/8.10/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpompermaier/onvif/19c4c983c5a6b12956992f76935074ba84cebce2/build-logic/.gradle/8.10/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /build-logic/.gradle/8.10/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpompermaier/onvif/19c4c983c5a6b12956992f76935074ba84cebce2/build-logic/.gradle/8.10/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /build-logic/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpompermaier/onvif/19c4c983c5a6b12956992f76935074ba84cebce2/build-logic/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /build-logic/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Nov 22 21:23:26 GMT 2024 2 | gradle.version=8.10 3 | -------------------------------------------------------------------------------- /build-logic/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpompermaier/onvif/19c4c983c5a6b12956992f76935074ba84cebce2/build-logic/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /build-logic/.gradle/file-system.probe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpompermaier/onvif/19c4c983c5a6b12956992f76935074ba84cebce2/build-logic/.gradle/file-system.probe -------------------------------------------------------------------------------- /build-logic/build.gradle: -------------------------------------------------------------------------------- 1 | /* 2 | * This file was generated by the Gradle 'init' task. 3 | * 4 | * This project uses @Incubating APIs which are subject to change. 5 | */ 6 | 7 | plugins { 8 | // Support convention plugins written in Groovy. Convention plugins are build scripts in 'src/main' that automatically become available as plugins in the main build. 9 | id 'groovy-gradle-plugin' 10 | } 11 | 12 | repositories { 13 | // Use the plugin portal to apply community plugins in convention plugins. 14 | gradlePluginPortal() 15 | } 16 | -------------------------------------------------------------------------------- /build-logic/build/groovy-dsl-plugins/output/adapter-src/BuildlogicJavaConventionsPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpompermaier/onvif/19c4c983c5a6b12956992f76935074ba84cebce2/build-logic/build/groovy-dsl-plugins/output/adapter-src/BuildlogicJavaConventionsPlugin.java -------------------------------------------------------------------------------- /build-logic/build/groovy-dsl-plugins/output/plugin-requests/buildlogic.java-conventions/metadata.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpompermaier/onvif/19c4c983c5a6b12956992f76935074ba84cebce2/build-logic/build/groovy-dsl-plugins/output/plugin-requests/buildlogic.java-conventions/metadata.bin -------------------------------------------------------------------------------- /build-logic/build/groovy-dsl-plugins/work/metadata/buildlogic.java-conventions/metadata.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpompermaier/onvif/19c4c983c5a6b12956992f76935074ba84cebce2/build-logic/build/groovy-dsl-plugins/work/metadata/buildlogic.java-conventions/metadata.bin -------------------------------------------------------------------------------- /build-logic/build/pluginDescriptors/buildlogic.java-conventions.properties: -------------------------------------------------------------------------------- 1 | implementation-class=BuildlogicJavaConventionsPlugin 2 | -------------------------------------------------------------------------------- /build-logic/build/pluginUnderTestMetadata/plugin-under-test-metadata.properties: -------------------------------------------------------------------------------- 1 | implementation-classpath=/home/richard/onvif/build-logic/build/classes/java/main\:/home/richard/onvif/build-logic/build/classes/groovy/main\:/home/richard/onvif/build-logic/build/resources/main\:/home/richard/onvif/build-logic/build/groovy-dsl-plugins/output/plugin-classes\:/home/richard/onvif/build-logic/build/groovy-dsl-plugins/output/plugin-requests-staging 2 | -------------------------------------------------------------------------------- /build-logic/build/reports/plugin-development/validation-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpompermaier/onvif/19c4c983c5a6b12956992f76935074ba84cebce2/build-logic/build/reports/plugin-development/validation-report.json -------------------------------------------------------------------------------- /build-logic/build/resources/main/META-INF/gradle-plugins/buildlogic.java-conventions.properties: -------------------------------------------------------------------------------- 1 | implementation-class=BuildlogicJavaConventionsPlugin 2 | -------------------------------------------------------------------------------- /build-logic/build/tmp/jar/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpompermaier/onvif/19c4c983c5a6b12956992f76935074ba84cebce2/build-logic/build/tmp/jar/MANIFEST.MF -------------------------------------------------------------------------------- /build-logic/src/main/groovy/buildlogic.java-conventions.gradle: -------------------------------------------------------------------------------- 1 | /* 2 | * This file was generated by the Gradle 'init' task. 3 | * 4 | * This project uses @Incubating APIs which are subject to change. 5 | */ 6 | 7 | plugins { 8 | id 'java-library' 9 | id 'maven-publish' 10 | } 11 | 12 | repositories { 13 | mavenLocal() 14 | maven { 15 | url = uri('https://repo.maven.apache.org/maven2/') 16 | } 17 | } 18 | 19 | group = 'org.onvif' 20 | version = '1.0-SNAPSHOT' 21 | java.sourceCompatibility = JavaVersion.VERSION_21 22 | 23 | publishing { 24 | publications { 25 | maven(MavenPublication) { 26 | from(components.java) 27 | } 28 | } 29 | } 30 | 31 | tasks.withType(JavaCompile) { 32 | options.encoding = 'UTF-8' 33 | } 34 | 35 | tasks.withType(Javadoc) { 36 | options.encoding = 'UTF-8' 37 | } 38 | -------------------------------------------------------------------------------- /onvif-java/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.onvif 7 | onvif 8 | 1.0-SNAPSHOT 9 | 10 | onvif-java 11 | 12 | 13 | 14 | 15 | org.apache.cxf.services.wsn 16 | cxf-services-wsn-core 17 | ${cxf.version} 18 | 19 | 20 | 21 | org.onvif 22 | onvif-ws-client 23 | ${project.version} 24 | 25 | 26 | 27 | 28 | 29 | 30 | org.slf4j 31 | slf4j-simple 32 | 1.7.26 33 | test 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /onvif-java/src/main/java/de/onvif/discovery/OnvifDiscovery.java: -------------------------------------------------------------------------------- 1 | package de.onvif.discovery; 2 | 3 | import java.net.URL; 4 | import java.util.Collection; 5 | 6 | /** 7 | * @author th 8 | * @date 2015-06-18 9 | */ 10 | public class OnvifDiscovery { 11 | 12 | public static Collection discoverOnvifURLs() { 13 | return DeviceDiscovery.discoverWsDevicesAsUrls("^http$", ".*onvif.*"); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /onvif-java/src/main/java/de/onvif/soap/PullMessagesCallbacks.java: -------------------------------------------------------------------------------- 1 | package de.onvif.soap; 2 | 3 | import org.onvif.ver10.events.wsdl.PullMessagesResponse; 4 | 5 | public interface PullMessagesCallbacks { 6 | void onPullMessagesReceived(PullMessagesResponse pullMessages); 7 | } 8 | -------------------------------------------------------------------------------- /onvif-java/src/main/java/de/onvif/soap/PullMessagesResponseData.java: -------------------------------------------------------------------------------- 1 | package de.onvif.soap; 2 | 3 | 4 | import java.util.Date; 5 | import java.util.List; 6 | 7 | public class PullMessagesResponseData { 8 | public final String topic; 9 | public final List Source; 10 | public final List Data; 11 | public final Date created; 12 | 13 | public PullMessagesResponseData(String topic, List Source, List Data) { 14 | created = new Date(); 15 | this.topic = topic; 16 | this.Source = Source; 17 | this.Data = Data; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /onvif-java/src/main/java/de/onvif/soap/SimpleItem.java: -------------------------------------------------------------------------------- 1 | package de.onvif.soap; 2 | 3 | // Container for values returned in PullMessagesResponse 4 | public class SimpleItem { 5 | public final String Name; 6 | public final String Value; 7 | public SimpleItem(String name, String value) { 8 | Name = name; 9 | Value = value; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /onvif-java/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Root logger option 2 | log4j.rootLogger=INFO, stdout 3 | # Direct log messages to stdout 4 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 5 | log4j.appender.stdout.Target=System.out 6 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 7 | log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n 8 | -------------------------------------------------------------------------------- /onvif-java/src/test/java/org/onvif/client/Base64Test.java: -------------------------------------------------------------------------------- 1 | package org.onvif.client; 2 | 3 | import java.util.Base64; 4 | 5 | public class Base64Test { 6 | 7 | 8 | public static void main(String[] args) { 9 | String base64String = "4AUTXXJ214OBnsdeYBXatQ=="; 10 | 11 | // decode Base64 12 | byte[] decodedBytes = Base64.getDecoder().decode(base64String); 13 | 14 | // turn byte[] to hex 15 | StringBuilder hexStringBuilder = new StringBuilder(); 16 | for (byte b : decodedBytes) { 17 | String hex = Integer.toHexString(0xff & b); 18 | if (hex.length() == 1) { 19 | hexStringBuilder.append('0'); 20 | } 21 | hexStringBuilder.append(hex); 22 | } 23 | String hexString = hexStringBuilder.toString(); 24 | 25 | System.out.println("hex:" + hexString); 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /onvif-java/src/test/java/org/onvif/client/DiscoveryTest.java: -------------------------------------------------------------------------------- 1 | package org.onvif.client; 2 | 3 | import de.onvif.discovery.OnvifDiscovery; 4 | import java.net.URL; 5 | import java.util.Collection; 6 | import org.slf4j.Logger; 7 | import org.slf4j.LoggerFactory; 8 | 9 | public class DiscoveryTest { 10 | private static final Logger LOG = LoggerFactory.getLogger(DiscoveryTest.class); 11 | 12 | public static void main(String[] args) { 13 | Collection urls = OnvifDiscovery.discoverOnvifURLs(); 14 | for (URL u : urls) { 15 | LOG.info(u.toString()); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /onvif-java/src/test/java/org/onvif/client/OnvifCredentials.java: -------------------------------------------------------------------------------- 1 | package org.onvif.client; 2 | 3 | public class OnvifCredentials { 4 | private String host; // 92.168.xx.yy, or http://host[:port] 5 | private String user; // admin 6 | private String password; // secret 7 | private String profile; // "MediaProfile000" If empty, will use first profile. 8 | 9 | public OnvifCredentials(String host, String user, String password, String profile) { 10 | this.host = host; 11 | this.user = user; 12 | this.password = password; 13 | this.profile = profile; 14 | } 15 | 16 | public String getHost() { 17 | return host; 18 | } 19 | 20 | public void setHost(String host) { 21 | this.host = host; 22 | } 23 | 24 | public String getUser() { 25 | return user; 26 | } 27 | 28 | public void setUser(String user) { 29 | this.user = user; 30 | } 31 | 32 | public String getPassword() { 33 | return password; 34 | } 35 | 36 | public void setPassword(String password) { 37 | this.password = password; 38 | } 39 | 40 | public String getProfile() { 41 | return profile; 42 | } 43 | 44 | public void setProfile(String profile) { 45 | this.profile = profile; 46 | } 47 | 48 | public String toString() { 49 | return host; // + "," + user+ "," + "****,"++ "#" + profile; 50 | } 51 | 52 | public String details() { 53 | return host + "," + user + "," + password + "," + profile; 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /onvif-java/src/test/resources/onvif.properties: -------------------------------------------------------------------------------- 1 | #device name,IP address,username,password,profile-token 2 | mycam1=192.168.1.53,admin,admin,MediaProfile000 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/.gitignore: -------------------------------------------------------------------------------- 1 | /org/ 2 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/oasis_open/docs/wsn/b_2/UseRaw.java: -------------------------------------------------------------------------------- 1 | 2 | package org.oasis_open.docs.wsn.b_2; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *     </restriction>
22 |  *   </complexContent>
23 |  * </complexType>
24 |  * 
25 | * 26 | * 27 | */ 28 | @XmlAccessorType(XmlAccessType.FIELD) 29 | @XmlType(name = "") 30 | @XmlRootElement(name = "UseRaw") 31 | public class UseRaw { 32 | 33 | 34 | /** 35 | * Generates a String representation of the contents of this type. 36 | * This is an extension method, produced by the 'ts' xjc plugin 37 | * 38 | */ 39 | @Override 40 | public String toString() { 41 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 42 | } 43 | 44 | } 45 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/oasis_open/docs/wsn/b_2/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://docs.oasis-open.org/wsn/b-2", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.oasis_open.docs.wsn.b_2; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/oasis_open/docs/wsn/bw_2/InvalidFilterFault.java: -------------------------------------------------------------------------------- 1 | 2 | package org.oasis_open.docs.wsn.bw_2; 3 | 4 | import jakarta.xml.ws.WebFault; 5 | 6 | 7 | /** 8 | * This class was generated by Apache CXF 4.0.5 9 | * Generated source version: 4.0.5 10 | */ 11 | 12 | @WebFault(name = "InvalidFilterFault", targetNamespace = "http://docs.oasis-open.org/wsn/b-2") 13 | public class InvalidFilterFault extends Exception { 14 | 15 | private org.oasis_open.docs.wsn.b_2.InvalidFilterFaultType faultInfo; 16 | 17 | public InvalidFilterFault() { 18 | super(); 19 | } 20 | 21 | public InvalidFilterFault(String message) { 22 | super(message); 23 | } 24 | 25 | public InvalidFilterFault(String message, java.lang.Throwable cause) { 26 | super(message, cause); 27 | } 28 | 29 | public InvalidFilterFault(String message, org.oasis_open.docs.wsn.b_2.InvalidFilterFaultType invalidFilterFault) { 30 | super(message); 31 | this.faultInfo = invalidFilterFault; 32 | } 33 | 34 | public InvalidFilterFault(String message, org.oasis_open.docs.wsn.b_2.InvalidFilterFaultType invalidFilterFault, java.lang.Throwable cause) { 35 | super(message, cause); 36 | this.faultInfo = invalidFilterFault; 37 | } 38 | 39 | public org.oasis_open.docs.wsn.b_2.InvalidFilterFaultType getFaultInfo() { 40 | return this.faultInfo; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/oasis_open/docs/wsn/bw_2/TopicNotSupportedFault.java: -------------------------------------------------------------------------------- 1 | 2 | package org.oasis_open.docs.wsn.bw_2; 3 | 4 | import jakarta.xml.ws.WebFault; 5 | 6 | 7 | /** 8 | * This class was generated by Apache CXF 4.0.5 9 | * Generated source version: 4.0.5 10 | */ 11 | 12 | @WebFault(name = "TopicNotSupportedFault", targetNamespace = "http://docs.oasis-open.org/wsn/b-2") 13 | public class TopicNotSupportedFault extends Exception { 14 | 15 | private org.oasis_open.docs.wsn.b_2.TopicNotSupportedFaultType faultInfo; 16 | 17 | public TopicNotSupportedFault() { 18 | super(); 19 | } 20 | 21 | public TopicNotSupportedFault(String message) { 22 | super(message); 23 | } 24 | 25 | public TopicNotSupportedFault(String message, java.lang.Throwable cause) { 26 | super(message, cause); 27 | } 28 | 29 | public TopicNotSupportedFault(String message, org.oasis_open.docs.wsn.b_2.TopicNotSupportedFaultType topicNotSupportedFault) { 30 | super(message); 31 | this.faultInfo = topicNotSupportedFault; 32 | } 33 | 34 | public TopicNotSupportedFault(String message, org.oasis_open.docs.wsn.b_2.TopicNotSupportedFaultType topicNotSupportedFault, java.lang.Throwable cause) { 35 | super(message, cause); 36 | this.faultInfo = topicNotSupportedFault; 37 | } 38 | 39 | public org.oasis_open.docs.wsn.b_2.TopicNotSupportedFaultType getFaultInfo() { 40 | return this.faultInfo; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/oasis_open/docs/wsn/t_1/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://docs.oasis-open.org/wsn/t-1", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.oasis_open.docs.wsn.t_1; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/oasis_open/docs/wsrf/bf_2/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://docs.oasis-open.org/wsrf/bf-2", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.oasis_open.docs.wsrf.bf_2; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/oasis_open/docs/wsrf/r_2/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://docs.oasis-open.org/wsrf/r-2") 2 | package org.oasis_open.docs.wsrf.r_2; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/oasis_open/docs/wsrf/rw_2/ResourceUnknownFault.java: -------------------------------------------------------------------------------- 1 | 2 | package org.oasis_open.docs.wsrf.rw_2; 3 | 4 | import jakarta.xml.ws.WebFault; 5 | 6 | 7 | /** 8 | * This class was generated by Apache CXF 4.0.5 9 | * Generated source version: 4.0.5 10 | */ 11 | 12 | @WebFault(name = "ResourceUnknownFault", targetNamespace = "http://docs.oasis-open.org/wsrf/r-2") 13 | public class ResourceUnknownFault extends Exception { 14 | 15 | private org.oasis_open.docs.wsrf.r_2.ResourceUnknownFaultType faultInfo; 16 | 17 | public ResourceUnknownFault() { 18 | super(); 19 | } 20 | 21 | public ResourceUnknownFault(String message) { 22 | super(message); 23 | } 24 | 25 | public ResourceUnknownFault(String message, java.lang.Throwable cause) { 26 | super(message, cause); 27 | } 28 | 29 | public ResourceUnknownFault(String message, org.oasis_open.docs.wsrf.r_2.ResourceUnknownFaultType resourceUnknownFault) { 30 | super(message); 31 | this.faultInfo = resourceUnknownFault; 32 | } 33 | 34 | public ResourceUnknownFault(String message, org.oasis_open.docs.wsrf.r_2.ResourceUnknownFaultType resourceUnknownFault, java.lang.Throwable cause) { 35 | super(message, cause); 36 | this.faultInfo = resourceUnknownFault; 37 | } 38 | 39 | public org.oasis_open.docs.wsrf.r_2.ResourceUnknownFaultType getFaultInfo() { 40 | return this.faultInfo; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/accesscontrol/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/accesscontrol/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver10.accesscontrol.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/accessrules/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/accessrules/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver10.accessrules.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/advancedsecurity/wsdl/DeleteCRLResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.advancedsecurity.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "DeleteCRLResponse") 33 | public class DeleteCRLResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/advancedsecurity/wsdl/DeleteKeyResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.advancedsecurity.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "DeleteKeyResponse") 33 | public class DeleteKeyResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/advancedsecurity/wsdl/GetAllCRLs.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.advancedsecurity.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetAllCRLs") 33 | public class GetAllCRLs { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/advancedsecurity/wsdl/GetAllKeys.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.advancedsecurity.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetAllKeys") 33 | public class GetAllKeys { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/advancedsecurity/wsdl/GetAllPassphrases.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.advancedsecurity.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetAllPassphrases") 33 | public class GetAllPassphrases { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/advancedsecurity/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/advancedsecurity/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver10.advancedsecurity.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/AddScopesResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "AddScopesResponse") 33 | public class AddScopesResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/CreateUsersResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "CreateUsersResponse") 33 | public class CreateUsersResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/DeleteUsersResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "DeleteUsersResponse") 33 | public class DeleteUsersResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetAccessPolicy.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetAccessPolicy") 33 | public class GetAccessPolicy { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetCACertificates.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetCACertificates") 33 | public class GetCACertificates { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetCertificates.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetCertificates") 33 | public class GetCertificates { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetCertificatesStatus.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetCertificatesStatus") 33 | public class GetCertificatesStatus { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetDNS.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetDNS") 33 | public class GetDNS { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetDPAddresses.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetDPAddresses") 33 | public class GetDPAddresses { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetDeviceInformation.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetDeviceInformation") 33 | public class GetDeviceInformation { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetDiscoveryMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetDiscoveryMode") 33 | public class GetDiscoveryMode { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetDot1XConfigurations.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetDot1XConfigurations") 33 | public class GetDot1XConfigurations { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetDynamicDNS.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetDynamicDNS") 33 | public class GetDynamicDNS { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetEndpointReference.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetEndpointReference") 33 | public class GetEndpointReference { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetHostname.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetHostname") 33 | public class GetHostname { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetIPAddressFilter.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetIPAddressFilter") 33 | public class GetIPAddressFilter { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetNTP.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetNTP") 33 | public class GetNTP { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetNetworkInterfaces.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetNetworkInterfaces") 33 | public class GetNetworkInterfaces { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetNetworkProtocols.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetNetworkProtocols") 33 | public class GetNetworkProtocols { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetRelayOutputs.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetRelayOutputs") 33 | public class GetRelayOutputs { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetRemoteDiscoveryMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetRemoteDiscoveryMode") 33 | public class GetRemoteDiscoveryMode { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetRemoteUser.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetRemoteUser") 33 | public class GetRemoteUser { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetScopes.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetScopes") 33 | public class GetScopes { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetServiceCapabilities.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetServiceCapabilities") 33 | public class GetServiceCapabilities { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetSystemBackup.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetSystemBackup") 33 | public class GetSystemBackup { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetSystemDateAndTime.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetSystemDateAndTime") 33 | public class GetSystemDateAndTime { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetSystemUris.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetSystemUris") 33 | public class GetSystemUris { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetUsers.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetUsers") 33 | public class GetUsers { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetWsdlUrl.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetWsdlUrl") 33 | public class GetWsdlUrl { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/GetZeroConfiguration.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetZeroConfiguration") 33 | public class GetZeroConfiguration { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/RestoreSystemResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "RestoreSystemResponse") 33 | public class RestoreSystemResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/SetAccessPolicyResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "SetAccessPolicyResponse") 33 | public class SetAccessPolicyResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/SetDNSResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "SetDNSResponse") 33 | public class SetDNSResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/SetDPAddressesResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "SetDPAddressesResponse") 33 | public class SetDPAddressesResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/SetDynamicDNSResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "SetDynamicDNSResponse") 33 | public class SetDynamicDNSResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/SetHostnameResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "SetHostnameResponse") 33 | public class SetHostnameResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/SetNTPResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "SetNTPResponse") 33 | public class SetNTPResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/SetRemoteUserResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "SetRemoteUserResponse") 33 | public class SetRemoteUserResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/SetScopesResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "SetScopesResponse") 33 | public class SetScopesResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/SetUserResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "SetUserResponse") 33 | public class SetUserResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/StartFirmwareUpgrade.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "StartFirmwareUpgrade") 33 | public class StartFirmwareUpgrade { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/StartSystemRestore.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "StartSystemRestore") 33 | public class StartSystemRestore { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/StorageType.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for StorageType. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="StorageType">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="NFS"/>
16 |  *     <enumeration value="CIFS"/>
17 |  *     <enumeration value="CDMI"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "StorageType") 24 | @XmlEnum 25 | public enum StorageType { 26 | 27 | 28 | /** 29 | * NFS protocol 30 | * 31 | */ 32 | NFS, 33 | 34 | /** 35 | * CIFS protocol 36 | * 37 | */ 38 | CIFS, 39 | 40 | /** 41 | * CDMI protocol 42 | * 43 | */ 44 | CDMI; 45 | 46 | public String value() { 47 | return name(); 48 | } 49 | 50 | public static StorageType fromValue(String v) { 51 | return valueOf(v); 52 | } 53 | 54 | } 55 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/SystemReboot.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.device.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "SystemReboot") 33 | public class SystemReboot { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/device/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/device/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver10.device.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/deviceio/wsdl/Get.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.deviceio.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | import org.apache.commons.lang3.builder.ToStringBuilder; 8 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 9 | 10 | 11 | /** 12 | *

Java class for Get complex type. 13 | * 14 | *

The following schema fragment specifies the expected content contained within this class. 15 | * 16 | *

17 |  * <complexType name="Get">
18 |  *   <complexContent>
19 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20 |  *       <sequence>
21 |  *       </sequence>
22 |  *     </restriction>
23 |  *   </complexContent>
24 |  * </complexType>
25 |  * 
26 | * 27 | * 28 | */ 29 | @XmlAccessorType(XmlAccessType.FIELD) 30 | @XmlType(name = "Get") 31 | public class Get { 32 | 33 | 34 | /** 35 | * Generates a String representation of the contents of this type. 36 | * This is an extension method, produced by the 'ts' xjc plugin 37 | * 38 | */ 39 | @Override 40 | public String toString() { 41 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 42 | } 43 | 44 | } 45 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/deviceio/wsdl/GetDigitalInputs.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.deviceio.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetDigitalInputs") 33 | public class GetDigitalInputs { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/deviceio/wsdl/GetSerialPorts.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.deviceio.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetSerialPorts") 33 | public class GetSerialPorts { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/deviceio/wsdl/GetServiceCapabilities.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.deviceio.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetServiceCapabilities") 33 | public class GetServiceCapabilities { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/deviceio/wsdl/GetVideoOutputs.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.deviceio.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetVideoOutputs") 33 | public class GetVideoOutputs { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/deviceio/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/deviceIO/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver10.deviceio.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/display/wsdl/GetServiceCapabilities.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.display.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetServiceCapabilities") 33 | public class GetServiceCapabilities { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/display/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/display/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver10.display.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/doorcontrol/wsdl/AccessDoorResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.doorcontrol.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "AccessDoorResponse") 33 | public class AccessDoorResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/doorcontrol/wsdl/BlockDoorResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.doorcontrol.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "BlockDoorResponse") 33 | public class BlockDoorResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/doorcontrol/wsdl/LockDoorResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.doorcontrol.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "LockDoorResponse") 33 | public class LockDoorResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/doorcontrol/wsdl/UnlockDoorResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.doorcontrol.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "UnlockDoorResponse") 33 | public class UnlockDoorResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/doorcontrol/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/doorcontrol/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver10.doorcontrol.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/events/wsdl/GetEventProperties.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.events.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetEventProperties") 33 | public class GetEventProperties { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/events/wsdl/GetServiceCapabilities.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.events.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetServiceCapabilities") 33 | public class GetServiceCapabilities { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/events/wsdl/SeekResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.events.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "SeekResponse") 33 | public class SeekResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/events/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/events/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver10.events.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/media/wsdl/DeleteProfileResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.media.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "DeleteProfileResponse") 33 | public class DeleteProfileResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/media/wsdl/GetAudioOutputs.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.media.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetAudioOutputs") 33 | public class GetAudioOutputs { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/media/wsdl/GetAudioSources.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.media.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetAudioSources") 33 | public class GetAudioSources { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/media/wsdl/GetProfiles.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.media.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetProfiles") 33 | public class GetProfiles { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/media/wsdl/GetServiceCapabilities.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.media.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetServiceCapabilities") 33 | public class GetServiceCapabilities { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/media/wsdl/GetVideoSources.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.media.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetVideoSources") 33 | public class GetVideoSources { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/media/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/media/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver10.media.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/network/wsdl/DiscoveryLookupPort.java: -------------------------------------------------------------------------------- 1 | package org.onvif.ver10.network.wsdl; 2 | 3 | import jakarta.jws.WebMethod; 4 | import jakarta.jws.WebParam; 5 | import jakarta.jws.WebResult; 6 | import jakarta.jws.WebService; 7 | import jakarta.jws.soap.SOAPBinding; 8 | import jakarta.xml.bind.annotation.XmlSeeAlso; 9 | 10 | /** 11 | * This class was generated by Apache CXF 4.0.5 12 | * Generated source version: 4.0.5 13 | * 14 | */ 15 | @WebService(targetNamespace = "http://www.onvif.org/ver10/network/wsdl", name = "DiscoveryLookupPort") 16 | @XmlSeeAlso({org.xmlsoap.schemas.ws._2005._04.discovery.ObjectFactory.class, ObjectFactory.class, org.xmlsoap.schemas.ws._2004._08.addressing.ObjectFactory.class}) 17 | @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) 18 | public interface DiscoveryLookupPort { 19 | 20 | @WebMethod(operationName = "Probe", action = "http://www.onvif.org/ver10/network/wsdl/Probe") 21 | @WebResult(name = "ProbeResponse", targetNamespace = "http://www.onvif.org/ver10/network/wsdl", partName = "parameters") 22 | public org.xmlsoap.schemas.ws._2005._04.discovery.ProbeMatchesType probe( 23 | 24 | @WebParam(partName = "parameters", name = "Probe", targetNamespace = "http://www.onvif.org/ver10/network/wsdl") 25 | org.xmlsoap.schemas.ws._2005._04.discovery.ProbeType parameters 26 | ); 27 | } 28 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/pacs/ObjectFactory.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.pacs; 3 | 4 | import jakarta.xml.bind.annotation.XmlRegistry; 5 | 6 | 7 | /** 8 | * This object contains factory methods for each 9 | * Java content interface and Java element interface 10 | * generated in the org.onvif.ver10.pacs package. 11 | *

An ObjectFactory allows you to programatically 12 | * construct new instances of the Java representation 13 | * for XML content. The Java representation of XML 14 | * content can consist of schema derived interfaces 15 | * and classes representing the binding of schema 16 | * type definitions, element declarations and model 17 | * groups. Factory methods for each of these are 18 | * provided in this class. 19 | * 20 | */ 21 | @XmlRegistry 22 | public class ObjectFactory { 23 | 24 | 25 | /** 26 | * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.onvif.ver10.pacs 27 | * 28 | */ 29 | public ObjectFactory() { 30 | } 31 | 32 | /** 33 | * Create an instance of {@link DataEntity } 34 | * 35 | */ 36 | public DataEntity createDataEntity() { 37 | return new DataEntity(); 38 | } 39 | 40 | } 41 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/pacs/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/pacs") 2 | package org.onvif.ver10.pacs; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/receiver/wsdl/GetReceivers.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.receiver.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetReceivers") 33 | public class GetReceivers { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/receiver/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/receiver/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver10.receiver.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/recording/wsdl/DeleteTrackResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.recording.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "DeleteTrackResponse") 33 | public class DeleteTrackResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/recording/wsdl/GetRecordingJobs.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.recording.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetRecordingJobs") 33 | public class GetRecordingJobs { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/recording/wsdl/GetRecordings.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.recording.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetRecordings") 33 | public class GetRecordings { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/recording/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/recording/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver10.recording.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/replay/wsdl/GetReplayConfiguration.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.replay.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetReplayConfiguration") 33 | public class GetReplayConfiguration { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/replay/wsdl/GetServiceCapabilities.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.replay.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetServiceCapabilities") 33 | public class GetServiceCapabilities { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/replay/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/replay/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver10.replay.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/AudioEncoding.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for AudioEncoding. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="AudioEncoding">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="G711"/>
17 |  *     <enumeration value="G726"/>
18 |  *     <enumeration value="AAC"/>
19 |  *   </restriction>
20 |  * </simpleType>
21 |  * 
22 | * 23 | */ 24 | @XmlType(name = "AudioEncoding") 25 | @XmlEnum 26 | public enum AudioEncoding { 27 | 28 | @XmlEnumValue("G711") 29 | G_711("G711"), 30 | @XmlEnumValue("G726") 31 | G_726("G726"), 32 | AAC("AAC"); 33 | private final String value; 34 | 35 | AudioEncoding(String v) { 36 | value = v; 37 | } 38 | 39 | public String value() { 40 | return value; 41 | } 42 | 43 | public static AudioEncoding fromValue(String v) { 44 | for (AudioEncoding c: AudioEncoding.values()) { 45 | if (c.value.equals(v)) { 46 | return c; 47 | } 48 | } 49 | throw new IllegalArgumentException(v); 50 | } 51 | 52 | } 53 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/AutoFocusMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for AutoFocusMode. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="AutoFocusMode">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="AUTO"/>
16 |  *     <enumeration value="MANUAL"/>
17 |  *   </restriction>
18 |  * </simpleType>
19 |  * 
20 | * 21 | */ 22 | @XmlType(name = "AutoFocusMode") 23 | @XmlEnum 24 | public enum AutoFocusMode { 25 | 26 | AUTO, 27 | MANUAL; 28 | 29 | public String value() { 30 | return name(); 31 | } 32 | 33 | public static AutoFocusMode fromValue(String v) { 34 | return valueOf(v); 35 | } 36 | 37 | } 38 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/BacklightCompensationMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for BacklightCompensationMode. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="BacklightCompensationMode">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="OFF"/>
16 |  *     <enumeration value="ON"/>
17 |  *   </restriction>
18 |  * </simpleType>
19 |  * 
20 | * 21 | */ 22 | @XmlType(name = "BacklightCompensationMode") 23 | @XmlEnum 24 | public enum BacklightCompensationMode { 25 | 26 | 27 | /** 28 | * Backlight compensation is disabled. 29 | * 30 | */ 31 | OFF, 32 | 33 | /** 34 | * Backlight compensation is enabled. 35 | * 36 | */ 37 | ON; 38 | 39 | public String value() { 40 | return name(); 41 | } 42 | 43 | public static BacklightCompensationMode fromValue(String v) { 44 | return valueOf(v); 45 | } 46 | 47 | } 48 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/DefoggingMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for DefoggingMode. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="DefoggingMode">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="OFF"/>
16 |  *     <enumeration value="ON"/>
17 |  *     <enumeration value="AUTO"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "DefoggingMode") 24 | @XmlEnum 25 | public enum DefoggingMode { 26 | 27 | OFF, 28 | ON, 29 | AUTO; 30 | 31 | public String value() { 32 | return name(); 33 | } 34 | 35 | public static DefoggingMode fromValue(String v) { 36 | return valueOf(v); 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/DigitalIdleState.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for DigitalIdleState. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="DigitalIdleState">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="closed"/>
17 |  *     <enumeration value="open"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "DigitalIdleState") 24 | @XmlEnum 25 | public enum DigitalIdleState { 26 | 27 | @XmlEnumValue("closed") 28 | CLOSED("closed"), 29 | @XmlEnumValue("open") 30 | OPEN("open"); 31 | private final String value; 32 | 33 | DigitalIdleState(String v) { 34 | value = v; 35 | } 36 | 37 | public String value() { 38 | return value; 39 | } 40 | 41 | public static DigitalIdleState fromValue(String v) { 42 | for (DigitalIdleState c: DigitalIdleState.values()) { 43 | if (c.value.equals(v)) { 44 | return c; 45 | } 46 | } 47 | throw new IllegalArgumentException(v); 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/Direction.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for Direction. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="Direction">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="Left"/>
17 |  *     <enumeration value="Right"/>
18 |  *     <enumeration value="Any"/>
19 |  *   </restriction>
20 |  * </simpleType>
21 |  * 
22 | * 23 | */ 24 | @XmlType(name = "Direction") 25 | @XmlEnum 26 | public enum Direction { 27 | 28 | @XmlEnumValue("Left") 29 | LEFT("Left"), 30 | @XmlEnumValue("Right") 31 | RIGHT("Right"), 32 | @XmlEnumValue("Any") 33 | ANY("Any"); 34 | private final String value; 35 | 36 | Direction(String v) { 37 | value = v; 38 | } 39 | 40 | public String value() { 41 | return value; 42 | } 43 | 44 | public static Direction fromValue(String v) { 45 | for (Direction c: Direction.values()) { 46 | if (c.value.equals(v)) { 47 | return c; 48 | } 49 | } 50 | throw new IllegalArgumentException(v); 51 | } 52 | 53 | } 54 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/DiscoveryMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for DiscoveryMode. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="DiscoveryMode">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="Discoverable"/>
17 |  *     <enumeration value="NonDiscoverable"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "DiscoveryMode") 24 | @XmlEnum 25 | public enum DiscoveryMode { 26 | 27 | @XmlEnumValue("Discoverable") 28 | DISCOVERABLE("Discoverable"), 29 | @XmlEnumValue("NonDiscoverable") 30 | NON_DISCOVERABLE("NonDiscoverable"); 31 | private final String value; 32 | 33 | DiscoveryMode(String v) { 34 | value = v; 35 | } 36 | 37 | public String value() { 38 | return value; 39 | } 40 | 41 | public static DiscoveryMode fromValue(String v) { 42 | for (DiscoveryMode c: DiscoveryMode.values()) { 43 | if (c.value.equals(v)) { 44 | return c; 45 | } 46 | } 47 | throw new IllegalArgumentException(v); 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/Duplex.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for Duplex. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="Duplex">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="Full"/>
17 |  *     <enumeration value="Half"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "Duplex") 24 | @XmlEnum 25 | public enum Duplex { 26 | 27 | @XmlEnumValue("Full") 28 | FULL("Full"), 29 | @XmlEnumValue("Half") 30 | HALF("Half"); 31 | private final String value; 32 | 33 | Duplex(String v) { 34 | value = v; 35 | } 36 | 37 | public String value() { 38 | return value; 39 | } 40 | 41 | public static Duplex fromValue(String v) { 42 | for (Duplex c: Duplex.values()) { 43 | if (c.value.equals(v)) { 44 | return c; 45 | } 46 | } 47 | throw new IllegalArgumentException(v); 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/EFlipMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for EFlipMode. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="EFlipMode">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="OFF"/>
17 |  *     <enumeration value="ON"/>
18 |  *     <enumeration value="Extended"/>
19 |  *   </restriction>
20 |  * </simpleType>
21 |  * 
22 | * 23 | */ 24 | @XmlType(name = "EFlipMode") 25 | @XmlEnum 26 | public enum EFlipMode { 27 | 28 | OFF("OFF"), 29 | ON("ON"), 30 | @XmlEnumValue("Extended") 31 | EXTENDED("Extended"); 32 | private final String value; 33 | 34 | EFlipMode(String v) { 35 | value = v; 36 | } 37 | 38 | public String value() { 39 | return value; 40 | } 41 | 42 | public static EFlipMode fromValue(String v) { 43 | for (EFlipMode c: EFlipMode.values()) { 44 | if (c.value.equals(v)) { 45 | return c; 46 | } 47 | } 48 | throw new IllegalArgumentException(v); 49 | } 50 | 51 | } 52 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/Enabled.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for Enabled. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="Enabled">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="ENABLED"/>
16 |  *     <enumeration value="DISABLED"/>
17 |  *   </restriction>
18 |  * </simpleType>
19 |  * 
20 | * 21 | */ 22 | @XmlType(name = "Enabled") 23 | @XmlEnum 24 | public enum Enabled { 25 | 26 | ENABLED, 27 | DISABLED; 28 | 29 | public String value() { 30 | return name(); 31 | } 32 | 33 | public static Enabled fromValue(String v) { 34 | return valueOf(v); 35 | } 36 | 37 | } 38 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/ExposureMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for ExposureMode. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="ExposureMode">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="AUTO"/>
16 |  *     <enumeration value="MANUAL"/>
17 |  *   </restriction>
18 |  * </simpleType>
19 |  * 
20 | * 21 | */ 22 | @XmlType(name = "ExposureMode") 23 | @XmlEnum 24 | public enum ExposureMode { 25 | 26 | AUTO, 27 | MANUAL; 28 | 29 | public String value() { 30 | return name(); 31 | } 32 | 33 | public static ExposureMode fromValue(String v) { 34 | return valueOf(v); 35 | } 36 | 37 | } 38 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/ExposurePriority.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for ExposurePriority. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="ExposurePriority">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="LowNoise"/>
17 |  *     <enumeration value="FrameRate"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "ExposurePriority") 24 | @XmlEnum 25 | public enum ExposurePriority { 26 | 27 | @XmlEnumValue("LowNoise") 28 | LOW_NOISE("LowNoise"), 29 | @XmlEnumValue("FrameRate") 30 | FRAME_RATE("FrameRate"); 31 | private final String value; 32 | 33 | ExposurePriority(String v) { 34 | value = v; 35 | } 36 | 37 | public String value() { 38 | return value; 39 | } 40 | 41 | public static ExposurePriority fromValue(String v) { 42 | for (ExposurePriority c: ExposurePriority.values()) { 43 | if (c.value.equals(v)) { 44 | return c; 45 | } 46 | } 47 | throw new IllegalArgumentException(v); 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/IPAddressFilterType.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for IPAddressFilterType. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="IPAddressFilterType">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="Allow"/>
17 |  *     <enumeration value="Deny"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "IPAddressFilterType") 24 | @XmlEnum 25 | public enum IPAddressFilterType { 26 | 27 | @XmlEnumValue("Allow") 28 | ALLOW("Allow"), 29 | @XmlEnumValue("Deny") 30 | DENY("Deny"); 31 | private final String value; 32 | 33 | IPAddressFilterType(String v) { 34 | value = v; 35 | } 36 | 37 | public String value() { 38 | return value; 39 | } 40 | 41 | public static IPAddressFilterType fromValue(String v) { 42 | for (IPAddressFilterType c: IPAddressFilterType.values()) { 43 | if (c.value.equals(v)) { 44 | return c; 45 | } 46 | } 47 | throw new IllegalArgumentException(v); 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/IPType.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for IPType. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="IPType">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="IPv4"/>
17 |  *     <enumeration value="IPv6"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "IPType") 24 | @XmlEnum 25 | public enum IPType { 26 | 27 | @XmlEnumValue("IPv4") 28 | I_PV_4("IPv4"), 29 | @XmlEnumValue("IPv6") 30 | I_PV_6("IPv6"); 31 | private final String value; 32 | 33 | IPType(String v) { 34 | value = v; 35 | } 36 | 37 | public String value() { 38 | return value; 39 | } 40 | 41 | public static IPType fromValue(String v) { 42 | for (IPType c: IPType.values()) { 43 | if (c.value.equals(v)) { 44 | return c; 45 | } 46 | } 47 | throw new IllegalArgumentException(v); 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/IrCutFilterMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for IrCutFilterMode. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="IrCutFilterMode">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="ON"/>
16 |  *     <enumeration value="OFF"/>
17 |  *     <enumeration value="AUTO"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "IrCutFilterMode") 24 | @XmlEnum 25 | public enum IrCutFilterMode { 26 | 27 | ON, 28 | OFF, 29 | AUTO; 30 | 31 | public String value() { 32 | return name(); 33 | } 34 | 35 | public static IrCutFilterMode fromValue(String v) { 36 | return valueOf(v); 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/MoveStatus.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for MoveStatus. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="MoveStatus">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="IDLE"/>
16 |  *     <enumeration value="MOVING"/>
17 |  *     <enumeration value="UNKNOWN"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "MoveStatus") 24 | @XmlEnum 25 | public enum MoveStatus { 26 | 27 | IDLE, 28 | MOVING, 29 | UNKNOWN; 30 | 31 | public String value() { 32 | return name(); 33 | } 34 | 35 | public static MoveStatus fromValue(String v) { 36 | return valueOf(v); 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/Mpeg4Profile.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for Mpeg4Profile. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="Mpeg4Profile">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="SP"/>
16 |  *     <enumeration value="ASP"/>
17 |  *   </restriction>
18 |  * </simpleType>
19 |  * 
20 | * 21 | */ 22 | @XmlType(name = "Mpeg4Profile") 23 | @XmlEnum 24 | public enum Mpeg4Profile { 25 | 26 | SP, 27 | ASP; 28 | 29 | public String value() { 30 | return name(); 31 | } 32 | 33 | public static Mpeg4Profile fromValue(String v) { 34 | return valueOf(v); 35 | } 36 | 37 | } 38 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/NetworkHostType.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for NetworkHostType. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="NetworkHostType">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="IPv4"/>
17 |  *     <enumeration value="IPv6"/>
18 |  *     <enumeration value="DNS"/>
19 |  *   </restriction>
20 |  * </simpleType>
21 |  * 
22 | * 23 | */ 24 | @XmlType(name = "NetworkHostType") 25 | @XmlEnum 26 | public enum NetworkHostType { 27 | 28 | @XmlEnumValue("IPv4") 29 | I_PV_4("IPv4"), 30 | @XmlEnumValue("IPv6") 31 | I_PV_6("IPv6"), 32 | DNS("DNS"); 33 | private final String value; 34 | 35 | NetworkHostType(String v) { 36 | value = v; 37 | } 38 | 39 | public String value() { 40 | return value; 41 | } 42 | 43 | public static NetworkHostType fromValue(String v) { 44 | for (NetworkHostType c: NetworkHostType.values()) { 45 | if (c.value.equals(v)) { 46 | return c; 47 | } 48 | } 49 | throw new IllegalArgumentException(v); 50 | } 51 | 52 | } 53 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/NetworkProtocolType.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for NetworkProtocolType. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="NetworkProtocolType">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="HTTP"/>
16 |  *     <enumeration value="HTTPS"/>
17 |  *     <enumeration value="RTSP"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "NetworkProtocolType") 24 | @XmlEnum 25 | public enum NetworkProtocolType { 26 | 27 | HTTP, 28 | HTTPS, 29 | RTSP; 30 | 31 | public String value() { 32 | return name(); 33 | } 34 | 35 | public static NetworkProtocolType fromValue(String v) { 36 | return valueOf(v); 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/OSDType.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for OSDType. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="OSDType">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="Text"/>
17 |  *     <enumeration value="Image"/>
18 |  *     <enumeration value="Extended"/>
19 |  *   </restriction>
20 |  * </simpleType>
21 |  * 
22 | * 23 | */ 24 | @XmlType(name = "OSDType") 25 | @XmlEnum 26 | public enum OSDType { 27 | 28 | @XmlEnumValue("Text") 29 | TEXT("Text"), 30 | @XmlEnumValue("Image") 31 | IMAGE("Image"), 32 | @XmlEnumValue("Extended") 33 | EXTENDED("Extended"); 34 | private final String value; 35 | 36 | OSDType(String v) { 37 | value = v; 38 | } 39 | 40 | public String value() { 41 | return value; 42 | } 43 | 44 | public static OSDType fromValue(String v) { 45 | for (OSDType c: OSDType.values()) { 46 | if (c.value.equals(v)) { 47 | return c; 48 | } 49 | } 50 | throw new IllegalArgumentException(v); 51 | } 52 | 53 | } 54 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/RelayIdleState.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for RelayIdleState. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="RelayIdleState">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="closed"/>
17 |  *     <enumeration value="open"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "RelayIdleState") 24 | @XmlEnum 25 | public enum RelayIdleState { 26 | 27 | @XmlEnumValue("closed") 28 | CLOSED("closed"), 29 | @XmlEnumValue("open") 30 | OPEN("open"); 31 | private final String value; 32 | 33 | RelayIdleState(String v) { 34 | value = v; 35 | } 36 | 37 | public String value() { 38 | return value; 39 | } 40 | 41 | public static RelayIdleState fromValue(String v) { 42 | for (RelayIdleState c: RelayIdleState.values()) { 43 | if (c.value.equals(v)) { 44 | return c; 45 | } 46 | } 47 | throw new IllegalArgumentException(v); 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/RelayLogicalState.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for RelayLogicalState. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="RelayLogicalState">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="active"/>
17 |  *     <enumeration value="inactive"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "RelayLogicalState") 24 | @XmlEnum 25 | public enum RelayLogicalState { 26 | 27 | @XmlEnumValue("active") 28 | ACTIVE("active"), 29 | @XmlEnumValue("inactive") 30 | INACTIVE("inactive"); 31 | private final String value; 32 | 33 | RelayLogicalState(String v) { 34 | value = v; 35 | } 36 | 37 | public String value() { 38 | return value; 39 | } 40 | 41 | public static RelayLogicalState fromValue(String v) { 42 | for (RelayLogicalState c: RelayLogicalState.values()) { 43 | if (c.value.equals(v)) { 44 | return c; 45 | } 46 | } 47 | throw new IllegalArgumentException(v); 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/RelayMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for RelayMode. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="RelayMode">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="Monostable"/>
17 |  *     <enumeration value="Bistable"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "RelayMode") 24 | @XmlEnum 25 | public enum RelayMode { 26 | 27 | @XmlEnumValue("Monostable") 28 | MONOSTABLE("Monostable"), 29 | @XmlEnumValue("Bistable") 30 | BISTABLE("Bistable"); 31 | private final String value; 32 | 33 | RelayMode(String v) { 34 | value = v; 35 | } 36 | 37 | public String value() { 38 | return value; 39 | } 40 | 41 | public static RelayMode fromValue(String v) { 42 | for (RelayMode c: RelayMode.values()) { 43 | if (c.value.equals(v)) { 44 | return c; 45 | } 46 | } 47 | throw new IllegalArgumentException(v); 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/ReverseMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for ReverseMode. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="ReverseMode">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="OFF"/>
17 |  *     <enumeration value="ON"/>
18 |  *     <enumeration value="AUTO"/>
19 |  *     <enumeration value="Extended"/>
20 |  *   </restriction>
21 |  * </simpleType>
22 |  * 
23 | * 24 | */ 25 | @XmlType(name = "ReverseMode") 26 | @XmlEnum 27 | public enum ReverseMode { 28 | 29 | OFF("OFF"), 30 | ON("ON"), 31 | AUTO("AUTO"), 32 | @XmlEnumValue("Extended") 33 | EXTENDED("Extended"); 34 | private final String value; 35 | 36 | ReverseMode(String v) { 37 | value = v; 38 | } 39 | 40 | public String value() { 41 | return value; 42 | } 43 | 44 | public static ReverseMode fromValue(String v) { 45 | for (ReverseMode c: ReverseMode.values()) { 46 | if (c.value.equals(v)) { 47 | return c; 48 | } 49 | } 50 | throw new IllegalArgumentException(v); 51 | } 52 | 53 | } 54 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/RotateMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for RotateMode. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="RotateMode">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="OFF"/>
16 |  *     <enumeration value="ON"/>
17 |  *     <enumeration value="AUTO"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "RotateMode") 24 | @XmlEnum 25 | public enum RotateMode { 26 | 27 | OFF, 28 | ON, 29 | AUTO; 30 | 31 | public String value() { 32 | return name(); 33 | } 34 | 35 | public static RotateMode fromValue(String v) { 36 | return valueOf(v); 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/ScopeDefinition.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for ScopeDefinition. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="ScopeDefinition">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="Fixed"/>
17 |  *     <enumeration value="Configurable"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "ScopeDefinition") 24 | @XmlEnum 25 | public enum ScopeDefinition { 26 | 27 | @XmlEnumValue("Fixed") 28 | FIXED("Fixed"), 29 | @XmlEnumValue("Configurable") 30 | CONFIGURABLE("Configurable"); 31 | private final String value; 32 | 33 | ScopeDefinition(String v) { 34 | value = v; 35 | } 36 | 37 | public String value() { 38 | return value; 39 | } 40 | 41 | public static ScopeDefinition fromValue(String v) { 42 | for (ScopeDefinition c: ScopeDefinition.values()) { 43 | if (c.value.equals(v)) { 44 | return c; 45 | } 46 | } 47 | throw new IllegalArgumentException(v); 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/StreamType.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for StreamType. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="StreamType">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="RTP-Unicast"/>
17 |  *     <enumeration value="RTP-Multicast"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "StreamType") 24 | @XmlEnum 25 | public enum StreamType { 26 | 27 | @XmlEnumValue("RTP-Unicast") 28 | RTP_UNICAST("RTP-Unicast"), 29 | @XmlEnumValue("RTP-Multicast") 30 | RTP_MULTICAST("RTP-Multicast"); 31 | private final String value; 32 | 33 | StreamType(String v) { 34 | value = v; 35 | } 36 | 37 | public String value() { 38 | return value; 39 | } 40 | 41 | public static StreamType fromValue(String v) { 42 | for (StreamType c: StreamType.values()) { 43 | if (c.value.equals(v)) { 44 | return c; 45 | } 46 | } 47 | throw new IllegalArgumentException(v); 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/ToneCompensationMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for ToneCompensationMode. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="ToneCompensationMode">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="OFF"/>
16 |  *     <enumeration value="ON"/>
17 |  *     <enumeration value="AUTO"/>
18 |  *   </restriction>
19 |  * </simpleType>
20 |  * 
21 | * 22 | */ 23 | @XmlType(name = "ToneCompensationMode") 24 | @XmlEnum 25 | public enum ToneCompensationMode { 26 | 27 | OFF, 28 | ON, 29 | AUTO; 30 | 31 | public String value() { 32 | return name(); 33 | } 34 | 35 | public static ToneCompensationMode fromValue(String v) { 36 | return valueOf(v); 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/TransportProtocol.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for TransportProtocol. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="TransportProtocol">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="UDP"/>
16 |  *     <enumeration value="TCP"/>
17 |  *     <enumeration value="RTSP"/>
18 |  *     <enumeration value="HTTP"/>
19 |  *   </restriction>
20 |  * </simpleType>
21 |  * 
22 | * 23 | */ 24 | @XmlType(name = "TransportProtocol") 25 | @XmlEnum 26 | public enum TransportProtocol { 27 | 28 | UDP, 29 | TCP, 30 | RTSP, 31 | HTTP; 32 | 33 | public String value() { 34 | return name(); 35 | } 36 | 37 | public static TransportProtocol fromValue(String v) { 38 | return valueOf(v); 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/VideoEncoding.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlEnumValue; 6 | import jakarta.xml.bind.annotation.XmlType; 7 | 8 | 9 | /** 10 | *

Java class for VideoEncoding. 11 | * 12 | *

The following schema fragment specifies the expected content contained within this class. 13 | *

14 |  * <simpleType name="VideoEncoding">
15 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16 |  *     <enumeration value="JPEG"/>
17 |  *     <enumeration value="MPEG4"/>
18 |  *     <enumeration value="H264"/>
19 |  *   </restriction>
20 |  * </simpleType>
21 |  * 
22 | * 23 | */ 24 | @XmlType(name = "VideoEncoding") 25 | @XmlEnum 26 | public enum VideoEncoding { 27 | 28 | JPEG("JPEG"), 29 | @XmlEnumValue("MPEG4") 30 | MPEG_4("MPEG4"), 31 | @XmlEnumValue("H264") 32 | H_264("H264"); 33 | private final String value; 34 | 35 | VideoEncoding(String v) { 36 | value = v; 37 | } 38 | 39 | public String value() { 40 | return value; 41 | } 42 | 43 | public static VideoEncoding fromValue(String v) { 44 | for (VideoEncoding c: VideoEncoding.values()) { 45 | if (c.value.equals(v)) { 46 | return c; 47 | } 48 | } 49 | throw new IllegalArgumentException(v); 50 | } 51 | 52 | } 53 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/WhiteBalanceMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for WhiteBalanceMode. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="WhiteBalanceMode">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="AUTO"/>
16 |  *     <enumeration value="MANUAL"/>
17 |  *   </restriction>
18 |  * </simpleType>
19 |  * 
20 | * 21 | */ 22 | @XmlType(name = "WhiteBalanceMode") 23 | @XmlEnum 24 | public enum WhiteBalanceMode { 25 | 26 | AUTO, 27 | MANUAL; 28 | 29 | public String value() { 30 | return name(); 31 | } 32 | 33 | public static WhiteBalanceMode fromValue(String v) { 34 | return valueOf(v); 35 | } 36 | 37 | } 38 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/WideDynamicMode.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.schema; 3 | 4 | import jakarta.xml.bind.annotation.XmlEnum; 5 | import jakarta.xml.bind.annotation.XmlType; 6 | 7 | 8 | /** 9 | *

Java class for WideDynamicMode. 10 | * 11 | *

The following schema fragment specifies the expected content contained within this class. 12 | *

13 |  * <simpleType name="WideDynamicMode">
14 |  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
15 |  *     <enumeration value="OFF"/>
16 |  *     <enumeration value="ON"/>
17 |  *   </restriction>
18 |  * </simpleType>
19 |  * 
20 | * 21 | */ 22 | @XmlType(name = "WideDynamicMode") 23 | @XmlEnum 24 | public enum WideDynamicMode { 25 | 26 | OFF, 27 | ON; 28 | 29 | public String value() { 30 | return name(); 31 | } 32 | 33 | public static WideDynamicMode fromValue(String v) { 34 | return valueOf(v); 35 | } 36 | 37 | } 38 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/schema/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/schema", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver10.schema; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/search/wsdl/GetRecordingSummary.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.search.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetRecordingSummary") 33 | public class GetRecordingSummary { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/search/wsdl/GetServiceCapabilities.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver10.search.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetServiceCapabilities") 33 | public class GetServiceCapabilities { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver10/search/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/search/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver10.search.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/imaging/wsdl/MoveResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.imaging.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "MoveResponse") 33 | public class MoveResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/imaging/wsdl/SetImagingSettingsResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.imaging.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *     </restriction>
22 |  *   </complexContent>
23 |  * </complexType>
24 |  * 
25 | * 26 | * 27 | */ 28 | @XmlAccessorType(XmlAccessType.FIELD) 29 | @XmlType(name = "") 30 | @XmlRootElement(name = "SetImagingSettingsResponse") 31 | public class SetImagingSettingsResponse { 32 | 33 | 34 | /** 35 | * Generates a String representation of the contents of this type. 36 | * This is an extension method, produced by the 'ts' xjc plugin 37 | * 38 | */ 39 | @Override 40 | public String toString() { 41 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 42 | } 43 | 44 | } 45 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/imaging/wsdl/StopResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.imaging.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "StopResponse") 33 | public class StopResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/imaging/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver20/imaging/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver20.imaging.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/ptz/wsdl/AbsoluteMoveResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.ptz.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "AbsoluteMoveResponse") 33 | public class AbsoluteMoveResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/ptz/wsdl/ContinuousMoveResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.ptz.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "ContinuousMoveResponse") 33 | public class ContinuousMoveResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/ptz/wsdl/GetConfigurations.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.ptz.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *     </restriction>
22 |  *   </complexContent>
23 |  * </complexType>
24 |  * 
25 | * 26 | * 27 | */ 28 | @XmlAccessorType(XmlAccessType.FIELD) 29 | @XmlType(name = "") 30 | @XmlRootElement(name = "GetConfigurations") 31 | public class GetConfigurations { 32 | 33 | 34 | /** 35 | * Generates a String representation of the contents of this type. 36 | * This is an extension method, produced by the 'ts' xjc plugin 37 | * 38 | */ 39 | @Override 40 | public String toString() { 41 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 42 | } 43 | 44 | } 45 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/ptz/wsdl/GetNodes.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.ptz.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *     </restriction>
22 |  *   </complexContent>
23 |  * </complexType>
24 |  * 
25 | * 26 | * 27 | */ 28 | @XmlAccessorType(XmlAccessType.FIELD) 29 | @XmlType(name = "") 30 | @XmlRootElement(name = "GetNodes") 31 | public class GetNodes { 32 | 33 | 34 | /** 35 | * Generates a String representation of the contents of this type. 36 | * This is an extension method, produced by the 'ts' xjc plugin 37 | * 38 | */ 39 | @Override 40 | public String toString() { 41 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 42 | } 43 | 44 | } 45 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/ptz/wsdl/GetServiceCapabilities.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.ptz.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GetServiceCapabilities") 33 | public class GetServiceCapabilities { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/ptz/wsdl/GotoHomePositionResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.ptz.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "GotoHomePositionResponse") 33 | public class GotoHomePositionResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/ptz/wsdl/GotoPresetResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.ptz.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *     </restriction>
22 |  *   </complexContent>
23 |  * </complexType>
24 |  * 
25 | * 26 | * 27 | */ 28 | @XmlAccessorType(XmlAccessType.FIELD) 29 | @XmlType(name = "") 30 | @XmlRootElement(name = "GotoPresetResponse") 31 | public class GotoPresetResponse { 32 | 33 | 34 | /** 35 | * Generates a String representation of the contents of this type. 36 | * This is an extension method, produced by the 'ts' xjc plugin 37 | * 38 | */ 39 | @Override 40 | public String toString() { 41 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 42 | } 43 | 44 | } 45 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/ptz/wsdl/ModifyPresetTourResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.ptz.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "ModifyPresetTourResponse") 33 | public class ModifyPresetTourResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/ptz/wsdl/RelativeMoveResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.ptz.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "RelativeMoveResponse") 33 | public class RelativeMoveResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/ptz/wsdl/RemovePresetResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.ptz.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *     </restriction>
22 |  *   </complexContent>
23 |  * </complexType>
24 |  * 
25 | * 26 | * 27 | */ 28 | @XmlAccessorType(XmlAccessType.FIELD) 29 | @XmlType(name = "") 30 | @XmlRootElement(name = "RemovePresetResponse") 31 | public class RemovePresetResponse { 32 | 33 | 34 | /** 35 | * Generates a String representation of the contents of this type. 36 | * This is an extension method, produced by the 'ts' xjc plugin 37 | * 38 | */ 39 | @Override 40 | public String toString() { 41 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 42 | } 43 | 44 | } 45 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/ptz/wsdl/RemovePresetTourResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.ptz.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "RemovePresetTourResponse") 33 | public class RemovePresetTourResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/ptz/wsdl/SetHomePositionResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.ptz.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "SetHomePositionResponse") 33 | public class SetHomePositionResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/ptz/wsdl/StopResponse.java: -------------------------------------------------------------------------------- 1 | 2 | package org.onvif.ver20.ptz.wsdl; 3 | 4 | import jakarta.xml.bind.annotation.XmlAccessType; 5 | import jakarta.xml.bind.annotation.XmlAccessorType; 6 | import jakarta.xml.bind.annotation.XmlRootElement; 7 | import jakarta.xml.bind.annotation.XmlType; 8 | import org.apache.commons.lang3.builder.ToStringBuilder; 9 | import org.apache.cxf.xjc.runtime.JAXBToStringStyle; 10 | 11 | 12 | /** 13 | *

Java class for anonymous complex type. 14 | * 15 | *

The following schema fragment specifies the expected content contained within this class. 16 | * 17 | *

18 |  * <complexType>
19 |  *   <complexContent>
20 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 |  *       <sequence>
22 |  *       </sequence>
23 |  *     </restriction>
24 |  *   </complexContent>
25 |  * </complexType>
26 |  * 
27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "") 32 | @XmlRootElement(name = "StopResponse") 33 | public class StopResponse { 34 | 35 | 36 | /** 37 | * Generates a String representation of the contents of this type. 38 | * This is an extension method, produced by the 'ts' xjc plugin 39 | * 40 | */ 41 | @Override 42 | public String toString() { 43 | return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/onvif/ver20/ptz/wsdl/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver20/ptz/wsdl", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.onvif.ver20.ptz.wsdl; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/w3/_2003/_05/soap_envelope/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/2003/05/soap-envelope", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.w3._2003._05.soap_envelope; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/w3/_2004/_08/xop/include/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/2004/08/xop/include") 2 | package org.w3._2004._08.xop.include; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/w3/_2005/_05/xmlmime/ObjectFactory.java: -------------------------------------------------------------------------------- 1 | 2 | package org.w3._2005._05.xmlmime; 3 | 4 | import jakarta.xml.bind.annotation.XmlRegistry; 5 | 6 | 7 | /** 8 | * This object contains factory methods for each 9 | * Java content interface and Java element interface 10 | * generated in the org.w3._2005._05.xmlmime package. 11 | *

An ObjectFactory allows you to programatically 12 | * construct new instances of the Java representation 13 | * for XML content. The Java representation of XML 14 | * content can consist of schema derived interfaces 15 | * and classes representing the binding of schema 16 | * type definitions, element declarations and model 17 | * groups. Factory methods for each of these are 18 | * provided in this class. 19 | * 20 | */ 21 | @XmlRegistry 22 | public class ObjectFactory { 23 | 24 | 25 | /** 26 | * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.w3._2005._05.xmlmime 27 | * 28 | */ 29 | public ObjectFactory() { 30 | } 31 | 32 | /** 33 | * Create an instance of {@link Base64Binary } 34 | * 35 | */ 36 | public Base64Binary createBase64Binary() { 37 | return new Base64Binary(); 38 | } 39 | 40 | /** 41 | * Create an instance of {@link HexBinary } 42 | * 43 | */ 44 | public HexBinary createHexBinary() { 45 | return new HexBinary(); 46 | } 47 | 48 | } 49 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/w3/_2005/_05/xmlmime/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/2005/05/xmlmime") 2 | package org.w3._2005._05.xmlmime; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/xmlsoap/schemas/ws/_2004/_08/addressing/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.xmlsoap.schemas.ws._2004._08.addressing; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/java/org/xmlsoap/schemas/ws/_2005/_04/discovery/package-info.java: -------------------------------------------------------------------------------- 1 | @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://schemas.xmlsoap.org/ws/2005/04/discovery", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package org.xmlsoap.schemas.ws._2005._04.discovery; 3 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/resources/wsdl/jax-ws-catalog.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 13 | 14 | 16 | 18 | 20 | -------------------------------------------------------------------------------- /onvif-ws-client/src/main/resources/wsdl/local/www.w3.org/2004/08/xop/include: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | /* 2 | * This file was generated by the Gradle 'init' task. 3 | */ 4 | 5 | rootProject.name = 'onvif' 6 | include 'onvif-java', 'onvif-ws-client' 7 | --------------------------------------------------------------------------------