Repository: milg0/onvif-java-lib Branch: master Commit: 040671809ee3 Files: 1181 Total size: 3.4 MB Directory structure: gitextract_miw2u1a7/ ├── .classpath ├── .gitignore ├── .project ├── .settings/ │ └── org.eclipse.jdt.core.prefs ├── Desc.jardesc ├── Desc_sources.jardesc ├── LICENSE.txt ├── README.md ├── lib/ │ ├── commons-codec-1.9-javadoc.jar │ ├── commons-codec-1.9-sources.jar │ ├── commons-codec-1.9.jar │ └── javaWsDiscovery-0.1.jar ├── manifest.mf ├── release/ │ ├── onvif-2014-08-25-sources.jar │ ├── onvif-2014-08-25.jar │ ├── onvif-2014-09-16-sources.jar │ ├── onvif-2014-09-16.jar │ ├── onvif-2014-09-21-sources.jar │ ├── onvif-2014-09-21.jar │ ├── onvif-2014-10-30-sources.jar │ ├── onvif-2014-10-30.jar │ ├── onvif-2014-12-15-sources.jar │ ├── onvif-2014-12-15.jar │ ├── onvif-2015-06-25-sources.jar │ ├── onvif-2015-06-25.jar │ ├── onvif-2015-08-14-sources.jar │ ├── onvif-2015-08-14.jar │ ├── onvif-2016-01-22-sources.jar │ ├── onvif-2016-01-22.jar │ ├── onvif-2016-02-02-sources.jar │ ├── onvif-2016-02-02.jar │ ├── onvif-2016-02-05.jar │ ├── onvif-2016-02-17.jar │ └── onvif-2016-03-16.jar └── src/ ├── de/ │ └── onvif/ │ ├── Main.java │ ├── discovery/ │ │ ├── OnvifDiscovery.java │ │ └── OnvifPointer.java │ ├── log/ │ │ └── Logger.java │ └── soap/ │ ├── OnvifDevice.java │ ├── SOAP.java │ └── devices/ │ ├── ImagingDevices.java │ ├── InitialDevices.java │ ├── MediaDevices.java │ └── PtzDevices.java └── 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 │ │ └── 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 ├── onvif/ │ ├── ver10/ │ │ ├── device/ │ │ │ └── wsdl/ │ │ │ ├── AddIPAddressFilter.java │ │ │ ├── AddIPAddressFilterResponse.java │ │ │ ├── AddScopes.java │ │ │ ├── AddScopesResponse.java │ │ │ ├── CreateCertificate.java │ │ │ ├── CreateCertificateResponse.java │ │ │ ├── CreateDot1XConfiguration.java │ │ │ ├── CreateDot1XConfigurationResponse.java │ │ │ ├── CreateUsers.java │ │ │ ├── CreateUsersResponse.java │ │ │ ├── DeleteCertificates.java │ │ │ ├── DeleteCertificatesResponse.java │ │ │ ├── DeleteDot1XConfiguration.java │ │ │ ├── DeleteDot1XConfigurationResponse.java │ │ │ ├── DeleteUsers.java │ │ │ ├── DeleteUsersResponse.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 │ │ │ ├── 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 │ │ │ ├── SetSystemDateAndTime.java │ │ │ ├── SetSystemDateAndTimeResponse.java │ │ │ ├── SetSystemFactoryDefault.java │ │ │ ├── SetSystemFactoryDefaultResponse.java │ │ │ ├── SetUser.java │ │ │ ├── SetUserResponse.java │ │ │ ├── SetZeroConfiguration.java │ │ │ ├── SetZeroConfigurationResponse.java │ │ │ ├── StartFirmwareUpgrade.java │ │ │ ├── StartFirmwareUpgradeResponse.java │ │ │ ├── StartSystemRestore.java │ │ │ ├── StartSystemRestoreResponse.java │ │ │ ├── SystemCapabilities.java │ │ │ ├── SystemReboot.java │ │ │ ├── SystemRebootResponse.java │ │ │ ├── UpgradeSystemFirmware.java │ │ │ ├── UpgradeSystemFirmwareResponse.java │ │ │ └── package-info.java │ │ ├── events/ │ │ │ └── wsdl/ │ │ │ ├── Capabilities.java │ │ │ ├── CreatePullPointSubscription.java │ │ │ ├── CreatePullPointSubscriptionResponse.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 │ │ │ ├── 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 │ │ └── 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 │ └── 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 │ │ ├── Move.java │ │ ├── MoveResponse.java │ │ ├── ObjectFactory.java │ │ ├── SetImagingSettings.java │ │ ├── SetImagingSettingsResponse.java │ │ ├── Stop.java │ │ ├── StopResponse.java │ │ └── package-info.java │ ├── media/ │ │ └── wsdl/ │ │ ├── AddConfiguration.java │ │ ├── AddConfigurationResponse.java │ │ ├── Capabilities2.java │ │ ├── ConfigurationEnumeration.java │ │ ├── ConfigurationRef.java │ │ ├── ConfigurationSet.java │ │ ├── CreateOSD.java │ │ ├── CreateOSDResponse.java │ │ ├── CreateProfile.java │ │ ├── CreateProfileResponse.java │ │ ├── DeleteOSD.java │ │ ├── DeleteProfile.java │ │ ├── DeleteProfileResponse.java │ │ ├── GetAnalyticsConfigurationsResponse.java │ │ ├── GetAudioDecoderConfigurationOptionsResponse.java │ │ ├── GetAudioDecoderConfigurationsResponse.java │ │ ├── GetAudioEncoderConfigurationOptionsResponse.java │ │ ├── GetAudioEncoderConfigurationsResponse.java │ │ ├── GetAudioOutputConfigurationOptionsResponse.java │ │ ├── GetAudioOutputConfigurationsResponse.java │ │ ├── GetAudioSourceConfigurationOptionsResponse.java │ │ ├── GetAudioSourceConfigurationsResponse.java │ │ ├── GetConfiguration.java │ │ ├── GetMetadataConfigurationOptionsResponse.java │ │ ├── GetMetadataConfigurationsResponse.java │ │ ├── GetOSDOptions.java │ │ ├── GetOSDOptionsResponse.java │ │ ├── GetOSDs.java │ │ ├── GetOSDsResponse.java │ │ ├── GetProfiles.java │ │ ├── GetProfilesResponse.java │ │ ├── GetServiceCapabilities.java │ │ ├── GetServiceCapabilitiesResponse2.java │ │ ├── GetSnapshotUri.java │ │ ├── GetSnapshotUriResponse.java │ │ ├── GetStreamUri.java │ │ ├── GetStreamUriResponse.java │ │ ├── GetVideoEncoderConfigurationOptionsResponse.java │ │ ├── GetVideoEncoderConfigurationsResponse.java │ │ ├── GetVideoSourceConfigurationOptionsResponse.java │ │ ├── GetVideoSourceConfigurationsResponse.java │ │ ├── GetVideoSourceModes.java │ │ ├── GetVideoSourceModesResponse.java │ │ ├── MediaProfile.java │ │ ├── ObjectFactory.java │ │ ├── ProfileCapabilities.java │ │ ├── RemoveConfiguration.java │ │ ├── RemoveConfigurationResponse.java │ │ ├── SetAudioDecoderConfiguration.java │ │ ├── SetAudioEncoderConfiguration.java │ │ ├── SetAudioOutputConfiguration.java │ │ ├── SetAudioSourceConfiguration.java │ │ ├── SetConfigurationResponse.java │ │ ├── SetMetadataConfiguration.java │ │ ├── SetOSD.java │ │ ├── SetSynchronizationPoint.java │ │ ├── SetSynchronizationPointResponse.java │ │ ├── SetVideoEncoderConfiguration.java │ │ ├── SetVideoSourceConfiguration.java │ │ ├── SetVideoSourceMode.java │ │ ├── SetVideoSourceModeResponse.java │ │ ├── StartStopMulticastStreaming.java │ │ ├── StartStopMulticastStreamingResponse.java │ │ ├── StreamingCapabilities.java │ │ ├── TransportProtocol.java │ │ ├── VideoSourceMode.java │ │ ├── VideoSourceModeExtension.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 │ ├── 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/ │ ├── _2004/ │ │ └── _08/ │ │ └── xop/ │ │ └── include/ │ │ ├── Include.java │ │ ├── ObjectFactory.java │ │ └── package-info.java │ └── _2005/ │ ├── _05/ │ │ └── xmlmime/ │ │ ├── Base64Binary.java │ │ ├── HexBinary.java │ │ ├── ObjectFactory.java │ │ └── package-info.java │ └── _08/ │ └── addressing/ │ ├── AttributedAnyType.java │ ├── AttributedQNameType.java │ ├── AttributedURIType.java │ ├── AttributedUnsignedLongType.java │ ├── EndpointReferenceType.java │ ├── MetadataType.java │ ├── ObjectFactory.java │ ├── ProblemActionType.java │ ├── ReferenceParametersType.java │ ├── RelatesToType.java │ └── package-info.java └── xmlsoap/ └── schemas/ └── soap/ └── envelope/ ├── Body.java ├── Detail.java ├── Envelope.java ├── Fault.java ├── Header.java ├── ObjectFactory.java └── package-info.java ================================================ FILE CONTENTS ================================================ ================================================ FILE: .classpath ================================================ ================================================ FILE: .gitignore ================================================ /out/ *.iml ================================================ FILE: .project ================================================ ONVIF org.eclipse.jdt.core.javabuilder org.eclipse.jdt.core.javanature ================================================ FILE: .settings/org.eclipse.jdt.core.prefs ================================================ eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve org.eclipse.jdt.core.compiler.compliance=1.7 org.eclipse.jdt.core.compiler.debug.lineNumber=generate org.eclipse.jdt.core.compiler.debug.localVariable=generate org.eclipse.jdt.core.compiler.debug.sourceFile=generate org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.source=1.7 ================================================ FILE: Desc.jardesc ================================================ ================================================ FILE: Desc_sources.jardesc ================================================ ================================================ FILE: LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS Copyright 2015 Robin Dick Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: README.md ================================================ # onvif-java-lib ONVIF (Open Network Video Interface Forum) is a community to standardize communication between IP-based security products (like cameras). I developed a Java library for the ONVIF spezification. It helps you with the basics (you don't need to learn SOAP e.g.) but you may need to learn a few basics about the ONVIF spezification. As far as I know, this is the first public Java project for the ONVIF spezification. The project is still in development, so if you need features or know better solutions than mine, let me know. This project is not officially supported by ONVIF! It has been created in a academic project from Hochschule Trier in Germany. ================================================ FILE: manifest.mf ================================================ Manifest-Version: 1.0 Class-Path: lib/commons-codec-1.9.jar lib/javaWsDiscovery-0.1jar ================================================ FILE: src/de/onvif/Main.java ================================================ package de.onvif; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.ConnectException; import java.util.List; import javax.xml.soap.SOAPException; import org.onvif.ver10.schema.Profile; import de.onvif.soap.OnvifDevice; public class Main { private static final String INFO = "Commands:\n \n url: Get snapshort URL.\n info: Get information about each valid command.\n profiles: Get all profiles.\n exit: Exit this application."; public static void main(String args[]) { InputStreamReader inputStream = new InputStreamReader(System.in); BufferedReader keyboardInput = new BufferedReader(inputStream); String input, cameraAddress, user, password; try { System.out.println("Please enter camera IP (with port if not 80):"); cameraAddress = keyboardInput.readLine(); System.out.println("Please enter camera username:"); user = keyboardInput.readLine(); System.out.println("Please enter camera password:"); password = keyboardInput.readLine(); } catch (IOException e1) { e1.printStackTrace(); return; } System.out.println("Connect to camera, please wait ..."); OnvifDevice cam; try { cam = new OnvifDevice(cameraAddress, user, password); } catch (ConnectException | SOAPException e1) { System.err.println("No connection to camera, please try again."); return; } System.out.println("Connection to camera successful!"); while (true) { try { System.out.println(); System.out.println("Enter a command (type \"info\" to get commands):"); input = keyboardInput.readLine(); switch (input) { case "url": { List profiles = cam.getDevices().getProfiles(); for (Profile p : profiles) { try { System.out.println("URL from Profile \'" + p.getName() + "\': " + cam.getMedia().getSnapshotUri(p.getToken())); } catch (SOAPException e) { System.err.println("Cannot grap snapshot URL, got Exception "+e.getMessage()); } } break; } case "profiles": List profiles = cam.getDevices().getProfiles(); System.out.println("Number of profiles: " + profiles.size()); for (Profile p : profiles) { System.out.println(" Profile "+p.getName()+" token is: "+p.getToken()); } break; case "info": System.out.println(INFO); break; case "quit": case "exit": case "end": return; default: System.out.println("Unknown command!"); System.out.println(); System.out.println(INFO); break; } } catch (IOException e) { e.printStackTrace(); } } } } ================================================ FILE: src/de/onvif/discovery/OnvifDiscovery.java ================================================ package de.onvif.discovery; import java.net.URL; import java.util.ArrayList; import java.util.Collection; import java.util.List; import org.me.javawsdiscovery.DeviceDiscovery; /** * @author th * @date 2015-06-18 */ public class OnvifDiscovery { public static List discoverOnvifDevices() { final ArrayList onvifPointers = new ArrayList<>(); final Collection urls = DeviceDiscovery.discoverWsDevicesAsUrls("^http$", ".*onvif.*"); for (URL url : urls) { try { onvifPointers.add(new OnvifPointer(url)); } catch (Exception e) { e.printStackTrace(); } } return onvifPointers; } } ================================================ FILE: src/de/onvif/discovery/OnvifPointer.java ================================================ package de.onvif.discovery; import java.net.ConnectException; import java.net.URL; import java.util.List; import javax.xml.soap.SOAPException; import org.onvif.ver10.schema.Profile; import de.onvif.soap.OnvifDevice; /** * @author th * @date 2015-06-19 */ public class OnvifPointer { private final String address; private final String name; public String getSnapshotUrl() { return snapshotUrl; } public String getName() { return name; } public String getAddress() { return address; } private final String snapshotUrl; public OnvifPointer(String address) { this.address = address; try { final OnvifDevice device = new OnvifDevice(address); this.name = device.getName(); final List profiles = device.getDevices().getProfiles(); final Profile profile = profiles.get(0); this.snapshotUrl = device.getMedia().getSnapshotUri(profile.getToken()); } catch (Exception e) { throw new RuntimeException("no onvif device or device not configured", e); } } public OnvifPointer(URL service) { this(service.getHost()); } public OnvifDevice getOnvifDevice() throws SOAPException, ConnectException { return new OnvifDevice(address); } public String toString() { return "ONVIF: " + name + "@" + address; } } ================================================ FILE: src/de/onvif/log/Logger.java ================================================ package de.onvif.log; public class Logger { public void debug(String text) { System.out.println(text); } public void info(String text) { System.out.println(text); } public void warn(String text) { System.err.println(text); } public void error(String text) { System.err.println(text); } } ================================================ FILE: src/de/onvif/soap/OnvifDevice.java ================================================ package de.onvif.soap; import java.io.IOException; import java.net.ConnectException; import java.net.InetSocketAddress; import java.net.Socket; import java.net.SocketAddress; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.GregorianCalendar; import java.util.Random; import java.util.SimpleTimeZone; import java.util.TimeZone; import javax.xml.soap.SOAPException; import org.apache.commons.codec.binary.Base64; import org.onvif.ver10.schema.Capabilities; import de.onvif.log.Logger; import de.onvif.soap.devices.ImagingDevices; import de.onvif.soap.devices.InitialDevices; import de.onvif.soap.devices.MediaDevices; import de.onvif.soap.devices.PtzDevices; /** * * @author Robin Dick * */ public class OnvifDevice { private final String HOST_IP; private String originalIp; private boolean isProxy; private String username, password, nonce, utcTime; private String serverDeviceUri, serverPtzUri, serverMediaUri, serverImagingUri, serverEventsUri; private SOAP soap; private InitialDevices initialDevices; private PtzDevices ptzDevices; private MediaDevices mediaDevices; private ImagingDevices imagingDevices; private Logger logger; /** * Initializes an Onvif device, e.g. a Network Video Transmitter (NVT) with * logindata. * * @param hostIp * The IP address of your device, you can also add a port but * noch protocol (e.g. http://) * @param user * Username you need to login * @param password * User's password to login * @throws ConnectException * Exception gets thrown, if device isn't accessible or invalid * and doesn't answer to SOAP messages * @throws SOAPException */ public OnvifDevice(String hostIp, String user, String password) throws ConnectException, SOAPException { this.logger = new Logger(); this.HOST_IP = hostIp; if (!isOnline()) { throw new ConnectException("Host not available."); } this.serverDeviceUri = "http://" + HOST_IP + "/onvif/device_service"; this.username = user; this.password = password; this.soap = new SOAP(this); this.initialDevices = new InitialDevices(this); this.ptzDevices = new PtzDevices(this); this.mediaDevices = new MediaDevices(this); this.imagingDevices = new ImagingDevices(this); init(); } /** * Initializes an Onvif device, e.g. a Network Video Transmitter (NVT) with * logindata. * * @param hostIp * The IP address of your device, you can also add a port but * noch protocol (e.g. http://) * @throws ConnectException * Exception gets thrown, if device isn't accessible or invalid * and doesn't answer to SOAP messages * @throws SOAPException */ public OnvifDevice(String hostIp) throws ConnectException, SOAPException { this(hostIp, null, null); } /** * Internal function to check, if device is available and answers to ping * requests. */ private boolean isOnline() { String port = HOST_IP.contains(":") ? HOST_IP.substring(HOST_IP.indexOf(':') + 1) : "80"; String ip = HOST_IP.contains(":") ? HOST_IP.substring(0, HOST_IP.indexOf(':')) : HOST_IP; Socket socket = null; try { SocketAddress sockaddr = new InetSocketAddress(ip, new Integer(port)); socket = new Socket(); socket.connect(sockaddr, 5000); } catch (NumberFormatException | IOException e) { return false; } finally { try { if (socket != null) { socket.close(); } } catch (IOException ex) { } } return true; } /** * Initalizes the addresses used for SOAP messages and to get the internal * IP, if given IP is a proxy. * * @throws ConnectException * Get thrown if device doesn't give answers to * GetCapabilities() * @throws SOAPException */ protected void init() throws ConnectException, SOAPException { Capabilities capabilities = getDevices().getCapabilities(); if (capabilities == null) { throw new ConnectException("Capabilities not reachable."); } String localDeviceUri = capabilities.getDevice().getXAddr(); if (localDeviceUri.startsWith("http://")) { originalIp = localDeviceUri.replace("http://", ""); originalIp = originalIp.substring(0, originalIp.indexOf('/')); } else { logger.error("Unknown/Not implemented local procotol!"); } if (!originalIp.equals(HOST_IP)) { isProxy = true; } if (capabilities.getMedia() != null && capabilities.getMedia().getXAddr() != null) { serverMediaUri = replaceLocalIpWithProxyIp(capabilities.getMedia().getXAddr()); } if (capabilities.getPTZ() != null && capabilities.getPTZ().getXAddr() != null) { serverPtzUri = replaceLocalIpWithProxyIp(capabilities.getPTZ().getXAddr()); } if (capabilities.getImaging() != null && capabilities.getImaging().getXAddr() != null) { serverImagingUri = replaceLocalIpWithProxyIp(capabilities.getImaging().getXAddr()); } if (capabilities.getMedia() != null && capabilities.getEvents().getXAddr() != null) { serverEventsUri = replaceLocalIpWithProxyIp(capabilities.getEvents().getXAddr()); } } public String replaceLocalIpWithProxyIp(String original) { if (original.startsWith("http:///")) { original.replace("http:///", "http://"+HOST_IP); } if (isProxy) { return original.replace(originalIp, HOST_IP); } return original; } public String getUsername() { return username; } public String getEncryptedPassword() { return encryptPassword(); } /** * Returns encrypted version of given password like algorithm like in WS-UsernameToken */ public String encryptPassword() { String nonce = getNonce(); String timestamp = getUTCTime(); String beforeEncryption = nonce + timestamp + password; byte[] encryptedRaw; try { encryptedRaw = sha1(beforeEncryption); } catch (NoSuchAlgorithmException e) { e.printStackTrace(); return null; } String encoded = Base64.encodeBase64String(encryptedRaw); return encoded; } private static byte[] sha1(String s) throws NoSuchAlgorithmException { MessageDigest SHA1 = null; SHA1 = MessageDigest.getInstance("SHA1"); SHA1.reset(); SHA1.update(s.getBytes()); byte[] encryptedRaw = SHA1.digest(); return encryptedRaw; } private String getNonce() { if (nonce == null) { createNonce(); } return nonce; } public String getEncryptedNonce() { if (nonce == null) { createNonce(); } return Base64.encodeBase64String(nonce.getBytes()); } public void createNonce() { Random generator = new Random(); nonce = "" + generator.nextInt(); } public String getLastUTCTime() { return utcTime; } public String getUTCTime() { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-d'T'HH:mm:ss'Z'"); sdf.setTimeZone(new SimpleTimeZone(SimpleTimeZone.UTC_TIME, "UTC")); Calendar cal = new GregorianCalendar(TimeZone.getTimeZone("UTC")); String utcTime = sdf.format(cal.getTime()); this.utcTime = utcTime; return utcTime; } public SOAP getSoap() { return soap; } /** * Is used for basic devices and requests of given Onvif Device */ public InitialDevices getDevices() { return initialDevices; } /** * Can be used for PTZ controlling requests, may not be supported by device! */ public PtzDevices getPtz() { return ptzDevices; } /** * Can be used to get media data from OnvifDevice * @return */ public MediaDevices getMedia() { return mediaDevices; } /** * Can be used to get media data from OnvifDevice * @return */ public ImagingDevices getImaging() { return imagingDevices; } public Logger getLogger() { return logger; } public String getDeviceUri() { return serverDeviceUri; } protected String getPtzUri() { return serverPtzUri; } protected String getMediaUri() { return serverMediaUri; } protected String getImagingUri() { return serverImagingUri; } protected String getEventsUri() { return serverEventsUri; } public Date getDate() { return initialDevices.getDate(); } public String getName() { return initialDevices.getDeviceInformation().getModel(); } public String getHostname() { return initialDevices.getHostname(); } public String reboot() throws ConnectException, SOAPException { return initialDevices.reboot(); } } ================================================ FILE: src/de/onvif/soap/SOAP.java ================================================ package de.onvif.soap; import java.io.IOException; import java.net.ConnectException; import java.net.SocketException; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; import javax.xml.bind.Marshaller; import javax.xml.bind.UnmarshalException; import javax.xml.bind.Unmarshaller; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.ParserConfigurationException; import javax.xml.soap.MessageFactory; import javax.xml.soap.SOAPConnection; import javax.xml.soap.SOAPConnectionFactory; import javax.xml.soap.SOAPConstants; import javax.xml.soap.SOAPElement; import javax.xml.soap.SOAPEnvelope; import javax.xml.soap.SOAPException; import javax.xml.soap.SOAPHeader; import javax.xml.soap.SOAPMessage; import javax.xml.soap.SOAPPart; import org.w3c.dom.Document; public class SOAP { private boolean logging = true; private OnvifDevice onvifDevice; public SOAP(OnvifDevice onvifDevice) { super(); this.onvifDevice = onvifDevice; } public Object createSOAPDeviceRequest(Object soapRequestElem, Object soapResponseElem, boolean needsAuthentification) throws SOAPException, ConnectException { return createSOAPRequest(soapRequestElem, soapResponseElem, onvifDevice.getDeviceUri(), needsAuthentification); } public Object createSOAPPtzRequest(Object soapRequestElem, Object soapResponseElem, boolean needsAuthentification) throws SOAPException, ConnectException { return createSOAPRequest(soapRequestElem, soapResponseElem, onvifDevice.getPtzUri(), needsAuthentification); } public Object createSOAPMediaRequest(Object soapRequestElem, Object soapResponseElem, boolean needsAuthentification) throws SOAPException, ConnectException { return createSOAPRequest(soapRequestElem, soapResponseElem, onvifDevice.getMediaUri(), needsAuthentification); } public Object createSOAPImagingRequest(Object soapRequestElem, Object soapResponseElem, boolean needsAuthentification) throws SOAPException, ConnectException { return createSOAPRequest(soapRequestElem, soapResponseElem, onvifDevice.getImagingUri(), needsAuthentification); } public Object createSOAPEventsRequest(Object soapRequestElem, Object soapResponseElem, boolean needsAuthentification) throws SOAPException, ConnectException { return createSOAPRequest(soapRequestElem, soapResponseElem, onvifDevice.getEventsUri(), needsAuthentification); } /** * * @param soapResponseElem * Answer object for SOAP request * @return SOAP Response Element * @throws SOAPException * @throws ConnectException */ public Object createSOAPRequest(Object soapRequestElem, Object soapResponseElem, String soapUri, boolean needsAuthentification) throws ConnectException, SOAPException { SOAPConnection soapConnection = null; SOAPMessage soapResponse = null; try { // Create SOAP Connection SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance(); soapConnection = soapConnectionFactory.createConnection(); SOAPMessage soapMessage = createSoapMessage(soapRequestElem, needsAuthentification); // Print the request message if (isLogging()) { System.out.print("Request SOAP Message (" + soapRequestElem.getClass().getSimpleName() + "): "); soapMessage.writeTo(System.out); System.out.println(); } soapResponse = soapConnection.call(soapMessage, soapUri); // print SOAP Response if (isLogging()) { System.out.print("Response SOAP Message (" + soapResponseElem.getClass().getSimpleName() + "): "); soapResponse.writeTo(System.out); System.out.println(); } if (soapResponseElem == null) { throw new NullPointerException("Improper SOAP Response Element given (is null)."); } Unmarshaller unmarshaller = JAXBContext.newInstance(soapResponseElem.getClass()).createUnmarshaller(); try { try { soapResponseElem = unmarshaller.unmarshal(soapResponse.getSOAPBody().extractContentAsDocument()); } catch (SOAPException e) { // Second try for SOAP 1.2 // Sorry, I don't know why it works, it just does o.o soapResponseElem = unmarshaller.unmarshal(soapResponse.getSOAPBody().extractContentAsDocument()); } } catch (UnmarshalException e) { // Fault soapFault = (Fault) // unmarshaller.unmarshal(soapResponse.getSOAPBody().extractContentAsDocument()); onvifDevice.getLogger().warn("Could not unmarshal, ended in SOAP fault."); // throw new SOAPFaultException(soapFault); } return soapResponseElem; } catch (SocketException e) { throw new ConnectException(e.getMessage()); } catch (SOAPException e) { onvifDevice.getLogger().error( "Unexpected response. Response should be from class " + soapResponseElem.getClass() + ", but response is: " + soapResponse); throw e; } catch (ParserConfigurationException | JAXBException | IOException e) { onvifDevice.getLogger().error("Unhandled exception: " + e.getMessage()); e.printStackTrace(); return null; } finally { try { soapConnection.close(); } catch (SOAPException e) { } } } protected SOAPMessage createSoapMessage(Object soapRequestElem, boolean needAuthentification) throws SOAPException, ParserConfigurationException, JAXBException { MessageFactory messageFactory = MessageFactory.newInstance(SOAPConstants.SOAP_1_2_PROTOCOL); SOAPMessage soapMessage = messageFactory.createMessage(); Document document = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument(); Marshaller marshaller = JAXBContext.newInstance(soapRequestElem.getClass()).createMarshaller(); marshaller.marshal(soapRequestElem, document); soapMessage.getSOAPBody().addDocument(document); // if (needAuthentification) createSoapHeader(soapMessage); soapMessage.saveChanges(); return soapMessage; } protected void createSoapHeader(SOAPMessage soapMessage) throws SOAPException { onvifDevice.createNonce(); String encrypedPassword = onvifDevice.getEncryptedPassword(); if (encrypedPassword != null && onvifDevice.getUsername() != null) { SOAPPart sp = soapMessage.getSOAPPart(); SOAPEnvelope se = sp.getEnvelope(); SOAPHeader header = soapMessage.getSOAPHeader(); se.addNamespaceDeclaration("wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"); se.addNamespaceDeclaration("wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"); SOAPElement securityElem = header.addChildElement("Security", "wsse"); // securityElem.setAttribute("SOAP-ENV:mustUnderstand", "1"); SOAPElement usernameTokenElem = securityElem.addChildElement("UsernameToken", "wsse"); SOAPElement usernameElem = usernameTokenElem.addChildElement("Username", "wsse"); usernameElem.setTextContent(onvifDevice.getUsername()); SOAPElement passwordElem = usernameTokenElem.addChildElement("Password", "wsse"); passwordElem.setAttribute("Type", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest"); passwordElem.setTextContent(encrypedPassword); SOAPElement nonceElem = usernameTokenElem.addChildElement("Nonce", "wsse"); nonceElem.setAttribute("EncodingType", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary"); nonceElem.setTextContent(onvifDevice.getEncryptedNonce()); SOAPElement createdElem = usernameTokenElem.addChildElement("Created", "wsu"); createdElem.setTextContent(onvifDevice.getLastUTCTime()); } } public boolean isLogging() { return logging; } public void setLogging(boolean logging) { this.logging = logging; } } ================================================ FILE: src/de/onvif/soap/devices/ImagingDevices.java ================================================ package de.onvif.soap.devices; import java.net.ConnectException; import javax.xml.soap.SOAPException; import org.onvif.ver10.schema.AbsoluteFocus; import org.onvif.ver10.schema.FocusMove; import org.onvif.ver10.schema.ImagingOptions20; import org.onvif.ver10.schema.ImagingSettings20; import org.onvif.ver20.imaging.wsdl.GetImagingSettings; import org.onvif.ver20.imaging.wsdl.GetImagingSettingsResponse; import org.onvif.ver20.imaging.wsdl.GetOptions; import org.onvif.ver20.imaging.wsdl.GetOptionsResponse; import org.onvif.ver20.imaging.wsdl.Move; import org.onvif.ver20.imaging.wsdl.MoveResponse; import org.onvif.ver20.imaging.wsdl.SetImagingSettings; import org.onvif.ver20.imaging.wsdl.SetImagingSettingsResponse; import de.onvif.soap.OnvifDevice; import de.onvif.soap.SOAP; public class ImagingDevices { @SuppressWarnings("unused") private OnvifDevice onvifDevice; private SOAP soap; public ImagingDevices(OnvifDevice onvifDevice) { this.onvifDevice = onvifDevice; this.soap = onvifDevice.getSoap(); } public ImagingOptions20 getOptions(String videoSourceToken) { if (videoSourceToken == null) { return null; } GetOptions request = new GetOptions(); GetOptionsResponse response = new GetOptionsResponse(); request.setVideoSourceToken(videoSourceToken); try { response = (GetOptionsResponse) soap.createSOAPImagingRequest(request, response, false); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } if (response == null) { return null; } return response.getImagingOptions(); } public boolean moveFocus(String videoSourceToken, float absoluteFocusValue) { if (videoSourceToken == null) { return false; } Move request = new Move(); MoveResponse response = new MoveResponse(); AbsoluteFocus absoluteFocus = new AbsoluteFocus(); absoluteFocus.setPosition(absoluteFocusValue); FocusMove focusMove = new FocusMove(); focusMove.setAbsolute(absoluteFocus); request.setVideoSourceToken(videoSourceToken); request.setFocus(focusMove); try { response = (MoveResponse) soap.createSOAPImagingRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return false; } if (response == null) { return false; } return true; } public ImagingSettings20 getImagingSettings(String videoSourceToken) { if (videoSourceToken == null) { return null; } GetImagingSettings request = new GetImagingSettings(); GetImagingSettingsResponse response = new GetImagingSettingsResponse(); request.setVideoSourceToken(videoSourceToken); try { response = (GetImagingSettingsResponse) soap.createSOAPImagingRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } if (response == null) { return null; } return response.getImagingSettings(); } public boolean setImagingSettings(String videoSourceToken, ImagingSettings20 imagingSettings) { if (videoSourceToken == null) { return false; } SetImagingSettings request = new SetImagingSettings(); SetImagingSettingsResponse response = new SetImagingSettingsResponse(); request.setVideoSourceToken(videoSourceToken); request.setImagingSettings(imagingSettings); try { response = (SetImagingSettingsResponse) soap.createSOAPImagingRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return false; } if (response == null) { return false; } return true; } } ================================================ FILE: src/de/onvif/soap/devices/InitialDevices.java ================================================ package de.onvif.soap.devices; import java.net.ConnectException; import java.util.Calendar; import java.util.GregorianCalendar; import java.util.List; import javax.xml.soap.SOAPException; import org.onvif.ver10.device.wsdl.GetCapabilities; import org.onvif.ver10.device.wsdl.GetCapabilitiesResponse; import org.onvif.ver10.device.wsdl.GetDeviceInformation; import org.onvif.ver10.device.wsdl.GetDeviceInformationResponse; import org.onvif.ver10.device.wsdl.GetHostname; import org.onvif.ver10.device.wsdl.GetHostnameResponse; import org.onvif.ver10.device.wsdl.GetScopes; import org.onvif.ver10.device.wsdl.GetScopesResponse; import org.onvif.ver10.device.wsdl.GetServices; import org.onvif.ver10.device.wsdl.GetServicesResponse; import org.onvif.ver10.device.wsdl.GetSystemDateAndTime; import org.onvif.ver10.device.wsdl.GetSystemDateAndTimeResponse; import org.onvif.ver10.device.wsdl.GetUsers; import org.onvif.ver10.device.wsdl.GetUsersResponse; import org.onvif.ver10.device.wsdl.Service; import org.onvif.ver10.device.wsdl.SetHostname; import org.onvif.ver10.device.wsdl.SetHostnameResponse; import org.onvif.ver10.device.wsdl.SystemReboot; import org.onvif.ver10.device.wsdl.SystemRebootResponse; import org.onvif.ver10.media.wsdl.CreateProfile; import org.onvif.ver10.media.wsdl.CreateProfileResponse; import org.onvif.ver10.media.wsdl.GetProfile; import org.onvif.ver10.media.wsdl.GetProfileResponse; import org.onvif.ver10.media.wsdl.GetProfiles; import org.onvif.ver10.media.wsdl.GetProfilesResponse; import org.onvif.ver10.schema.Capabilities; import org.onvif.ver10.schema.Date; import org.onvif.ver10.schema.Profile; import org.onvif.ver10.schema.Scope; import org.onvif.ver10.schema.Time; import org.onvif.ver10.schema.User; import de.onvif.soap.OnvifDevice; import de.onvif.soap.SOAP; public class InitialDevices { private SOAP soap; private OnvifDevice onvifDevice; public InitialDevices(OnvifDevice onvifDevice) { this.onvifDevice = onvifDevice; this.soap = onvifDevice.getSoap(); } public java.util.Date getDate() { Calendar cal = null; GetSystemDateAndTimeResponse response = new GetSystemDateAndTimeResponse(); try { response = (GetSystemDateAndTimeResponse) soap.createSOAPDeviceRequest(new GetSystemDateAndTime(), response, false); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } Date date = response.getSystemDateAndTime().getUTCDateTime().getDate(); Time time = response.getSystemDateAndTime().getUTCDateTime().getTime(); cal = new GregorianCalendar(date.getYear(), date.getMonth() - 1, date.getDay(), time.getHour(), time.getMinute(), time.getSecond()); return cal.getTime(); } public GetDeviceInformationResponse getDeviceInformation() { GetDeviceInformation getHostname = new GetDeviceInformation(); GetDeviceInformationResponse response = new GetDeviceInformationResponse(); try { response = (GetDeviceInformationResponse) soap.createSOAPDeviceRequest(getHostname, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } return response; } public String getHostname() { GetHostname getHostname = new GetHostname(); GetHostnameResponse response = new GetHostnameResponse(); try { response = (GetHostnameResponse) soap.createSOAPDeviceRequest(getHostname, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } return response.getHostnameInformation().getName(); } public boolean setHostname(String hostname) { SetHostname setHostname = new SetHostname(); setHostname.setName(hostname); SetHostnameResponse response = new SetHostnameResponse(); try { response = (SetHostnameResponse) soap.createSOAPDeviceRequest(setHostname, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return false; } return true; } public List getUsers() { GetUsers getUsers = new GetUsers(); GetUsersResponse response = new GetUsersResponse(); try { response = (GetUsersResponse) soap.createSOAPDeviceRequest(getUsers, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } if (response == null) { return null; } return response.getUser(); } public Capabilities getCapabilities() throws ConnectException, SOAPException { GetCapabilities getCapabilities = new GetCapabilities(); GetCapabilitiesResponse response = new GetCapabilitiesResponse(); try { response = (GetCapabilitiesResponse) soap.createSOAPRequest(getCapabilities, response, onvifDevice.getDeviceUri(), false); } catch (SOAPException e) { throw e; } if (response == null) { return null; } return response.getCapabilities(); } public List getProfiles() { GetProfiles request = new GetProfiles(); GetProfilesResponse response = new GetProfilesResponse(); try { response = (GetProfilesResponse) soap.createSOAPMediaRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } if (response == null) { return null; } return response.getProfiles(); } public Profile getProfile(String profileToken) { GetProfile request = new GetProfile(); GetProfileResponse response = new GetProfileResponse(); request.setProfileToken(profileToken); try { response = (GetProfileResponse) soap.createSOAPMediaRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } if (response == null) { return null; } return response.getProfile(); } public Profile createProfile(String name) { CreateProfile request = new CreateProfile(); CreateProfileResponse response = new CreateProfileResponse(); request.setName(name); try { response = (CreateProfileResponse) soap.createSOAPMediaRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } if (response == null) { return null; } return response.getProfile(); } public List getServices(boolean includeCapability) { GetServices request = new GetServices(); GetServicesResponse response = new GetServicesResponse(); request.setIncludeCapability(includeCapability); try { response = (GetServicesResponse) soap.createSOAPDeviceRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } if (response == null) { return null; } return response.getService(); } public List getScopes() { GetScopes request = new GetScopes(); GetScopesResponse response = new GetScopesResponse(); try { response = (GetScopesResponse) soap.createSOAPMediaRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } if (response == null) { return null; } return response.getScopes(); } public String reboot() throws ConnectException, SOAPException { SystemReboot request = new SystemReboot(); SystemRebootResponse response = new SystemRebootResponse(); try { response = (SystemRebootResponse) soap.createSOAPMediaRequest(request, response, true); } catch (SOAPException | ConnectException e) { throw e; } if (response == null) { return null; } return response.getMessage(); } } ================================================ FILE: src/de/onvif/soap/devices/MediaDevices.java ================================================ package de.onvif.soap.devices; import java.net.ConnectException; import java.util.List; import javax.xml.soap.SOAPException; import org.onvif.ver10.media.wsdl.GetSnapshotUri; import org.onvif.ver10.media.wsdl.GetSnapshotUriResponse; import org.onvif.ver10.media.wsdl.GetStreamUri; import org.onvif.ver10.media.wsdl.GetStreamUriResponse; import org.onvif.ver10.media.wsdl.GetVideoEncoderConfigurationOptions; import org.onvif.ver10.media.wsdl.GetVideoEncoderConfigurationOptionsResponse; import org.onvif.ver10.media.wsdl.GetVideoSources; import org.onvif.ver10.media.wsdl.GetVideoSourcesResponse; import org.onvif.ver10.media.wsdl.SetVideoEncoderConfiguration; import org.onvif.ver10.media.wsdl.SetVideoEncoderConfigurationResponse; import org.onvif.ver10.schema.Profile; import org.onvif.ver10.schema.StreamSetup; import org.onvif.ver10.schema.StreamType; import org.onvif.ver10.schema.Transport; import org.onvif.ver10.schema.TransportProtocol; import org.onvif.ver10.schema.VideoEncoderConfiguration; import org.onvif.ver10.schema.VideoEncoderConfigurationOptions; import org.onvif.ver10.schema.VideoSource; import de.onvif.soap.OnvifDevice; import de.onvif.soap.SOAP; public class MediaDevices { private OnvifDevice onvifDevice; private SOAP soap; public MediaDevices(OnvifDevice onvifDevice) { this.onvifDevice = onvifDevice; this.soap = onvifDevice.getSoap(); } @Deprecated public String getHTTPStreamUri(int profileNumber) throws ConnectException, SOAPException { StreamSetup setup = new StreamSetup(); setup.setStream(StreamType.RTP_UNICAST); Transport transport = new Transport(); transport.setProtocol(TransportProtocol.HTTP); setup.setTransport(transport); return getStreamUri(setup, profileNumber); } public String getHTTPStreamUri(String profileToken) throws ConnectException, SOAPException { StreamSetup setup = new StreamSetup(); setup.setStream(StreamType.RTP_UNICAST); Transport transport = new Transport(); transport.setProtocol(TransportProtocol.HTTP); setup.setTransport(transport); return getStreamUri(profileToken, setup); } @Deprecated public String getUDPStreamUri(int profileNumber) throws ConnectException, SOAPException { StreamSetup setup = new StreamSetup(); setup.setStream(StreamType.RTP_UNICAST); Transport transport = new Transport(); transport.setProtocol(TransportProtocol.UDP); setup.setTransport(transport); return getStreamUri(setup, profileNumber); } public String getUDPStreamUri(String profileToken) throws ConnectException, SOAPException { StreamSetup setup = new StreamSetup(); setup.setStream(StreamType.RTP_UNICAST); Transport transport = new Transport(); transport.setProtocol(TransportProtocol.UDP); setup.setTransport(transport); return getStreamUri(profileToken, setup); } @Deprecated public String getTCPStreamUri(int profileNumber) throws ConnectException, SOAPException { StreamSetup setup = new StreamSetup(); setup.setStream(StreamType.RTP_UNICAST); Transport transport = new Transport(); transport.setProtocol(TransportProtocol.TCP); setup.setTransport(transport); return getStreamUri(setup, profileNumber); } public String getTCPStreamUri(String profileToken) throws ConnectException, SOAPException { StreamSetup setup = new StreamSetup(); setup.setStream(StreamType.RTP_UNICAST); Transport transport = new Transport(); transport.setProtocol(TransportProtocol.TCP); setup.setTransport(transport); return getStreamUri(profileToken, setup); } @Deprecated public String getRTSPStreamUri(int profileNumber) throws ConnectException, SOAPException { StreamSetup setup = new StreamSetup(); setup.setStream(StreamType.RTP_UNICAST); Transport transport = new Transport(); transport.setProtocol(TransportProtocol.TCP); setup.setTransport(transport); return getStreamUri(setup, profileNumber); } public String getRTSPStreamUri(String profileToken) throws ConnectException, SOAPException { StreamSetup setup = new StreamSetup(); setup.setStream(StreamType.RTP_UNICAST); Transport transport = new Transport(); transport.setProtocol(TransportProtocol.TCP); setup.setTransport(transport); return getStreamUri(profileToken, setup); } @Deprecated public String getStreamUri(StreamSetup streamSetup, int profileNumber) throws ConnectException, SOAPException { Profile profile = onvifDevice.getDevices().getProfiles().get(profileNumber); return getStreamUri(profile, streamSetup); } @Deprecated public String getStreamUri(Profile profile, StreamSetup streamSetup) throws ConnectException, SOAPException { return getStreamUri(profile.getToken(), streamSetup); } public String getStreamUri(String profileToken, StreamSetup streamSetup) throws SOAPException, ConnectException { GetStreamUri request = new GetStreamUri(); GetStreamUriResponse response = new GetStreamUriResponse(); request.setProfileToken(profileToken); request.setStreamSetup(streamSetup); try { response = (GetStreamUriResponse) soap.createSOAPMediaRequest(request, response, false); } catch (SOAPException | ConnectException e) { throw e; } if (response == null) { return null; } return onvifDevice.replaceLocalIpWithProxyIp(response.getMediaUri().getUri()); } public static VideoEncoderConfiguration getVideoEncoderConfiguration(Profile profile) { return profile.getVideoEncoderConfiguration(); } public VideoEncoderConfigurationOptions getVideoEncoderConfigurationOptions(String profileToken) throws SOAPException, ConnectException { GetVideoEncoderConfigurationOptions request = new GetVideoEncoderConfigurationOptions(); GetVideoEncoderConfigurationOptionsResponse response = new GetVideoEncoderConfigurationOptionsResponse(); request.setProfileToken(profileToken); try { response = (GetVideoEncoderConfigurationOptionsResponse) soap.createSOAPMediaRequest(request, response, false); } catch (SOAPException | ConnectException e) { throw e; } if (response == null) { return null; } return response.getOptions(); } public boolean setVideoEncoderConfiguration(VideoEncoderConfiguration videoEncoderConfiguration) throws SOAPException, ConnectException { SetVideoEncoderConfiguration request = new SetVideoEncoderConfiguration(); SetVideoEncoderConfigurationResponse response = new SetVideoEncoderConfigurationResponse(); request.setConfiguration(videoEncoderConfiguration); request.setForcePersistence(true); try { response = (SetVideoEncoderConfigurationResponse) soap.createSOAPMediaRequest(request, response, true); } catch (SOAPException | ConnectException e) { throw e; } if (response == null) { return false; } return true; } public String getSceenshotUri(String profileToken) throws SOAPException, ConnectException { return getSnapshotUri(profileToken); } public String getSnapshotUri(String profileToken) throws SOAPException, ConnectException { GetSnapshotUri request = new GetSnapshotUri(); GetSnapshotUriResponse response = new GetSnapshotUriResponse(); request.setProfileToken(profileToken); try { response = (GetSnapshotUriResponse) soap.createSOAPMediaRequest(request, response, true); } catch (SOAPException | ConnectException e) { throw e; } if (response == null || response.getMediaUri() == null) { return null; } return onvifDevice.replaceLocalIpWithProxyIp(response.getMediaUri().getUri()); } public List getVideoSources() throws SOAPException, ConnectException { GetVideoSources request = new GetVideoSources(); GetVideoSourcesResponse response = new GetVideoSourcesResponse(); try { response = (GetVideoSourcesResponse) soap.createSOAPMediaRequest(request, response, false); } catch (SOAPException | ConnectException e) { throw e; } if (response == null) { return null; } return response.getVideoSources(); } } ================================================ FILE: src/de/onvif/soap/devices/PtzDevices.java ================================================ package de.onvif.soap.devices; import java.net.ConnectException; import java.util.List; import javax.xml.soap.SOAPException; import org.onvif.ver10.schema.FloatRange; import org.onvif.ver10.schema.PTZConfiguration; import org.onvif.ver10.schema.PTZNode; import org.onvif.ver10.schema.PTZPreset; import org.onvif.ver10.schema.PTZSpaces; import org.onvif.ver10.schema.PTZSpeed; import org.onvif.ver10.schema.PTZStatus; import org.onvif.ver10.schema.PTZVector; import org.onvif.ver10.schema.Profile; import org.onvif.ver10.schema.Vector1D; import org.onvif.ver10.schema.Vector2D; import org.onvif.ver20.ptz.wsdl.AbsoluteMove; import org.onvif.ver20.ptz.wsdl.AbsoluteMoveResponse; import org.onvif.ver20.ptz.wsdl.ContinuousMove; import org.onvif.ver20.ptz.wsdl.ContinuousMoveResponse; import org.onvif.ver20.ptz.wsdl.GetNode; import org.onvif.ver20.ptz.wsdl.GetNodeResponse; import org.onvif.ver20.ptz.wsdl.GetNodes; import org.onvif.ver20.ptz.wsdl.GetNodesResponse; import org.onvif.ver20.ptz.wsdl.GetPresets; import org.onvif.ver20.ptz.wsdl.GetPresetsResponse; import org.onvif.ver20.ptz.wsdl.GetStatus; import org.onvif.ver20.ptz.wsdl.GetStatusResponse; import org.onvif.ver20.ptz.wsdl.GotoPreset; import org.onvif.ver20.ptz.wsdl.GotoPresetResponse; import org.onvif.ver20.ptz.wsdl.RelativeMove; import org.onvif.ver20.ptz.wsdl.RelativeMoveResponse; import org.onvif.ver20.ptz.wsdl.RemovePreset; import org.onvif.ver20.ptz.wsdl.RemovePresetResponse; import org.onvif.ver20.ptz.wsdl.SetHomePosition; import org.onvif.ver20.ptz.wsdl.SetHomePositionResponse; import org.onvif.ver20.ptz.wsdl.SetPreset; import org.onvif.ver20.ptz.wsdl.SetPresetResponse; import org.onvif.ver20.ptz.wsdl.Stop; import org.onvif.ver20.ptz.wsdl.StopResponse; import de.onvif.soap.OnvifDevice; import de.onvif.soap.SOAP; public class PtzDevices { private OnvifDevice onvifDevice; private SOAP soap; public PtzDevices(OnvifDevice onvifDevice) { this.onvifDevice = onvifDevice; this.soap = onvifDevice.getSoap(); } public boolean isPtzOperationsSupported(String profileToken) { return getPTZConfiguration(profileToken) != null; } /** * @param profileToken * @return If is null, PTZ operations are not supported */ public PTZConfiguration getPTZConfiguration(String profileToken) { if (profileToken == null || profileToken.equals("")) { return null; } Profile profile = onvifDevice.getDevices().getProfile(profileToken); if (profile == null) { throw new IllegalArgumentException("No profile available for token: "+profileToken); } if (profile.getPTZConfiguration() == null) { return null; // no PTZ support } return profile.getPTZConfiguration(); } public List getNodes() { GetNodes request = new GetNodes(); GetNodesResponse response = new GetNodesResponse(); try { response = (GetNodesResponse) soap.createSOAPDeviceRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } if (response == null) { return null; } return response.getPTZNode(); } public PTZNode getNode(String profileToken) { return getNode(getPTZConfiguration(profileToken)); } public PTZNode getNode(PTZConfiguration ptzConfiguration) { GetNode request = new GetNode(); GetNodeResponse response = new GetNodeResponse(); if (ptzConfiguration == null) { return null; // no PTZ support } request.setNodeToken(ptzConfiguration.getNodeToken()); try { response = (GetNodeResponse) soap.createSOAPDeviceRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } if (response == null) { return null; } return response.getPTZNode(); } public FloatRange getPanSpaces(String profileToken) { PTZNode node = getNode(profileToken); PTZSpaces ptzSpaces = node.getSupportedPTZSpaces(); return ptzSpaces.getAbsolutePanTiltPositionSpace().get(0).getXRange(); } public FloatRange getTiltSpaces(String profileToken) { PTZNode node = getNode(profileToken); PTZSpaces ptzSpaces = node.getSupportedPTZSpaces(); return ptzSpaces.getAbsolutePanTiltPositionSpace().get(0).getYRange(); } public FloatRange getZoomSpaces(String profileToken) { PTZNode node = getNode(profileToken); PTZSpaces ptzSpaces = node.getSupportedPTZSpaces(); return ptzSpaces.getAbsoluteZoomPositionSpace().get(0).getXRange(); } public boolean isAbsoluteMoveSupported(String profileToken) { Profile profile = onvifDevice.getDevices().getProfile(profileToken); try { if (profile.getPTZConfiguration().getDefaultAbsolutePantTiltPositionSpace() != null) { return true; } } catch (NullPointerException e) { } return false; } /** * * @param x * Pan-Position * @param y * Tilt-Position * @param zoom * Zoom * @see getPanSpaces(), getTiltSpaces(), getZoomSpaces() * @return True if move successful * @throws SOAPException */ public boolean absoluteMove(String profileToken, float x, float y, float zoom) throws SOAPException { PTZNode node = getNode(profileToken); if (node != null) { FloatRange xRange = node.getSupportedPTZSpaces().getAbsolutePanTiltPositionSpace().get(0).getXRange(); FloatRange yRange = node.getSupportedPTZSpaces().getAbsolutePanTiltPositionSpace().get(0).getYRange(); FloatRange zRange = node.getSupportedPTZSpaces().getAbsoluteZoomPositionSpace().get(0).getXRange(); if (zoom < zRange.getMin() || zoom > zRange.getMax()) { throw new IllegalArgumentException("Bad value for zoom: " + zoom); } if (x < xRange.getMin() || x > xRange.getMax()) { throw new IllegalArgumentException("Bad value for pan:/x " + x); } if (y < yRange.getMin() || y > yRange.getMax()) { throw new IllegalArgumentException("Bad value for tilt/y: " + y); } } AbsoluteMove request = new AbsoluteMove(); AbsoluteMoveResponse response = new AbsoluteMoveResponse(); Vector2D panTiltVector = new Vector2D(); panTiltVector.setX(x); panTiltVector.setY(y); Vector1D zoomVector = new Vector1D(); zoomVector.setX(zoom); PTZVector ptzVector = new PTZVector(); ptzVector.setPanTilt(panTiltVector); ptzVector.setZoom(zoomVector); request.setPosition(ptzVector); request.setProfileToken(profileToken); try { response = (AbsoluteMoveResponse) soap.createSOAPPtzRequest(request, response, true); } catch (SOAPException e) { throw e; } catch (ConnectException e) { e.printStackTrace(); return false; } if (response == null) { return false; } return true; } public boolean isRelativeMoveSupported(String profileToken) { Profile profile = onvifDevice.getDevices().getProfile(profileToken); try { if (profile.getPTZConfiguration().getDefaultRelativePanTiltTranslationSpace() != null) { return true; } } catch (NullPointerException e) { } return false; } public boolean relativeMove(String profileToken, float x, float y, float zoom) { RelativeMove request = new RelativeMove(); RelativeMoveResponse response = new RelativeMoveResponse(); Vector2D panTiltVector = new Vector2D(); panTiltVector.setX(x); panTiltVector.setY(y); Vector1D zoomVector = new Vector1D(); zoomVector.setX(zoom); PTZVector translation = new PTZVector(); translation.setPanTilt(panTiltVector); translation.setZoom(zoomVector); request.setProfileToken(profileToken); request.setTranslation(translation); try { response = (RelativeMoveResponse) soap.createSOAPPtzRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return false; } if (response == null) { return false; } return true; } public boolean isContinuosMoveSupported(String profileToken) { Profile profile = onvifDevice.getDevices().getProfile(profileToken); try { if (profile.getPTZConfiguration().getDefaultContinuousPanTiltVelocitySpace() != null) { return true; } } catch (NullPointerException e) { } return false; } public boolean continuousMove(String profileToken, float x, float y, float zoom) { ContinuousMove request = new ContinuousMove(); ContinuousMoveResponse response = new ContinuousMoveResponse(); Vector2D panTiltVector = new Vector2D(); panTiltVector.setX(x); panTiltVector.setY(y); Vector1D zoomVector = new Vector1D(); zoomVector.setX(zoom); PTZSpeed ptzSpeed = new PTZSpeed(); ptzSpeed.setPanTilt(panTiltVector); ptzSpeed.setZoom(zoomVector); request.setVelocity(ptzSpeed); request.setProfileToken(profileToken); try { response = (ContinuousMoveResponse) soap.createSOAPPtzRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return false; } if (response == null) { return false; } return true; } public boolean stopMove(String profileToken) { Stop request = new Stop(); request.setPanTilt(true); request.setZoom(true); StopResponse response = new StopResponse(); request.setProfileToken(profileToken); try { response = (StopResponse) soap.createSOAPPtzRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return false; } if (response == null) { return false; } return true; } public PTZStatus getStatus(String profileToken) { GetStatus request = new GetStatus(); GetStatusResponse response = new GetStatusResponse(); request.setProfileToken(profileToken); try { response = (GetStatusResponse) soap.createSOAPPtzRequest(request, response, false); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } if (response == null) { return null; } return response.getPTZStatus(); } public PTZVector getPosition(String profileToken) { PTZStatus status = getStatus(profileToken); if (status == null) { return null; } return status.getPosition(); } public boolean setHomePosition(String profileToken) { SetHomePosition request = new SetHomePosition(); SetHomePositionResponse response = new SetHomePositionResponse(); request.setProfileToken(profileToken); try { response = (SetHomePositionResponse) soap.createSOAPPtzRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return false; } if (response == null) { return false; } return true; } public List getPresets(String profileToken) { GetPresets request = new GetPresets(); GetPresetsResponse response = new GetPresetsResponse(); request.setProfileToken(profileToken); try { response = (GetPresetsResponse) soap.createSOAPPtzRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } if (response == null) { return null; } return response.getPreset(); } public String setPreset(String presetName, String presetToken, String profileToken) { SetPreset request = new SetPreset(); SetPresetResponse response = new SetPresetResponse(); request.setProfileToken(profileToken); request.setPresetName(presetName); request.setPresetToken(presetToken); try { response = (SetPresetResponse) soap.createSOAPPtzRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return null; } if (response == null) { return null; } return response.getPresetToken(); } public String setPreset(String presetName, String profileToken) { return setPreset(presetName, null, profileToken); } public boolean removePreset(String presetToken, String profileToken) { RemovePreset request = new RemovePreset(); RemovePresetResponse response = new RemovePresetResponse(); request.setProfileToken(profileToken); request.setPresetToken(presetToken); try { response = (RemovePresetResponse) soap.createSOAPPtzRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return false; } if (response == null) { return false; } return true; } public boolean gotoPreset(String presetToken, String profileToken) { GotoPreset request = new GotoPreset(); GotoPresetResponse response = new GotoPresetResponse(); request.setProfileToken(profileToken); request.setPresetToken(presetToken); try { response = (GotoPresetResponse) soap.createSOAPPtzRequest(request, response, true); } catch (SOAPException | ConnectException e) { e.printStackTrace(); return false; } if (response == null) { return false; } return true; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/CreatePullPoint.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) @XmlRootElement(name = "CreatePullPoint") public class CreatePullPoint { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/CreatePullPointResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3._2005._08.addressing.EndpointReferenceType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "pullPoint", "any" }) @XmlRootElement(name = "CreatePullPointResponse") public class CreatePullPointResponse { @XmlElement(name = "PullPoint", required = true) protected EndpointReferenceType pullPoint; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der pullPoint-Eigenschaft ab. * * @return possible object is {@link EndpointReferenceType } * */ public EndpointReferenceType getPullPoint() { return pullPoint; } /** * Legt den Wert der pullPoint-Eigenschaft fest. * * @param value * allowed object is {@link EndpointReferenceType } * */ public void setPullPoint(EndpointReferenceType value) { this.pullPoint = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/DestroyPullPoint.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) @XmlRootElement(name = "DestroyPullPoint") public class DestroyPullPoint { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/DestroyPullPointResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) @XmlRootElement(name = "DestroyPullPointResponse") public class DestroyPullPointResponse { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/FilterType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.EventFilter; /** *

* Java-Klasse f�r FilterType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FilterType", propOrder = { "any" }) @XmlSeeAlso({ EventFilter.class }) public class FilterType { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/GetCurrentMessage.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "topic", "any" }) @XmlRootElement(name = "GetCurrentMessage") public class GetCurrentMessage { @XmlElement(name = "Topic", required = true) protected TopicExpressionType topic; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der topic-Eigenschaft ab. * * @return possible object is {@link TopicExpressionType } * */ public TopicExpressionType getTopic() { return topic; } /** * Legt den Wert der topic-Eigenschaft fest. * * @param value * allowed object is {@link TopicExpressionType } * */ public void setTopic(TopicExpressionType value) { this.topic = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/GetCurrentMessageResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) @XmlRootElement(name = "GetCurrentMessageResponse") public class GetCurrentMessageResponse { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/GetMessages.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.math.BigInteger; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "maximumNumber", "any" }) @XmlRootElement(name = "GetMessages") public class GetMessages { @XmlElement(name = "MaximumNumber") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger maximumNumber; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der maximumNumber-Eigenschaft ab. * * @return possible object is {@link BigInteger } * */ public BigInteger getMaximumNumber() { return maximumNumber; } /** * Legt den Wert der maximumNumber-Eigenschaft fest. * * @param value * allowed object is {@link BigInteger } * */ public void setMaximumNumber(BigInteger value) { this.maximumNumber = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/GetMessagesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "notificationMessage", "any" }) @XmlRootElement(name = "GetMessagesResponse") public class GetMessagesResponse { @XmlElement(name = "NotificationMessage") protected List notificationMessage; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the notificationMessage property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the notificationMessage property. * *

* For example, to add a new item, do as follows: * *

	 * getNotificationMessage().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link NotificationMessageHolderType } * * */ public List getNotificationMessage() { if (notificationMessage == null) { notificationMessage = new ArrayList(); } return this.notificationMessage; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/InvalidFilterFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r InvalidFilterFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InvalidFilterFaultType", propOrder = { "unknownFilter" }) public class InvalidFilterFaultType extends BaseFaultType { @XmlElement(name = "UnknownFilter", required = true) protected List unknownFilter; /** * Gets the value of the unknownFilter property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the unknownFilter property. * *

* For example, to add a new item, do as follows: * *

	 * getUnknownFilter().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link QName } * * */ public List getUnknownFilter() { if (unknownFilter == null) { unknownFilter = new ArrayList(); } return this.unknownFilter; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/InvalidMessageContentExpressionFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r InvalidMessageContentExpressionFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InvalidMessageContentExpressionFaultType") public class InvalidMessageContentExpressionFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/InvalidProducerPropertiesExpressionFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r InvalidProducerPropertiesExpressionFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InvalidProducerPropertiesExpressionFaultType") public class InvalidProducerPropertiesExpressionFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/InvalidTopicExpressionFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r InvalidTopicExpressionFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InvalidTopicExpressionFaultType") public class InvalidTopicExpressionFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/MultipleTopicsSpecifiedFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r MultipleTopicsSpecifiedFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MultipleTopicsSpecifiedFaultType") public class MultipleTopicsSpecifiedFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/NoCurrentMessageOnTopicFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r NoCurrentMessageOnTopicFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NoCurrentMessageOnTopicFaultType") public class NoCurrentMessageOnTopicFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/NotificationMessageHolderType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3._2005._08.addressing.EndpointReferenceType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r NotificationMessageHolderType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *               
 *             
 *           
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NotificationMessageHolderType", propOrder = { "subscriptionReference", "topic", "producerReference", "message" }) public class NotificationMessageHolderType { @XmlElement(name = "SubscriptionReference") protected EndpointReferenceType subscriptionReference; @XmlElement(name = "Topic") protected TopicExpressionType topic; @XmlElement(name = "ProducerReference") protected EndpointReferenceType producerReference; @XmlElement(name = "Message", required = true) protected NotificationMessageHolderType.Message message; /** * Ruft den Wert der subscriptionReference-Eigenschaft ab. * * @return possible object is {@link EndpointReferenceType } * */ public EndpointReferenceType getSubscriptionReference() { return subscriptionReference; } /** * Legt den Wert der subscriptionReference-Eigenschaft fest. * * @param value * allowed object is {@link EndpointReferenceType } * */ public void setSubscriptionReference(EndpointReferenceType value) { this.subscriptionReference = value; } /** * Ruft den Wert der topic-Eigenschaft ab. * * @return possible object is {@link TopicExpressionType } * */ public TopicExpressionType getTopic() { return topic; } /** * Legt den Wert der topic-Eigenschaft fest. * * @param value * allowed object is {@link TopicExpressionType } * */ public void setTopic(TopicExpressionType value) { this.topic = value; } /** * Ruft den Wert der producerReference-Eigenschaft ab. * * @return possible object is {@link EndpointReferenceType } * */ public EndpointReferenceType getProducerReference() { return producerReference; } /** * Legt den Wert der producerReference-Eigenschaft fest. * * @param value * allowed object is {@link EndpointReferenceType } * */ public void setProducerReference(EndpointReferenceType value) { this.producerReference = value; } /** * Ruft den Wert der message-Eigenschaft ab. * * @return possible object is {@link NotificationMessageHolderType.Message } * */ public NotificationMessageHolderType.Message getMessage() { return message; } /** * Legt den Wert der message-Eigenschaft fest. * * @param value * allowed object is {@link NotificationMessageHolderType.Message } * */ public void setMessage(NotificationMessageHolderType.Message value) { this.message = value; } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *         
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) public static class Message { @XmlAnyElement(lax = true) protected Object any; /** * Ruft den Wert der any-Eigenschaft ab. * * @return possible object is {@link Element } {@link Object } * */ public Object getAny() { return any; } /** * Legt den Wert der any-Eigenschaft fest. * * @param value * allowed object is {@link Element } {@link Object } * */ public void setAny(Object value) { this.any = value; } } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/NotificationProducerRP.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsn.t_1.TopicSetType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "topicExpression", "fixedTopicSet", "topicExpressionDialect", "topicSet" }) @XmlRootElement(name = "NotificationProducerRP") public class NotificationProducerRP { @XmlElement(name = "TopicExpression") protected List topicExpression; @XmlElement(name = "FixedTopicSet", defaultValue = "true") protected Boolean fixedTopicSet; @XmlElement(name = "TopicExpressionDialect") @XmlSchemaType(name = "anyURI") protected List topicExpressionDialect; @XmlElement(name = "TopicSet", namespace = "http://docs.oasis-open.org/wsn/t-1") protected TopicSetType topicSet; /** * Gets the value of the topicExpression property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the topicExpression property. * *

* For example, to add a new item, do as follows: * *

	 * getTopicExpression().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link TopicExpressionType } * * */ public List getTopicExpression() { if (topicExpression == null) { topicExpression = new ArrayList(); } return this.topicExpression; } /** * Ruft den Wert der fixedTopicSet-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isFixedTopicSet() { return fixedTopicSet; } /** * Legt den Wert der fixedTopicSet-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setFixedTopicSet(Boolean value) { this.fixedTopicSet = value; } /** * Gets the value of the topicExpressionDialect property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the topicExpressionDialect property. * *

* For example, to add a new item, do as follows: * *

	 * getTopicExpressionDialect().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getTopicExpressionDialect() { if (topicExpressionDialect == null) { topicExpressionDialect = new ArrayList(); } return this.topicExpressionDialect; } /** * Ruft den Wert der topicSet-Eigenschaft ab. * * @return possible object is {@link TopicSetType } * */ public TopicSetType getTopicSet() { return topicSet; } /** * Legt den Wert der topicSet-Eigenschaft fest. * * @param value * allowed object is {@link TopicSetType } * */ public void setTopicSet(TopicSetType value) { this.topicSet = value; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/Notify.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "notificationMessage", "any" }) @XmlRootElement(name = "Notify") public class Notify { @XmlElement(name = "NotificationMessage", required = true) protected List notificationMessage; @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the notificationMessage property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the notificationMessage property. * *

* For example, to add a new item, do as follows: * *

	 * getNotificationMessage().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link NotificationMessageHolderType } * * */ public List getNotificationMessage() { if (notificationMessage == null) { notificationMessage = new ArrayList(); } return this.notificationMessage; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/NotifyMessageNotSupportedFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r NotifyMessageNotSupportedFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NotifyMessageNotSupportedFaultType") public class NotifyMessageNotSupportedFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/ObjectFactory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; import org.w3._2005._08.addressing.EndpointReferenceType; /** * This object contains factory methods for each Java content interface and Java element interface generated in the org.oasis_open.docs.wsn.b_2 package. *

* An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema * derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this * class. * */ @XmlRegistry public class ObjectFactory { private final static QName _TerminationTime_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "TerminationTime"); private final static QName _NotifyMessageNotSupportedFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "NotifyMessageNotSupportedFault"); private final static QName _ConsumerReference_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "ConsumerReference"); private final static QName _UnsupportedPolicyRequestFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "UnsupportedPolicyRequestFault"); private final static QName _SubscriptionPolicy_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "SubscriptionPolicy"); private final static QName _NotificationMessage_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "NotificationMessage"); private final static QName _UnacceptableInitialTerminationTimeFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "UnacceptableInitialTerminationTimeFault"); private final static QName _InvalidTopicExpressionFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "InvalidTopicExpressionFault"); private final static QName _TopicExpressionDialect_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "TopicExpressionDialect"); private final static QName _Filter_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "Filter"); private final static QName _UnableToCreatePullPointFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "UnableToCreatePullPointFault"); private final static QName _CreationTime_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "CreationTime"); private final static QName _ResumeFailedFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "ResumeFailedFault"); private final static QName _InvalidProducerPropertiesExpressionFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "InvalidProducerPropertiesExpressionFault"); private final static QName _UnableToGetMessagesFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "UnableToGetMessagesFault"); private final static QName _MessageContent_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "MessageContent"); private final static QName _TopicExpressionDialectUnknownFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "TopicExpressionDialectUnknownFault"); private final static QName _UnableToDestroySubscriptionFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "UnableToDestroySubscriptionFault"); private final static QName _UnrecognizedPolicyRequestFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "UnrecognizedPolicyRequestFault"); private final static QName _SubscribeCreationFailedFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "SubscribeCreationFailedFault"); private final static QName _ProducerReference_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "ProducerReference"); private final static QName _NoCurrentMessageOnTopicFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "NoCurrentMessageOnTopicFault"); private final static QName _MultipleTopicsSpecifiedFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "MultipleTopicsSpecifiedFault"); private final static QName _UnacceptableTerminationTimeFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "UnacceptableTerminationTimeFault"); private final static QName _CurrentTime_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "CurrentTime"); private final static QName _TopicExpression_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "TopicExpression"); private final static QName _ProducerProperties_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "ProducerProperties"); private final static QName _TopicNotSupportedFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "TopicNotSupportedFault"); private final static QName _InvalidFilterFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "InvalidFilterFault"); private final static QName _FixedTopicSet_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "FixedTopicSet"); private final static QName _Topic_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "Topic"); private final static QName _UnableToDestroyPullPointFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "UnableToDestroyPullPointFault"); private final static QName _InvalidMessageContentExpressionFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "InvalidMessageContentExpressionFault"); private final static QName _PauseFailedFault_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "PauseFailedFault"); private final static QName _SubscriptionReference_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "SubscriptionReference"); private final static QName _SubscribeInitialTerminationTime_QNAME = new QName("http://docs.oasis-open.org/wsn/b-2", "InitialTerminationTime"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.oasis_open.docs.wsn.b_2 * */ public ObjectFactory() { } /** * Create an instance of {@link Subscribe } * */ public Subscribe createSubscribe() { return new Subscribe(); } /** * Create an instance of {@link NotificationMessageHolderType } * */ public NotificationMessageHolderType createNotificationMessageHolderType() { return new NotificationMessageHolderType(); } /** * Create an instance of {@link TopicExpressionDialectUnknownFaultType } * */ public TopicExpressionDialectUnknownFaultType createTopicExpressionDialectUnknownFaultType() { return new TopicExpressionDialectUnknownFaultType(); } /** * Create an instance of {@link QueryExpressionType } * */ public QueryExpressionType createQueryExpressionType() { return new QueryExpressionType(); } /** * Create an instance of {@link UnableToGetMessagesFaultType } * */ public UnableToGetMessagesFaultType createUnableToGetMessagesFaultType() { return new UnableToGetMessagesFaultType(); } /** * Create an instance of {@link ResumeSubscription } * */ public ResumeSubscription createResumeSubscription() { return new ResumeSubscription(); } /** * Create an instance of {@link ResumeFailedFaultType } * */ public ResumeFailedFaultType createResumeFailedFaultType() { return new ResumeFailedFaultType(); } /** * Create an instance of {@link InvalidProducerPropertiesExpressionFaultType } * */ public InvalidProducerPropertiesExpressionFaultType createInvalidProducerPropertiesExpressionFaultType() { return new InvalidProducerPropertiesExpressionFaultType(); } /** * Create an instance of {@link DestroyPullPointResponse } * */ public DestroyPullPointResponse createDestroyPullPointResponse() { return new DestroyPullPointResponse(); } /** * Create an instance of {@link PauseSubscriptionResponse } * */ public PauseSubscriptionResponse createPauseSubscriptionResponse() { return new PauseSubscriptionResponse(); } /** * Create an instance of {@link ResumeSubscriptionResponse } * */ public ResumeSubscriptionResponse createResumeSubscriptionResponse() { return new ResumeSubscriptionResponse(); } /** * Create an instance of {@link SubscribeCreationFailedFaultType } * */ public SubscribeCreationFailedFaultType createSubscribeCreationFailedFaultType() { return new SubscribeCreationFailedFaultType(); } /** * Create an instance of {@link RenewResponse } * */ public RenewResponse createRenewResponse() { return new RenewResponse(); } /** * Create an instance of {@link UnableToDestroySubscriptionFaultType } * */ public UnableToDestroySubscriptionFaultType createUnableToDestroySubscriptionFaultType() { return new UnableToDestroySubscriptionFaultType(); } /** * Create an instance of {@link UnrecognizedPolicyRequestFaultType } * */ public UnrecognizedPolicyRequestFaultType createUnrecognizedPolicyRequestFaultType() { return new UnrecognizedPolicyRequestFaultType(); } /** * Create an instance of {@link FilterType } * */ public FilterType createFilterType() { return new FilterType(); } /** * Create an instance of {@link Subscribe.SubscriptionPolicy } * */ public Subscribe.SubscriptionPolicy createSubscribeSubscriptionPolicy() { return new Subscribe.SubscriptionPolicy(); } /** * Create an instance of {@link NotificationProducerRP } * */ public NotificationProducerRP createNotificationProducerRP() { return new NotificationProducerRP(); } /** * Create an instance of {@link TopicExpressionType } * */ public TopicExpressionType createTopicExpressionType() { return new TopicExpressionType(); } /** * Create an instance of {@link GetMessages } * */ public GetMessages createGetMessages() { return new GetMessages(); } /** * Create an instance of {@link Renew } * */ public Renew createRenew() { return new Renew(); } /** * Create an instance of {@link UseRaw } * */ public UseRaw createUseRaw() { return new UseRaw(); } /** * Create an instance of {@link CreatePullPoint } * */ public CreatePullPoint createCreatePullPoint() { return new CreatePullPoint(); } /** * Create an instance of {@link NotifyMessageNotSupportedFaultType } * */ public NotifyMessageNotSupportedFaultType createNotifyMessageNotSupportedFaultType() { return new NotifyMessageNotSupportedFaultType(); } /** * Create an instance of {@link GetMessagesResponse } * */ public GetMessagesResponse createGetMessagesResponse() { return new GetMessagesResponse(); } /** * Create an instance of {@link SubscribeResponse } * */ public SubscribeResponse createSubscribeResponse() { return new SubscribeResponse(); } /** * Create an instance of {@link CreatePullPointResponse } * */ public CreatePullPointResponse createCreatePullPointResponse() { return new CreatePullPointResponse(); } /** * Create an instance of {@link UnableToCreatePullPointFaultType } * */ public UnableToCreatePullPointFaultType createUnableToCreatePullPointFaultType() { return new UnableToCreatePullPointFaultType(); } /** * Create an instance of {@link UnacceptableInitialTerminationTimeFaultType } * */ public UnacceptableInitialTerminationTimeFaultType createUnacceptableInitialTerminationTimeFaultType() { return new UnacceptableInitialTerminationTimeFaultType(); } /** * Create an instance of {@link InvalidTopicExpressionFaultType } * */ public InvalidTopicExpressionFaultType createInvalidTopicExpressionFaultType() { return new InvalidTopicExpressionFaultType(); } /** * Create an instance of {@link UnsupportedPolicyRequestFaultType } * */ public UnsupportedPolicyRequestFaultType createUnsupportedPolicyRequestFaultType() { return new UnsupportedPolicyRequestFaultType(); } /** * Create an instance of {@link SubscriptionManagerRP } * */ public SubscriptionManagerRP createSubscriptionManagerRP() { return new SubscriptionManagerRP(); } /** * Create an instance of {@link SubscriptionPolicyType } * */ public SubscriptionPolicyType createSubscriptionPolicyType() { return new SubscriptionPolicyType(); } /** * Create an instance of {@link Notify } * */ public Notify createNotify() { return new Notify(); } /** * Create an instance of {@link DestroyPullPoint } * */ public DestroyPullPoint createDestroyPullPoint() { return new DestroyPullPoint(); } /** * Create an instance of {@link UnsubscribeResponse } * */ public UnsubscribeResponse createUnsubscribeResponse() { return new UnsubscribeResponse(); } /** * Create an instance of {@link GetCurrentMessageResponse } * */ public GetCurrentMessageResponse createGetCurrentMessageResponse() { return new GetCurrentMessageResponse(); } /** * Create an instance of {@link PauseFailedFaultType } * */ public PauseFailedFaultType createPauseFailedFaultType() { return new PauseFailedFaultType(); } /** * Create an instance of {@link GetCurrentMessage } * */ public GetCurrentMessage createGetCurrentMessage() { return new GetCurrentMessage(); } /** * Create an instance of {@link InvalidMessageContentExpressionFaultType } * */ public InvalidMessageContentExpressionFaultType createInvalidMessageContentExpressionFaultType() { return new InvalidMessageContentExpressionFaultType(); } /** * Create an instance of {@link UnableToDestroyPullPointFaultType } * */ public UnableToDestroyPullPointFaultType createUnableToDestroyPullPointFaultType() { return new UnableToDestroyPullPointFaultType(); } /** * Create an instance of {@link MultipleTopicsSpecifiedFaultType } * */ public MultipleTopicsSpecifiedFaultType createMultipleTopicsSpecifiedFaultType() { return new MultipleTopicsSpecifiedFaultType(); } /** * Create an instance of {@link NoCurrentMessageOnTopicFaultType } * */ public NoCurrentMessageOnTopicFaultType createNoCurrentMessageOnTopicFaultType() { return new NoCurrentMessageOnTopicFaultType(); } /** * Create an instance of {@link InvalidFilterFaultType } * */ public InvalidFilterFaultType createInvalidFilterFaultType() { return new InvalidFilterFaultType(); } /** * Create an instance of {@link TopicNotSupportedFaultType } * */ public TopicNotSupportedFaultType createTopicNotSupportedFaultType() { return new TopicNotSupportedFaultType(); } /** * Create an instance of {@link PauseSubscription } * */ public PauseSubscription createPauseSubscription() { return new PauseSubscription(); } /** * Create an instance of {@link Unsubscribe } * */ public Unsubscribe createUnsubscribe() { return new Unsubscribe(); } /** * Create an instance of {@link UnacceptableTerminationTimeFaultType } * */ public UnacceptableTerminationTimeFaultType createUnacceptableTerminationTimeFaultType() { return new UnacceptableTerminationTimeFaultType(); } /** * Create an instance of {@link NotificationMessageHolderType.Message } * */ public NotificationMessageHolderType.Message createNotificationMessageHolderTypeMessage() { return new NotificationMessageHolderType.Message(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link XMLGregorianCalendar }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "TerminationTime") public JAXBElement createTerminationTime(XMLGregorianCalendar value) { return new JAXBElement(_TerminationTime_QNAME, XMLGregorianCalendar.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link NotifyMessageNotSupportedFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "NotifyMessageNotSupportedFault") public JAXBElement createNotifyMessageNotSupportedFault(NotifyMessageNotSupportedFaultType value) { return new JAXBElement(_NotifyMessageNotSupportedFault_QNAME, NotifyMessageNotSupportedFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link EndpointReferenceType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "ConsumerReference") public JAXBElement createConsumerReference(EndpointReferenceType value) { return new JAXBElement(_ConsumerReference_QNAME, EndpointReferenceType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link UnsupportedPolicyRequestFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "UnsupportedPolicyRequestFault") public JAXBElement createUnsupportedPolicyRequestFault(UnsupportedPolicyRequestFaultType value) { return new JAXBElement(_UnsupportedPolicyRequestFault_QNAME, UnsupportedPolicyRequestFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link SubscriptionPolicyType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "SubscriptionPolicy") public JAXBElement createSubscriptionPolicy(SubscriptionPolicyType value) { return new JAXBElement(_SubscriptionPolicy_QNAME, SubscriptionPolicyType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link NotificationMessageHolderType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "NotificationMessage") public JAXBElement createNotificationMessage(NotificationMessageHolderType value) { return new JAXBElement(_NotificationMessage_QNAME, NotificationMessageHolderType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link UnacceptableInitialTerminationTimeFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "UnacceptableInitialTerminationTimeFault") public JAXBElement createUnacceptableInitialTerminationTimeFault( UnacceptableInitialTerminationTimeFaultType value) { return new JAXBElement(_UnacceptableInitialTerminationTimeFault_QNAME, UnacceptableInitialTerminationTimeFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link InvalidTopicExpressionFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "InvalidTopicExpressionFault") public JAXBElement createInvalidTopicExpressionFault(InvalidTopicExpressionFaultType value) { return new JAXBElement(_InvalidTopicExpressionFault_QNAME, InvalidTopicExpressionFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "TopicExpressionDialect") public JAXBElement createTopicExpressionDialect(String value) { return new JAXBElement(_TopicExpressionDialect_QNAME, String.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link FilterType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "Filter") public JAXBElement createFilter(FilterType value) { return new JAXBElement(_Filter_QNAME, FilterType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link UnableToCreatePullPointFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "UnableToCreatePullPointFault") public JAXBElement createUnableToCreatePullPointFault(UnableToCreatePullPointFaultType value) { return new JAXBElement(_UnableToCreatePullPointFault_QNAME, UnableToCreatePullPointFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link XMLGregorianCalendar }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "CreationTime") public JAXBElement createCreationTime(XMLGregorianCalendar value) { return new JAXBElement(_CreationTime_QNAME, XMLGregorianCalendar.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link ResumeFailedFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "ResumeFailedFault") public JAXBElement createResumeFailedFault(ResumeFailedFaultType value) { return new JAXBElement(_ResumeFailedFault_QNAME, ResumeFailedFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link InvalidProducerPropertiesExpressionFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "InvalidProducerPropertiesExpressionFault") public JAXBElement createInvalidProducerPropertiesExpressionFault( InvalidProducerPropertiesExpressionFaultType value) { return new JAXBElement(_InvalidProducerPropertiesExpressionFault_QNAME, InvalidProducerPropertiesExpressionFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link UnableToGetMessagesFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "UnableToGetMessagesFault") public JAXBElement createUnableToGetMessagesFault(UnableToGetMessagesFaultType value) { return new JAXBElement(_UnableToGetMessagesFault_QNAME, UnableToGetMessagesFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link QueryExpressionType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "MessageContent") public JAXBElement createMessageContent(QueryExpressionType value) { return new JAXBElement(_MessageContent_QNAME, QueryExpressionType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link TopicExpressionDialectUnknownFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "TopicExpressionDialectUnknownFault") public JAXBElement createTopicExpressionDialectUnknownFault(TopicExpressionDialectUnknownFaultType value) { return new JAXBElement(_TopicExpressionDialectUnknownFault_QNAME, TopicExpressionDialectUnknownFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link UnableToDestroySubscriptionFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "UnableToDestroySubscriptionFault") public JAXBElement createUnableToDestroySubscriptionFault(UnableToDestroySubscriptionFaultType value) { return new JAXBElement(_UnableToDestroySubscriptionFault_QNAME, UnableToDestroySubscriptionFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link UnrecognizedPolicyRequestFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "UnrecognizedPolicyRequestFault") public JAXBElement createUnrecognizedPolicyRequestFault(UnrecognizedPolicyRequestFaultType value) { return new JAXBElement(_UnrecognizedPolicyRequestFault_QNAME, UnrecognizedPolicyRequestFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link SubscribeCreationFailedFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "SubscribeCreationFailedFault") public JAXBElement createSubscribeCreationFailedFault(SubscribeCreationFailedFaultType value) { return new JAXBElement(_SubscribeCreationFailedFault_QNAME, SubscribeCreationFailedFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link EndpointReferenceType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "ProducerReference") public JAXBElement createProducerReference(EndpointReferenceType value) { return new JAXBElement(_ProducerReference_QNAME, EndpointReferenceType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link NoCurrentMessageOnTopicFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "NoCurrentMessageOnTopicFault") public JAXBElement createNoCurrentMessageOnTopicFault(NoCurrentMessageOnTopicFaultType value) { return new JAXBElement(_NoCurrentMessageOnTopicFault_QNAME, NoCurrentMessageOnTopicFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link MultipleTopicsSpecifiedFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "MultipleTopicsSpecifiedFault") public JAXBElement createMultipleTopicsSpecifiedFault(MultipleTopicsSpecifiedFaultType value) { return new JAXBElement(_MultipleTopicsSpecifiedFault_QNAME, MultipleTopicsSpecifiedFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link UnacceptableTerminationTimeFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "UnacceptableTerminationTimeFault") public JAXBElement createUnacceptableTerminationTimeFault(UnacceptableTerminationTimeFaultType value) { return new JAXBElement(_UnacceptableTerminationTimeFault_QNAME, UnacceptableTerminationTimeFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link XMLGregorianCalendar }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "CurrentTime") public JAXBElement createCurrentTime(XMLGregorianCalendar value) { return new JAXBElement(_CurrentTime_QNAME, XMLGregorianCalendar.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link TopicExpressionType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "TopicExpression") public JAXBElement createTopicExpression(TopicExpressionType value) { return new JAXBElement(_TopicExpression_QNAME, TopicExpressionType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link QueryExpressionType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "ProducerProperties") public JAXBElement createProducerProperties(QueryExpressionType value) { return new JAXBElement(_ProducerProperties_QNAME, QueryExpressionType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link TopicNotSupportedFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "TopicNotSupportedFault") public JAXBElement createTopicNotSupportedFault(TopicNotSupportedFaultType value) { return new JAXBElement(_TopicNotSupportedFault_QNAME, TopicNotSupportedFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link InvalidFilterFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "InvalidFilterFault") public JAXBElement createInvalidFilterFault(InvalidFilterFaultType value) { return new JAXBElement(_InvalidFilterFault_QNAME, InvalidFilterFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "FixedTopicSet", defaultValue = "true") public JAXBElement createFixedTopicSet(Boolean value) { return new JAXBElement(_FixedTopicSet_QNAME, Boolean.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link TopicExpressionType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "Topic") public JAXBElement createTopic(TopicExpressionType value) { return new JAXBElement(_Topic_QNAME, TopicExpressionType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link UnableToDestroyPullPointFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "UnableToDestroyPullPointFault") public JAXBElement createUnableToDestroyPullPointFault(UnableToDestroyPullPointFaultType value) { return new JAXBElement(_UnableToDestroyPullPointFault_QNAME, UnableToDestroyPullPointFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link InvalidMessageContentExpressionFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "InvalidMessageContentExpressionFault") public JAXBElement createInvalidMessageContentExpressionFault(InvalidMessageContentExpressionFaultType value) { return new JAXBElement(_InvalidMessageContentExpressionFault_QNAME, InvalidMessageContentExpressionFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link PauseFailedFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "PauseFailedFault") public JAXBElement createPauseFailedFault(PauseFailedFaultType value) { return new JAXBElement(_PauseFailedFault_QNAME, PauseFailedFaultType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link EndpointReferenceType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "SubscriptionReference") public JAXBElement createSubscriptionReference(EndpointReferenceType value) { return new JAXBElement(_SubscriptionReference_QNAME, EndpointReferenceType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/b-2", name = "InitialTerminationTime", scope = Subscribe.class) public JAXBElement createSubscribeInitialTerminationTime(String value) { return new JAXBElement(_SubscribeInitialTerminationTime_QNAME, String.class, Subscribe.class, value); } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/PauseFailedFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r PauseFailedFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PauseFailedFaultType") public class PauseFailedFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/PauseSubscription.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) @XmlRootElement(name = "PauseSubscription") public class PauseSubscription { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/PauseSubscriptionResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) @XmlRootElement(name = "PauseSubscriptionResponse") public class PauseSubscriptionResponse { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/QueryExpressionType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlMixed; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r QueryExpressionType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "QueryExpressionType", propOrder = { "content" }) public class QueryExpressionType { @XmlMixed @XmlAnyElement(lax = true) protected List content; @XmlAttribute(name = "Dialect", required = true) @XmlSchemaType(name = "anyURI") protected String dialect; /** * Gets the value of the content property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the content property. * *

* For example, to add a new item, do as follows: * *

	 * getContent().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } {@link String } * * */ public List getContent() { if (content == null) { content = new ArrayList(); } return this.content; } /** * Ruft den Wert der dialect-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDialect() { return dialect; } /** * Legt den Wert der dialect-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDialect(String value) { this.dialect = value; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/Renew.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "terminationTime", "any" }) @XmlRootElement(name = "Renew") public class Renew { @XmlElement(name = "TerminationTime", required = true, nillable = true) protected String terminationTime; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der terminationTime-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getTerminationTime() { return terminationTime; } /** * Legt den Wert der terminationTime-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setTerminationTime(String value) { this.terminationTime = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/RenewResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "terminationTime", "currentTime", "any" }) @XmlRootElement(name = "RenewResponse") public class RenewResponse { @XmlElement(name = "TerminationTime", required = true, nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar terminationTime; @XmlElement(name = "CurrentTime") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar currentTime; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der terminationTime-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTerminationTime() { return terminationTime; } /** * Legt den Wert der terminationTime-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setTerminationTime(XMLGregorianCalendar value) { this.terminationTime = value; } /** * Ruft den Wert der currentTime-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCurrentTime() { return currentTime; } /** * Legt den Wert der currentTime-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setCurrentTime(XMLGregorianCalendar value) { this.currentTime = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/ResumeFailedFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r ResumeFailedFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResumeFailedFaultType") public class ResumeFailedFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/ResumeSubscription.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) @XmlRootElement(name = "ResumeSubscription") public class ResumeSubscription { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/ResumeSubscriptionResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) @XmlRootElement(name = "ResumeSubscriptionResponse") public class ResumeSubscriptionResponse { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/Subscribe.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3._2005._08.addressing.EndpointReferenceType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *               
 *             
 *           
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "consumerReference", "filter", "initialTerminationTime", "subscriptionPolicy", "any" }) @XmlRootElement(name = "Subscribe") public class Subscribe { @XmlElement(name = "ConsumerReference", required = true) protected EndpointReferenceType consumerReference; @XmlElement(name = "Filter") protected FilterType filter; @XmlElementRef(name = "InitialTerminationTime", namespace = "http://docs.oasis-open.org/wsn/b-2", type = JAXBElement.class, required = false) protected JAXBElement initialTerminationTime; @XmlElement(name = "SubscriptionPolicy") protected Subscribe.SubscriptionPolicy subscriptionPolicy; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der consumerReference-Eigenschaft ab. * * @return possible object is {@link EndpointReferenceType } * */ public EndpointReferenceType getConsumerReference() { return consumerReference; } /** * Legt den Wert der consumerReference-Eigenschaft fest. * * @param value * allowed object is {@link EndpointReferenceType } * */ public void setConsumerReference(EndpointReferenceType value) { this.consumerReference = value; } /** * Ruft den Wert der filter-Eigenschaft ab. * * @return possible object is {@link FilterType } * */ public FilterType getFilter() { return filter; } /** * Legt den Wert der filter-Eigenschaft fest. * * @param value * allowed object is {@link FilterType } * */ public void setFilter(FilterType value) { this.filter = value; } /** * Ruft den Wert der initialTerminationTime-Eigenschaft ab. * * @return possible object is {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getInitialTerminationTime() { return initialTerminationTime; } /** * Legt den Wert der initialTerminationTime-Eigenschaft fest. * * @param value * allowed object is {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setInitialTerminationTime(JAXBElement value) { this.initialTerminationTime = value; } /** * Ruft den Wert der subscriptionPolicy-Eigenschaft ab. * * @return possible object is {@link Subscribe.SubscriptionPolicy } * */ public Subscribe.SubscriptionPolicy getSubscriptionPolicy() { return subscriptionPolicy; } /** * Legt den Wert der subscriptionPolicy-Eigenschaft fest. * * @param value * allowed object is {@link Subscribe.SubscriptionPolicy } * */ public void setSubscriptionPolicy(Subscribe.SubscriptionPolicy value) { this.subscriptionPolicy = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *         
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) public static class SubscriptionPolicy { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB * object. This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

		 * getAny().add(newItem);
		 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/SubscribeCreationFailedFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r SubscribeCreationFailedFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SubscribeCreationFailedFaultType") public class SubscribeCreationFailedFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/SubscribeResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import org.w3._2005._08.addressing.EndpointReferenceType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "subscriptionReference", "currentTime", "terminationTime", "any" }) @XmlRootElement(name = "SubscribeResponse") public class SubscribeResponse { @XmlElement(name = "SubscriptionReference", required = true) protected EndpointReferenceType subscriptionReference; @XmlElement(name = "CurrentTime") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar currentTime; @XmlElement(name = "TerminationTime", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar terminationTime; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der subscriptionReference-Eigenschaft ab. * * @return possible object is {@link EndpointReferenceType } * */ public EndpointReferenceType getSubscriptionReference() { return subscriptionReference; } /** * Legt den Wert der subscriptionReference-Eigenschaft fest. * * @param value * allowed object is {@link EndpointReferenceType } * */ public void setSubscriptionReference(EndpointReferenceType value) { this.subscriptionReference = value; } /** * Ruft den Wert der currentTime-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCurrentTime() { return currentTime; } /** * Legt den Wert der currentTime-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setCurrentTime(XMLGregorianCalendar value) { this.currentTime = value; } /** * Ruft den Wert der terminationTime-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTerminationTime() { return terminationTime; } /** * Legt den Wert der terminationTime-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setTerminationTime(XMLGregorianCalendar value) { this.terminationTime = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/SubscriptionManagerRP.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import org.w3._2005._08.addressing.EndpointReferenceType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "consumerReference", "filter", "subscriptionPolicy", "creationTime" }) @XmlRootElement(name = "SubscriptionManagerRP") public class SubscriptionManagerRP { @XmlElement(name = "ConsumerReference", required = true) protected EndpointReferenceType consumerReference; @XmlElement(name = "Filter") protected FilterType filter; @XmlElement(name = "SubscriptionPolicy") protected SubscriptionPolicyType subscriptionPolicy; @XmlElement(name = "CreationTime") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar creationTime; /** * Ruft den Wert der consumerReference-Eigenschaft ab. * * @return possible object is {@link EndpointReferenceType } * */ public EndpointReferenceType getConsumerReference() { return consumerReference; } /** * Legt den Wert der consumerReference-Eigenschaft fest. * * @param value * allowed object is {@link EndpointReferenceType } * */ public void setConsumerReference(EndpointReferenceType value) { this.consumerReference = value; } /** * Ruft den Wert der filter-Eigenschaft ab. * * @return possible object is {@link FilterType } * */ public FilterType getFilter() { return filter; } /** * Legt den Wert der filter-Eigenschaft fest. * * @param value * allowed object is {@link FilterType } * */ public void setFilter(FilterType value) { this.filter = value; } /** * Ruft den Wert der subscriptionPolicy-Eigenschaft ab. * * @return possible object is {@link SubscriptionPolicyType } * */ public SubscriptionPolicyType getSubscriptionPolicy() { return subscriptionPolicy; } /** * Legt den Wert der subscriptionPolicy-Eigenschaft fest. * * @param value * allowed object is {@link SubscriptionPolicyType } * */ public void setSubscriptionPolicy(SubscriptionPolicyType value) { this.subscriptionPolicy = value; } /** * Ruft den Wert der creationTime-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreationTime() { return creationTime; } /** * Legt den Wert der creationTime-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setCreationTime(XMLGregorianCalendar value) { this.creationTime = value; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/SubscriptionPolicyType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r SubscriptionPolicyType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SubscriptionPolicyType", propOrder = { "any" }) public class SubscriptionPolicyType { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/TopicExpressionDialectUnknownFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r TopicExpressionDialectUnknownFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TopicExpressionDialectUnknownFaultType") public class TopicExpressionDialectUnknownFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/TopicExpressionType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlMixed; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r TopicExpressionType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TopicExpressionType", propOrder = { "content" }) public class TopicExpressionType { @XmlMixed @XmlAnyElement(lax = true) protected List content; @XmlAttribute(name = "Dialect", required = true) @XmlSchemaType(name = "anyURI") protected String dialect; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the content property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the content property. * *

* For example, to add a new item, do as follows: * *

	 * getContent().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } {@link String } * * */ public List getContent() { if (content == null) { content = new ArrayList(); } return this.content; } /** * Ruft den Wert der dialect-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDialect() { return dialect; } /** * Legt den Wert der dialect-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDialect(String value) { this.dialect = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/TopicNotSupportedFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r TopicNotSupportedFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TopicNotSupportedFaultType") public class TopicNotSupportedFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/UnableToCreatePullPointFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r UnableToCreatePullPointFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UnableToCreatePullPointFaultType") public class UnableToCreatePullPointFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/UnableToDestroyPullPointFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r UnableToDestroyPullPointFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UnableToDestroyPullPointFaultType") public class UnableToDestroyPullPointFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/UnableToDestroySubscriptionFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r UnableToDestroySubscriptionFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UnableToDestroySubscriptionFaultType") public class UnableToDestroySubscriptionFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/UnableToGetMessagesFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r UnableToGetMessagesFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UnableToGetMessagesFaultType") public class UnableToGetMessagesFaultType extends BaseFaultType { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/UnacceptableInitialTerminationTimeFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r UnacceptableInitialTerminationTimeFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UnacceptableInitialTerminationTimeFaultType", propOrder = { "minimumTime", "maximumTime" }) public class UnacceptableInitialTerminationTimeFaultType extends BaseFaultType { @XmlElement(name = "MinimumTime", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar minimumTime; @XmlElement(name = "MaximumTime") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar maximumTime; /** * Ruft den Wert der minimumTime-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMinimumTime() { return minimumTime; } /** * Legt den Wert der minimumTime-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setMinimumTime(XMLGregorianCalendar value) { this.minimumTime = value; } /** * Ruft den Wert der maximumTime-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMaximumTime() { return maximumTime; } /** * Legt den Wert der maximumTime-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setMaximumTime(XMLGregorianCalendar value) { this.maximumTime = value; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/UnacceptableTerminationTimeFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r UnacceptableTerminationTimeFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UnacceptableTerminationTimeFaultType", propOrder = { "minimumTime", "maximumTime" }) public class UnacceptableTerminationTimeFaultType extends BaseFaultType { @XmlElement(name = "MinimumTime", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar minimumTime; @XmlElement(name = "MaximumTime") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar maximumTime; /** * Ruft den Wert der minimumTime-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMinimumTime() { return minimumTime; } /** * Legt den Wert der minimumTime-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setMinimumTime(XMLGregorianCalendar value) { this.minimumTime = value; } /** * Ruft den Wert der maximumTime-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMaximumTime() { return maximumTime; } /** * Legt den Wert der maximumTime-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setMaximumTime(XMLGregorianCalendar value) { this.maximumTime = value; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/UnrecognizedPolicyRequestFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r UnrecognizedPolicyRequestFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UnrecognizedPolicyRequestFaultType", propOrder = { "unrecognizedPolicy" }) public class UnrecognizedPolicyRequestFaultType extends BaseFaultType { @XmlElement(name = "UnrecognizedPolicy") protected List unrecognizedPolicy; /** * Gets the value of the unrecognizedPolicy property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the unrecognizedPolicy property. * *

* For example, to add a new item, do as follows: * *

	 * getUnrecognizedPolicy().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link QName } * * */ public List getUnrecognizedPolicy() { if (unrecognizedPolicy == null) { unrecognizedPolicy = new ArrayList(); } return this.unrecognizedPolicy; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/Unsubscribe.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) @XmlRootElement(name = "Unsubscribe") public class Unsubscribe { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/UnsubscribeResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) @XmlRootElement(name = "UnsubscribeResponse") public class UnsubscribeResponse { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/UnsupportedPolicyRequestFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.oasis_open.docs.wsrf.bf_2.BaseFaultType; /** *

* Java-Klasse f�r UnsupportedPolicyRequestFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UnsupportedPolicyRequestFaultType", propOrder = { "unsupportedPolicy" }) public class UnsupportedPolicyRequestFaultType extends BaseFaultType { @XmlElement(name = "UnsupportedPolicy") protected List unsupportedPolicy; /** * Gets the value of the unsupportedPolicy property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the unsupportedPolicy property. * *

* For example, to add a new item, do as follows: * *

	 * getUnsupportedPolicy().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link QName } * * */ public List getUnsupportedPolicy() { if (unsupportedPolicy == null) { unsupportedPolicy = new ArrayList(); } return this.unsupportedPolicy; } } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/UseRaw.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.b_2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "UseRaw") public class UseRaw { } ================================================ FILE: src/org/oasis_open/docs/wsn/b_2/package-info.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // @javax.xml.bind.annotation.XmlSchema(namespace = "http://docs.oasis-open.org/wsn/b-2", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) package org.oasis_open.docs.wsn.b_2; ================================================ FILE: src/org/oasis_open/docs/wsn/t_1/Documentation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.t_1; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlMixed; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Documentation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Documentation", propOrder = { "content" }) public class Documentation { @XmlMixed @XmlAnyElement(lax = true) protected List content; /** * Gets the value of the content property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the content property. * *

* For example, to add a new item, do as follows: * *

	 * getContent().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } {@link String } * * */ public List getContent() { if (content == null) { content = new ArrayList(); } return this.content; } } ================================================ FILE: src/org/oasis_open/docs/wsn/t_1/ExtensibleDocumented.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.t_1; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r ExtensibleDocumented complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ExtensibleDocumented", propOrder = { "documentation" }) @XmlSeeAlso({ TopicSetType.class, TopicNamespaceType.class, TopicType.class }) public abstract class ExtensibleDocumented { protected Documentation documentation; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der documentation-Eigenschaft ab. * * @return possible object is {@link Documentation } * */ public Documentation getDocumentation() { return documentation; } /** * Legt den Wert der documentation-Eigenschaft fest. * * @param value * allowed object is {@link Documentation } * */ public void setDocumentation(Documentation value) { this.documentation = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/oasis_open/docs/wsn/t_1/ObjectFactory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.t_1; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each Java content interface and Java element interface generated in the org.oasis_open.docs.wsn.t_1 package. *

* An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema * derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this * class. * */ @XmlRegistry public class ObjectFactory { private final static QName _TopicSet_QNAME = new QName("http://docs.oasis-open.org/wsn/t-1", "TopicSet"); private final static QName _TopicNamespace_QNAME = new QName("http://docs.oasis-open.org/wsn/t-1", "TopicNamespace"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.oasis_open.docs.wsn.t_1 * */ public ObjectFactory() { } /** * Create an instance of {@link TopicNamespaceType } * */ public TopicNamespaceType createTopicNamespaceType() { return new TopicNamespaceType(); } /** * Create an instance of {@link TopicSetType } * */ public TopicSetType createTopicSetType() { return new TopicSetType(); } /** * Create an instance of {@link Documentation } * */ public Documentation createDocumentation() { return new Documentation(); } /** * Create an instance of {@link TopicType } * */ public TopicType createTopicType() { return new TopicType(); } /** * Create an instance of {@link QueryExpressionType } * */ public QueryExpressionType createQueryExpressionType() { return new QueryExpressionType(); } /** * Create an instance of {@link TopicNamespaceType.Topic } * */ public TopicNamespaceType.Topic createTopicNamespaceTypeTopic() { return new TopicNamespaceType.Topic(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link TopicSetType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/t-1", name = "TopicSet") public JAXBElement createTopicSet(TopicSetType value) { return new JAXBElement(_TopicSet_QNAME, TopicSetType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link TopicNamespaceType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsn/t-1", name = "TopicNamespace") public JAXBElement createTopicNamespace(TopicNamespaceType value) { return new JAXBElement(_TopicNamespace_QNAME, TopicNamespaceType.class, null, value); } } ================================================ FILE: src/org/oasis_open/docs/wsn/t_1/QueryExpressionType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.t_1; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlMixed; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r QueryExpressionType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "QueryExpressionType", propOrder = { "content" }) public class QueryExpressionType { @XmlMixed @XmlAnyElement(lax = true) protected List content; @XmlAttribute(name = "Dialect", required = true) @XmlSchemaType(name = "anyURI") protected String dialect; /** * Gets the value of the content property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the content property. * *

* For example, to add a new item, do as follows: * *

	 * getContent().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } {@link String } * * */ public List getContent() { if (content == null) { content = new ArrayList(); } return this.content; } /** * Ruft den Wert der dialect-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDialect() { return dialect; } /** * Legt den Wert der dialect-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDialect(String value) { this.dialect = value; } } ================================================ FILE: src/org/oasis_open/docs/wsn/t_1/TopicNamespaceType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.t_1; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import org.w3c.dom.Element; /** *

* Java-Klasse f�r TopicNamespaceType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *           
 *             
 *               
 *                 
 *                 
 *               
 *             
 *           
 *         
 *         
 *       
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TopicNamespaceType", propOrder = { "topic", "any" }) public class TopicNamespaceType extends ExtensibleDocumented { @XmlElement(name = "Topic") protected List topic; @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "name") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String name; @XmlAttribute(name = "targetNamespace", required = true) @XmlSchemaType(name = "anyURI") protected String targetNamespace; @XmlAttribute(name = "final") protected Boolean _final; /** * Gets the value of the topic property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the topic property. * *

* For example, to add a new item, do as follows: * *

	 * getTopic().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link TopicNamespaceType.Topic } * * */ public List getTopic() { if (topic == null) { topic = new ArrayList(); } return this.topic; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der targetNamespace-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getTargetNamespace() { return targetNamespace; } /** * Legt den Wert der targetNamespace-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setTargetNamespace(String value) { this.targetNamespace = value; } /** * Ruft den Wert der final-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public boolean isFinal() { if (_final == null) { return false; } else { return _final; } } /** * Legt den Wert der final-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setFinal(Boolean value) { this._final = value; } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Topic extends TopicType { @XmlAttribute(name = "parent") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String parent; /** * Ruft den Wert der parent-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getParent() { return parent; } /** * Legt den Wert der parent-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setParent(String value) { this.parent = value; } } } ================================================ FILE: src/org/oasis_open/docs/wsn/t_1/TopicSetType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.t_1; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r TopicSetType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TopicSetType", propOrder = { "any" }) public class TopicSetType extends ExtensibleDocumented { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/oasis_open/docs/wsn/t_1/TopicType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsn.t_1; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r TopicType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *       
 *         
 *           
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TopicType", propOrder = { "messagePattern", "topic", "any" }) @XmlSeeAlso({ org.oasis_open.docs.wsn.t_1.TopicNamespaceType.Topic.class }) public class TopicType extends ExtensibleDocumented { @XmlElement(name = "MessagePattern") protected QueryExpressionType messagePattern; @XmlElement(name = "Topic") protected List topic; @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "name", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String name; @XmlAttribute(name = "messageTypes") protected List messageTypes; @XmlAttribute(name = "final") protected Boolean _final; /** * Ruft den Wert der messagePattern-Eigenschaft ab. * * @return possible object is {@link QueryExpressionType } * */ public QueryExpressionType getMessagePattern() { return messagePattern; } /** * Legt den Wert der messagePattern-Eigenschaft fest. * * @param value * allowed object is {@link QueryExpressionType } * */ public void setMessagePattern(QueryExpressionType value) { this.messagePattern = value; } /** * Gets the value of the topic property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the topic property. * *

* For example, to add a new item, do as follows: * *

	 * getTopic().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link TopicType } * * */ public List getTopic() { if (topic == null) { topic = new ArrayList(); } return this.topic; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the messageTypes property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the messageTypes property. * *

* For example, to add a new item, do as follows: * *

	 * getMessageTypes().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link QName } * * */ public List getMessageTypes() { if (messageTypes == null) { messageTypes = new ArrayList(); } return this.messageTypes; } /** * Ruft den Wert der final-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public boolean isFinal() { if (_final == null) { return false; } else { return _final; } } /** * Legt den Wert der final-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setFinal(Boolean value) { this._final = value; } } ================================================ FILE: src/org/oasis_open/docs/wsn/t_1/package-info.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // @javax.xml.bind.annotation.XmlSchema(namespace = "http://docs.oasis-open.org/wsn/t-1", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) package org.oasis_open.docs.wsn.t_1; ================================================ FILE: src/org/oasis_open/docs/wsrf/bf_2/BaseFaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsrf.bf_2; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlMixed; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; import org.oasis_open.docs.wsn.b_2.InvalidFilterFaultType; import org.oasis_open.docs.wsn.b_2.InvalidMessageContentExpressionFaultType; import org.oasis_open.docs.wsn.b_2.InvalidProducerPropertiesExpressionFaultType; import org.oasis_open.docs.wsn.b_2.InvalidTopicExpressionFaultType; import org.oasis_open.docs.wsn.b_2.MultipleTopicsSpecifiedFaultType; import org.oasis_open.docs.wsn.b_2.NoCurrentMessageOnTopicFaultType; import org.oasis_open.docs.wsn.b_2.NotifyMessageNotSupportedFaultType; import org.oasis_open.docs.wsn.b_2.PauseFailedFaultType; import org.oasis_open.docs.wsn.b_2.ResumeFailedFaultType; import org.oasis_open.docs.wsn.b_2.SubscribeCreationFailedFaultType; import org.oasis_open.docs.wsn.b_2.TopicExpressionDialectUnknownFaultType; import org.oasis_open.docs.wsn.b_2.TopicNotSupportedFaultType; import org.oasis_open.docs.wsn.b_2.UnableToCreatePullPointFaultType; import org.oasis_open.docs.wsn.b_2.UnableToDestroyPullPointFaultType; import org.oasis_open.docs.wsn.b_2.UnableToDestroySubscriptionFaultType; import org.oasis_open.docs.wsn.b_2.UnableToGetMessagesFaultType; import org.oasis_open.docs.wsn.b_2.UnacceptableInitialTerminationTimeFaultType; import org.oasis_open.docs.wsn.b_2.UnacceptableTerminationTimeFaultType; import org.oasis_open.docs.wsn.b_2.UnrecognizedPolicyRequestFaultType; import org.oasis_open.docs.wsn.b_2.UnsupportedPolicyRequestFaultType; import org.w3._2005._08.addressing.EndpointReferenceType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r BaseFaultType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *           
 *             
 *               
 *                 
 *                 
 *               
 *             
 *           
 *         
 *         
 *           
 *             
 *               
 *                 
 *               
 *             
 *           
 *         
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *               
 *             
 *           
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BaseFaultType", propOrder = { "any", "timestamp", "originator", "errorCode", "description", "faultCause" }) @XmlSeeAlso({ TopicExpressionDialectUnknownFaultType.class, UnableToGetMessagesFaultType.class, ResumeFailedFaultType.class, InvalidProducerPropertiesExpressionFaultType.class, SubscribeCreationFailedFaultType.class, UnableToDestroySubscriptionFaultType.class, UnrecognizedPolicyRequestFaultType.class, NotifyMessageNotSupportedFaultType.class, UnableToCreatePullPointFaultType.class, UnacceptableInitialTerminationTimeFaultType.class, InvalidTopicExpressionFaultType.class, UnsupportedPolicyRequestFaultType.class, PauseFailedFaultType.class, InvalidMessageContentExpressionFaultType.class, UnableToDestroyPullPointFaultType.class, MultipleTopicsSpecifiedFaultType.class, NoCurrentMessageOnTopicFaultType.class, InvalidFilterFaultType.class, TopicNotSupportedFaultType.class, UnacceptableTerminationTimeFaultType.class }) public class BaseFaultType { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "Timestamp", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar timestamp; @XmlElement(name = "Originator") protected EndpointReferenceType originator; @XmlElement(name = "ErrorCode") protected BaseFaultType.ErrorCode errorCode; @XmlElement(name = "Description") protected List description; @XmlElement(name = "FaultCause") protected BaseFaultType.FaultCause faultCause; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der timestamp-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTimestamp() { return timestamp; } /** * Legt den Wert der timestamp-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setTimestamp(XMLGregorianCalendar value) { this.timestamp = value; } /** * Ruft den Wert der originator-Eigenschaft ab. * * @return possible object is {@link EndpointReferenceType } * */ public EndpointReferenceType getOriginator() { return originator; } /** * Legt den Wert der originator-Eigenschaft fest. * * @param value * allowed object is {@link EndpointReferenceType } * */ public void setOriginator(EndpointReferenceType value) { this.originator = value; } /** * Ruft den Wert der errorCode-Eigenschaft ab. * * @return possible object is {@link BaseFaultType.ErrorCode } * */ public BaseFaultType.ErrorCode getErrorCode() { return errorCode; } /** * Legt den Wert der errorCode-Eigenschaft fest. * * @param value * allowed object is {@link BaseFaultType.ErrorCode } * */ public void setErrorCode(BaseFaultType.ErrorCode value) { this.errorCode = value; } /** * Gets the value of the description property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the description property. * *

* For example, to add a new item, do as follows: * *

	 * getDescription().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link BaseFaultType.Description } * * */ public List getDescription() { if (description == null) { description = new ArrayList(); } return this.description; } /** * Ruft den Wert der faultCause-Eigenschaft ab. * * @return possible object is {@link BaseFaultType.FaultCause } * */ public BaseFaultType.FaultCause getFaultCause() { return faultCause; } /** * Legt den Wert der faultCause-Eigenschaft fest. * * @param value * allowed object is {@link BaseFaultType.FaultCause } * */ public void setFaultCause(BaseFaultType.FaultCause value) { this.faultCause = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class Description { @XmlValue protected String value; @XmlAttribute(name = "lang", namespace = "http://www.w3.org/XML/1998/namespace") protected String lang; /** * Ruft den Wert der value-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getValue() { return value; } /** * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setValue(String value) { this.value = value; } /** * Ruft den Wert der lang-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getLang() { return lang; } /** * Legt den Wert der lang-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setLang(String value) { this.lang = value; } } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) public static class ErrorCode { @XmlMixed @XmlAnyElement protected List content; @XmlAttribute(name = "dialect", required = true) @XmlSchemaType(name = "anyURI") protected String dialect; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the content property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB * object. This is why there is not a set method for the content property. * *

* For example, to add a new item, do as follows: * *

		 * getContent().add(newItem);
		 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link String } * * */ public List getContent() { if (content == null) { content = new ArrayList(); } return this.content; } /** * Ruft den Wert der dialect-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDialect() { return dialect; } /** * Legt den Wert der dialect-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDialect(String value) { this.dialect = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *         
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) public static class FaultCause { @XmlAnyElement(lax = true) protected Object any; /** * Ruft den Wert der any-Eigenschaft ab. * * @return possible object is {@link Element } {@link Object } * */ public Object getAny() { return any; } /** * Legt den Wert der any-Eigenschaft fest. * * @param value * allowed object is {@link Element } {@link Object } * */ public void setAny(Object value) { this.any = value; } } } ================================================ FILE: src/org/oasis_open/docs/wsrf/bf_2/ObjectFactory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.oasis_open.docs.wsrf.bf_2; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each Java content interface and Java element interface generated in the org.oasis_open.docs.wsrf.bf_2 package. *

* An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema * derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this * class. * */ @XmlRegistry public class ObjectFactory { private final static QName _BaseFault_QNAME = new QName("http://docs.oasis-open.org/wsrf/bf-2", "BaseFault"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.oasis_open.docs.wsrf.bf_2 * */ public ObjectFactory() { } /** * Create an instance of {@link BaseFaultType } * */ public BaseFaultType createBaseFaultType() { return new BaseFaultType(); } /** * Create an instance of {@link BaseFaultType.ErrorCode } * */ public BaseFaultType.ErrorCode createBaseFaultTypeErrorCode() { return new BaseFaultType.ErrorCode(); } /** * Create an instance of {@link BaseFaultType.Description } * */ public BaseFaultType.Description createBaseFaultTypeDescription() { return new BaseFaultType.Description(); } /** * Create an instance of {@link BaseFaultType.FaultCause } * */ public BaseFaultType.FaultCause createBaseFaultTypeFaultCause() { return new BaseFaultType.FaultCause(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link BaseFaultType }{@code >} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/wsrf/bf-2", name = "BaseFault") public JAXBElement createBaseFault(BaseFaultType value) { return new JAXBElement(_BaseFault_QNAME, BaseFaultType.class, null, value); } } ================================================ FILE: src/org/oasis_open/docs/wsrf/bf_2/package-info.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // @javax.xml.bind.annotation.XmlSchema(namespace = "http://docs.oasis-open.org/wsrf/bf-2", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) package org.oasis_open.docs.wsrf.bf_2; ================================================ FILE: src/org/onvif/ver10/device/wsdl/AddIPAddressFilter.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.IPAddressFilter; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ipAddressFilter" }) @XmlRootElement(name = "AddIPAddressFilter") public class AddIPAddressFilter { @XmlElement(name = "IPAddressFilter", required = true) protected IPAddressFilter ipAddressFilter; /** * Ruft den Wert der ipAddressFilter-Eigenschaft ab. * * @return possible object is {@link IPAddressFilter } * */ public IPAddressFilter getIPAddressFilter() { return ipAddressFilter; } /** * Legt den Wert der ipAddressFilter-Eigenschaft fest. * * @param value * allowed object is {@link IPAddressFilter } * */ public void setIPAddressFilter(IPAddressFilter value) { this.ipAddressFilter = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/AddIPAddressFilterResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "AddIPAddressFilterResponse") public class AddIPAddressFilterResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/AddScopes.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "scopeItem" }) @XmlRootElement(name = "AddScopes") public class AddScopes { @XmlElement(name = "ScopeItem", required = true) @XmlSchemaType(name = "anyURI") protected List scopeItem; /** * Gets the value of the scopeItem property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the scopeItem property. * *

* For example, to add a new item, do as follows: * *

	 * getScopeItem().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getScopeItem() { if (scopeItem == null) { scopeItem = new ArrayList(); } return this.scopeItem; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/AddScopesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "AddScopesResponse") public class AddScopesResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/CreateCertificate.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "certificateID", "subject", "validNotBefore", "validNotAfter" }) @XmlRootElement(name = "CreateCertificate") public class CreateCertificate { @XmlElement(name = "CertificateID") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String certificateID; @XmlElement(name = "Subject") protected String subject; @XmlElement(name = "ValidNotBefore") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar validNotBefore; @XmlElement(name = "ValidNotAfter") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar validNotAfter; /** * Ruft den Wert der certificateID-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getCertificateID() { return certificateID; } /** * Legt den Wert der certificateID-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setCertificateID(String value) { this.certificateID = value; } /** * Ruft den Wert der subject-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSubject() { return subject; } /** * Legt den Wert der subject-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSubject(String value) { this.subject = value; } /** * Ruft den Wert der validNotBefore-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getValidNotBefore() { return validNotBefore; } /** * Legt den Wert der validNotBefore-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setValidNotBefore(XMLGregorianCalendar value) { this.validNotBefore = value; } /** * Ruft den Wert der validNotAfter-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getValidNotAfter() { return validNotAfter; } /** * Legt den Wert der validNotAfter-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setValidNotAfter(XMLGregorianCalendar value) { this.validNotAfter = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/CreateCertificateResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Certificate; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "nvtCertificate" }) @XmlRootElement(name = "CreateCertificateResponse") public class CreateCertificateResponse { @XmlElement(name = "NvtCertificate", required = true) protected Certificate nvtCertificate; /** * Ruft den Wert der nvtCertificate-Eigenschaft ab. * * @return possible object is {@link Certificate } * */ public Certificate getNvtCertificate() { return nvtCertificate; } /** * Legt den Wert der nvtCertificate-Eigenschaft fest. * * @param value * allowed object is {@link Certificate } * */ public void setNvtCertificate(Certificate value) { this.nvtCertificate = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/CreateDot1XConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Dot1XConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dot1XConfiguration" }) @XmlRootElement(name = "CreateDot1XConfiguration") public class CreateDot1XConfiguration { @XmlElement(name = "Dot1XConfiguration", required = true) protected Dot1XConfiguration dot1XConfiguration; /** * Ruft den Wert der dot1XConfiguration-Eigenschaft ab. * * @return possible object is {@link Dot1XConfiguration } * */ public Dot1XConfiguration getDot1XConfiguration() { return dot1XConfiguration; } /** * Legt den Wert der dot1XConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link Dot1XConfiguration } * */ public void setDot1XConfiguration(Dot1XConfiguration value) { this.dot1XConfiguration = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/CreateDot1XConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "CreateDot1XConfigurationResponse") public class CreateDot1XConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/CreateUsers.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.User; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "user" }) @XmlRootElement(name = "CreateUsers") public class CreateUsers { @XmlElement(name = "User", required = true) protected List user; /** * Gets the value of the user property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the user property. * *

* For example, to add a new item, do as follows: * *

	 * getUser().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link User } * * */ public List getUser() { if (user == null) { user = new ArrayList(); } return this.user; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/CreateUsersResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "CreateUsersResponse") public class CreateUsersResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/DeleteCertificates.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "certificateID" }) @XmlRootElement(name = "DeleteCertificates") public class DeleteCertificates { @XmlElement(name = "CertificateID", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected List certificateID; /** * Gets the value of the certificateID property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the certificateID property. * *

* For example, to add a new item, do as follows: * *

	 * getCertificateID().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getCertificateID() { if (certificateID == null) { certificateID = new ArrayList(); } return this.certificateID; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/DeleteCertificatesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "DeleteCertificatesResponse") public class DeleteCertificatesResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/DeleteDot1XConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dot1XConfigurationToken" }) @XmlRootElement(name = "DeleteDot1XConfiguration") public class DeleteDot1XConfiguration { @XmlElement(name = "Dot1XConfigurationToken") protected List dot1XConfigurationToken; /** * Gets the value of the dot1XConfigurationToken property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the dot1XConfigurationToken property. * *

* For example, to add a new item, do as follows: * *

	 * getDot1XConfigurationToken().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getDot1XConfigurationToken() { if (dot1XConfigurationToken == null) { dot1XConfigurationToken = new ArrayList(); } return this.dot1XConfigurationToken; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/DeleteDot1XConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "DeleteDot1XConfigurationResponse") public class DeleteDot1XConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/DeleteUsers.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "username" }) @XmlRootElement(name = "DeleteUsers") public class DeleteUsers { @XmlElement(name = "Username", required = true) protected List username; /** * Gets the value of the username property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the username property. * *

* For example, to add a new item, do as follows: * *

	 * getUsername().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getUsername() { if (username == null) { username = new ArrayList(); } return this.username; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/DeleteUsersResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "DeleteUsersResponse") public class DeleteUsersResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/DeviceServiceCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r DeviceServiceCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeviceServiceCapabilities", propOrder = { "network", "security", "system", "misc" }) public class DeviceServiceCapabilities { @XmlElement(name = "Network", required = true) protected NetworkCapabilities network; @XmlElement(name = "Security", required = true) protected SecurityCapabilities security; @XmlElement(name = "System", required = true) protected SystemCapabilities system; @XmlElement(name = "Misc") protected MiscCapabilities misc; /** * Ruft den Wert der network-Eigenschaft ab. * * @return possible object is {@link NetworkCapabilities } * */ public NetworkCapabilities getNetwork() { return network; } /** * Legt den Wert der network-Eigenschaft fest. * * @param value * allowed object is {@link NetworkCapabilities } * */ public void setNetwork(NetworkCapabilities value) { this.network = value; } /** * Ruft den Wert der security-Eigenschaft ab. * * @return possible object is {@link SecurityCapabilities } * */ public SecurityCapabilities getSecurity() { return security; } /** * Legt den Wert der security-Eigenschaft fest. * * @param value * allowed object is {@link SecurityCapabilities } * */ public void setSecurity(SecurityCapabilities value) { this.security = value; } /** * Ruft den Wert der system-Eigenschaft ab. * * @return possible object is {@link SystemCapabilities } * */ public SystemCapabilities getSystem() { return system; } /** * Legt den Wert der system-Eigenschaft fest. * * @param value * allowed object is {@link SystemCapabilities } * */ public void setSystem(SystemCapabilities value) { this.system = value; } /** * Ruft den Wert der misc-Eigenschaft ab. * * @return possible object is {@link MiscCapabilities } * */ public MiscCapabilities getMisc() { return misc; } /** * Legt den Wert der misc-Eigenschaft fest. * * @param value * allowed object is {@link MiscCapabilities } * */ public void setMisc(MiscCapabilities value) { this.misc = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetAccessPolicy.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetAccessPolicy") public class GetAccessPolicy { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetAccessPolicyResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.BinaryData; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "policyFile" }) @XmlRootElement(name = "GetAccessPolicyResponse") public class GetAccessPolicyResponse { @XmlElement(name = "PolicyFile", required = true) protected BinaryData policyFile; /** * Ruft den Wert der policyFile-Eigenschaft ab. * * @return possible object is {@link BinaryData } * */ public BinaryData getPolicyFile() { return policyFile; } /** * Legt den Wert der policyFile-Eigenschaft fest. * * @param value * allowed object is {@link BinaryData } * */ public void setPolicyFile(BinaryData value) { this.policyFile = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetCACertificates.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetCACertificates") public class GetCACertificates { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetCACertificatesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Certificate; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "caCertificate" }) @XmlRootElement(name = "GetCACertificatesResponse") public class GetCACertificatesResponse { @XmlElement(name = "CACertificate") protected List caCertificate; /** * Gets the value of the caCertificate property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the caCertificate property. * *

* For example, to add a new item, do as follows: * *

	 * getCACertificate().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Certificate } * * */ public List getCACertificate() { if (caCertificate == null) { caCertificate = new ArrayList(); } return this.caCertificate; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.CapabilityCategory; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "category" }) @XmlRootElement(name = "GetCapabilities") public class GetCapabilities { @XmlElement(name = "Category") protected List category; /** * Gets the value of the category property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the category property. * *

* For example, to add a new item, do as follows: * *

	 * getCategory().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link CapabilityCategory } * * */ public List getCategory() { if (category == null) { category = new ArrayList(); } return this.category; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetCapabilitiesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Capabilities; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "capabilities" }) @XmlRootElement(name = "GetCapabilitiesResponse") public class GetCapabilitiesResponse { @XmlElement(name = "Capabilities", required = true) protected Capabilities capabilities; /** * Ruft den Wert der capabilities-Eigenschaft ab. * * @return possible object is {@link Capabilities } * */ public Capabilities getCapabilities() { return capabilities; } /** * Legt den Wert der capabilities-Eigenschaft fest. * * @param value * allowed object is {@link Capabilities } * */ public void setCapabilities(Capabilities value) { this.capabilities = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetCertificateInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "certificateID" }) @XmlRootElement(name = "GetCertificateInformation") public class GetCertificateInformation { @XmlElement(name = "CertificateID", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String certificateID; /** * Ruft den Wert der certificateID-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getCertificateID() { return certificateID; } /** * Legt den Wert der certificateID-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setCertificateID(String value) { this.certificateID = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetCertificateInformationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.CertificateInformation; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "certificateInformation" }) @XmlRootElement(name = "GetCertificateInformationResponse") public class GetCertificateInformationResponse { @XmlElement(name = "CertificateInformation", required = true) protected CertificateInformation certificateInformation; /** * Ruft den Wert der certificateInformation-Eigenschaft ab. * * @return possible object is {@link CertificateInformation } * */ public CertificateInformation getCertificateInformation() { return certificateInformation; } /** * Legt den Wert der certificateInformation-Eigenschaft fest. * * @param value * allowed object is {@link CertificateInformation } * */ public void setCertificateInformation(CertificateInformation value) { this.certificateInformation = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetCertificates.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetCertificates") public class GetCertificates { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetCertificatesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Certificate; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "nvtCertificate" }) @XmlRootElement(name = "GetCertificatesResponse") public class GetCertificatesResponse { @XmlElement(name = "NvtCertificate") protected List nvtCertificate; /** * Gets the value of the nvtCertificate property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the nvtCertificate property. * *

* For example, to add a new item, do as follows: * *

	 * getNvtCertificate().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Certificate } * * */ public List getNvtCertificate() { if (nvtCertificate == null) { nvtCertificate = new ArrayList(); } return this.nvtCertificate; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetCertificatesStatus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetCertificatesStatus") public class GetCertificatesStatus { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetCertificatesStatusResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.CertificateStatus; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "certificateStatus" }) @XmlRootElement(name = "GetCertificatesStatusResponse") public class GetCertificatesStatusResponse { @XmlElement(name = "CertificateStatus") protected List certificateStatus; /** * Gets the value of the certificateStatus property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the certificateStatus property. * *

* For example, to add a new item, do as follows: * *

	 * getCertificateStatus().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link CertificateStatus } * * */ public List getCertificateStatus() { if (certificateStatus == null) { certificateStatus = new ArrayList(); } return this.certificateStatus; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetClientCertificateMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetClientCertificateMode") public class GetClientCertificateMode { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetClientCertificateModeResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "enabled" }) @XmlRootElement(name = "GetClientCertificateModeResponse") public class GetClientCertificateModeResponse { @XmlElement(name = "Enabled") protected boolean enabled; /** * Ruft den Wert der enabled-Eigenschaft ab. * */ public boolean isEnabled() { return enabled; } /** * Legt den Wert der enabled-Eigenschaft fest. * */ public void setEnabled(boolean value) { this.enabled = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDNS.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetDNS") public class GetDNS { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDNSResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.DNSInformation; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dnsInformation" }) @XmlRootElement(name = "GetDNSResponse") public class GetDNSResponse { @XmlElement(name = "DNSInformation", required = true) protected DNSInformation dnsInformation; /** * Ruft den Wert der dnsInformation-Eigenschaft ab. * * @return possible object is {@link DNSInformation } * */ public DNSInformation getDNSInformation() { return dnsInformation; } /** * Legt den Wert der dnsInformation-Eigenschaft fest. * * @param value * allowed object is {@link DNSInformation } * */ public void setDNSInformation(DNSInformation value) { this.dnsInformation = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDPAddresses.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetDPAddresses") public class GetDPAddresses { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDPAddressesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.NetworkHost; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dpAddress" }) @XmlRootElement(name = "GetDPAddressesResponse") public class GetDPAddressesResponse { @XmlElement(name = "DPAddress") protected List dpAddress; /** * Gets the value of the dpAddress property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the dpAddress property. * *

* For example, to add a new item, do as follows: * *

	 * getDPAddress().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link NetworkHost } * * */ public List getDPAddress() { if (dpAddress == null) { dpAddress = new ArrayList(); } return this.dpAddress; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDeviceInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetDeviceInformation") public class GetDeviceInformation { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDeviceInformationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "manufacturer", "model", "firmwareVersion", "serialNumber", "hardwareId" }) @XmlRootElement(name = "GetDeviceInformationResponse") public class GetDeviceInformationResponse { @XmlElement(name = "Manufacturer", required = true) protected String manufacturer; @XmlElement(name = "Model", required = true) protected String model; @XmlElement(name = "FirmwareVersion", required = true) protected String firmwareVersion; @XmlElement(name = "SerialNumber", required = true) protected String serialNumber; @XmlElement(name = "HardwareId", required = true) protected String hardwareId; /** * Ruft den Wert der manufacturer-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getManufacturer() { return manufacturer; } /** * Legt den Wert der manufacturer-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setManufacturer(String value) { this.manufacturer = value; } /** * Ruft den Wert der model-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getModel() { return model; } /** * Legt den Wert der model-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setModel(String value) { this.model = value; } /** * Ruft den Wert der firmwareVersion-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getFirmwareVersion() { return firmwareVersion; } /** * Legt den Wert der firmwareVersion-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setFirmwareVersion(String value) { this.firmwareVersion = value; } /** * Ruft den Wert der serialNumber-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSerialNumber() { return serialNumber; } /** * Legt den Wert der serialNumber-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSerialNumber(String value) { this.serialNumber = value; } /** * Ruft den Wert der hardwareId-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getHardwareId() { return hardwareId; } /** * Legt den Wert der hardwareId-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setHardwareId(String value) { this.hardwareId = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDiscoveryMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetDiscoveryMode") public class GetDiscoveryMode { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDiscoveryModeResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.DiscoveryMode; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "discoveryMode" }) @XmlRootElement(name = "GetDiscoveryModeResponse") public class GetDiscoveryModeResponse { @XmlElement(name = "DiscoveryMode", required = true) protected DiscoveryMode discoveryMode; /** * Ruft den Wert der discoveryMode-Eigenschaft ab. * * @return possible object is {@link DiscoveryMode } * */ public DiscoveryMode getDiscoveryMode() { return discoveryMode; } /** * Legt den Wert der discoveryMode-Eigenschaft fest. * * @param value * allowed object is {@link DiscoveryMode } * */ public void setDiscoveryMode(DiscoveryMode value) { this.discoveryMode = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDot11Capabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) @XmlRootElement(name = "GetDot11Capabilities") public class GetDot11Capabilities { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDot11CapabilitiesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Dot11Capabilities; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "capabilities" }) @XmlRootElement(name = "GetDot11CapabilitiesResponse") public class GetDot11CapabilitiesResponse { @XmlElement(name = "Capabilities", required = true) protected Dot11Capabilities capabilities; /** * Ruft den Wert der capabilities-Eigenschaft ab. * * @return possible object is {@link Dot11Capabilities } * */ public Dot11Capabilities getCapabilities() { return capabilities; } /** * Legt den Wert der capabilities-Eigenschaft fest. * * @param value * allowed object is {@link Dot11Capabilities } * */ public void setCapabilities(Dot11Capabilities value) { this.capabilities = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDot11Status.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "interfaceToken" }) @XmlRootElement(name = "GetDot11Status") public class GetDot11Status { @XmlElement(name = "InterfaceToken", required = true) protected String interfaceToken; /** * Ruft den Wert der interfaceToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getInterfaceToken() { return interfaceToken; } /** * Legt den Wert der interfaceToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setInterfaceToken(String value) { this.interfaceToken = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDot11StatusResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Dot11Status; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "status" }) @XmlRootElement(name = "GetDot11StatusResponse") public class GetDot11StatusResponse { @XmlElement(name = "Status", required = true) protected Dot11Status status; /** * Ruft den Wert der status-Eigenschaft ab. * * @return possible object is {@link Dot11Status } * */ public Dot11Status getStatus() { return status; } /** * Legt den Wert der status-Eigenschaft fest. * * @param value * allowed object is {@link Dot11Status } * */ public void setStatus(Dot11Status value) { this.status = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDot1XConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dot1XConfigurationToken" }) @XmlRootElement(name = "GetDot1XConfiguration") public class GetDot1XConfiguration { @XmlElement(name = "Dot1XConfigurationToken", required = true) protected String dot1XConfigurationToken; /** * Ruft den Wert der dot1XConfigurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDot1XConfigurationToken() { return dot1XConfigurationToken; } /** * Legt den Wert der dot1XConfigurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDot1XConfigurationToken(String value) { this.dot1XConfigurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDot1XConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Dot1XConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dot1XConfiguration" }) @XmlRootElement(name = "GetDot1XConfigurationResponse") public class GetDot1XConfigurationResponse { @XmlElement(name = "Dot1XConfiguration", required = true) protected Dot1XConfiguration dot1XConfiguration; /** * Ruft den Wert der dot1XConfiguration-Eigenschaft ab. * * @return possible object is {@link Dot1XConfiguration } * */ public Dot1XConfiguration getDot1XConfiguration() { return dot1XConfiguration; } /** * Legt den Wert der dot1XConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link Dot1XConfiguration } * */ public void setDot1XConfiguration(Dot1XConfiguration value) { this.dot1XConfiguration = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDot1XConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetDot1XConfigurations") public class GetDot1XConfigurations { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDot1XConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Dot1XConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dot1XConfiguration" }) @XmlRootElement(name = "GetDot1XConfigurationsResponse") public class GetDot1XConfigurationsResponse { @XmlElement(name = "Dot1XConfiguration") protected List dot1XConfiguration; /** * Gets the value of the dot1XConfiguration property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the dot1XConfiguration property. * *

* For example, to add a new item, do as follows: * *

	 * getDot1XConfiguration().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Dot1XConfiguration } * * */ public List getDot1XConfiguration() { if (dot1XConfiguration == null) { dot1XConfiguration = new ArrayList(); } return this.dot1XConfiguration; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDynamicDNS.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetDynamicDNS") public class GetDynamicDNS { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetDynamicDNSResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.DynamicDNSInformation; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dynamicDNSInformation" }) @XmlRootElement(name = "GetDynamicDNSResponse") public class GetDynamicDNSResponse { @XmlElement(name = "DynamicDNSInformation", required = true) protected DynamicDNSInformation dynamicDNSInformation; /** * Ruft den Wert der dynamicDNSInformation-Eigenschaft ab. * * @return possible object is {@link DynamicDNSInformation } * */ public DynamicDNSInformation getDynamicDNSInformation() { return dynamicDNSInformation; } /** * Legt den Wert der dynamicDNSInformation-Eigenschaft fest. * * @param value * allowed object is {@link DynamicDNSInformation } * */ public void setDynamicDNSInformation(DynamicDNSInformation value) { this.dynamicDNSInformation = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetEndpointReference.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetEndpointReference") public class GetEndpointReference { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetEndpointReferenceResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "guid", "any" }) @XmlRootElement(name = "GetEndpointReferenceResponse") public class GetEndpointReferenceResponse { @XmlElement(name = "GUID", required = true) protected String guid; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der guid-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getGUID() { return guid; } /** * Legt den Wert der guid-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setGUID(String value) { this.guid = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetHostname.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetHostname") public class GetHostname { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetHostnameResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.HostnameInformation; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "hostnameInformation" }) @XmlRootElement(name = "GetHostnameResponse") public class GetHostnameResponse { @XmlElement(name = "HostnameInformation", required = true) protected HostnameInformation hostnameInformation; /** * Ruft den Wert der hostnameInformation-Eigenschaft ab. * * @return possible object is {@link HostnameInformation } * */ public HostnameInformation getHostnameInformation() { return hostnameInformation; } /** * Legt den Wert der hostnameInformation-Eigenschaft fest. * * @param value * allowed object is {@link HostnameInformation } * */ public void setHostnameInformation(HostnameInformation value) { this.hostnameInformation = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetIPAddressFilter.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetIPAddressFilter") public class GetIPAddressFilter { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetIPAddressFilterResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.IPAddressFilter; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ipAddressFilter" }) @XmlRootElement(name = "GetIPAddressFilterResponse") public class GetIPAddressFilterResponse { @XmlElement(name = "IPAddressFilter", required = true) protected IPAddressFilter ipAddressFilter; /** * Ruft den Wert der ipAddressFilter-Eigenschaft ab. * * @return possible object is {@link IPAddressFilter } * */ public IPAddressFilter getIPAddressFilter() { return ipAddressFilter; } /** * Legt den Wert der ipAddressFilter-Eigenschaft fest. * * @param value * allowed object is {@link IPAddressFilter } * */ public void setIPAddressFilter(IPAddressFilter value) { this.ipAddressFilter = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetNTP.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetNTP") public class GetNTP { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetNTPResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.NTPInformation; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ntpInformation" }) @XmlRootElement(name = "GetNTPResponse") public class GetNTPResponse { @XmlElement(name = "NTPInformation", required = true) protected NTPInformation ntpInformation; /** * Ruft den Wert der ntpInformation-Eigenschaft ab. * * @return possible object is {@link NTPInformation } * */ public NTPInformation getNTPInformation() { return ntpInformation; } /** * Legt den Wert der ntpInformation-Eigenschaft fest. * * @param value * allowed object is {@link NTPInformation } * */ public void setNTPInformation(NTPInformation value) { this.ntpInformation = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetNetworkDefaultGateway.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetNetworkDefaultGateway") public class GetNetworkDefaultGateway { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetNetworkDefaultGatewayResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.NetworkGateway; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "networkGateway" }) @XmlRootElement(name = "GetNetworkDefaultGatewayResponse") public class GetNetworkDefaultGatewayResponse { @XmlElement(name = "NetworkGateway", required = true) protected NetworkGateway networkGateway; /** * Ruft den Wert der networkGateway-Eigenschaft ab. * * @return possible object is {@link NetworkGateway } * */ public NetworkGateway getNetworkGateway() { return networkGateway; } /** * Legt den Wert der networkGateway-Eigenschaft fest. * * @param value * allowed object is {@link NetworkGateway } * */ public void setNetworkGateway(NetworkGateway value) { this.networkGateway = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetNetworkInterfaces.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetNetworkInterfaces") public class GetNetworkInterfaces { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetNetworkInterfacesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.NetworkInterface; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "networkInterfaces" }) @XmlRootElement(name = "GetNetworkInterfacesResponse") public class GetNetworkInterfacesResponse { @XmlElement(name = "NetworkInterfaces", required = true) protected List networkInterfaces; /** * Gets the value of the networkInterfaces property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the networkInterfaces property. * *

* For example, to add a new item, do as follows: * *

	 * getNetworkInterfaces().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link NetworkInterface } * * */ public List getNetworkInterfaces() { if (networkInterfaces == null) { networkInterfaces = new ArrayList(); } return this.networkInterfaces; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetNetworkProtocols.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetNetworkProtocols") public class GetNetworkProtocols { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetNetworkProtocolsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.NetworkProtocol; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "networkProtocols" }) @XmlRootElement(name = "GetNetworkProtocolsResponse") public class GetNetworkProtocolsResponse { @XmlElement(name = "NetworkProtocols") protected List networkProtocols; /** * Gets the value of the networkProtocols property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the networkProtocols property. * *

* For example, to add a new item, do as follows: * *

	 * getNetworkProtocols().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link NetworkProtocol } * * */ public List getNetworkProtocols() { if (networkProtocols == null) { networkProtocols = new ArrayList(); } return this.networkProtocols; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetPkcs10Request.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import org.onvif.ver10.schema.BinaryData; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "certificateID", "subject", "attributes" }) @XmlRootElement(name = "GetPkcs10Request") public class GetPkcs10Request { @XmlElement(name = "CertificateID", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String certificateID; @XmlElement(name = "Subject") protected String subject; @XmlElement(name = "Attributes") protected BinaryData attributes; /** * Ruft den Wert der certificateID-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getCertificateID() { return certificateID; } /** * Legt den Wert der certificateID-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setCertificateID(String value) { this.certificateID = value; } /** * Ruft den Wert der subject-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSubject() { return subject; } /** * Legt den Wert der subject-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSubject(String value) { this.subject = value; } /** * Ruft den Wert der attributes-Eigenschaft ab. * * @return possible object is {@link BinaryData } * */ public BinaryData getAttributes() { return attributes; } /** * Legt den Wert der attributes-Eigenschaft fest. * * @param value * allowed object is {@link BinaryData } * */ public void setAttributes(BinaryData value) { this.attributes = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetPkcs10RequestResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.BinaryData; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "pkcs10Request" }) @XmlRootElement(name = "GetPkcs10RequestResponse") public class GetPkcs10RequestResponse { @XmlElement(name = "Pkcs10Request", required = true) protected BinaryData pkcs10Request; /** * Ruft den Wert der pkcs10Request-Eigenschaft ab. * * @return possible object is {@link BinaryData } * */ public BinaryData getPkcs10Request() { return pkcs10Request; } /** * Legt den Wert der pkcs10Request-Eigenschaft fest. * * @param value * allowed object is {@link BinaryData } * */ public void setPkcs10Request(BinaryData value) { this.pkcs10Request = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetRelayOutputs.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetRelayOutputs") public class GetRelayOutputs { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetRelayOutputsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.RelayOutput; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "relayOutputs" }) @XmlRootElement(name = "GetRelayOutputsResponse") public class GetRelayOutputsResponse { @XmlElement(name = "RelayOutputs") protected List relayOutputs; /** * Gets the value of the relayOutputs property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the relayOutputs property. * *

* For example, to add a new item, do as follows: * *

	 * getRelayOutputs().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link RelayOutput } * * */ public List getRelayOutputs() { if (relayOutputs == null) { relayOutputs = new ArrayList(); } return this.relayOutputs; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetRemoteDiscoveryMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetRemoteDiscoveryMode") public class GetRemoteDiscoveryMode { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetRemoteDiscoveryModeResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.DiscoveryMode; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "remoteDiscoveryMode" }) @XmlRootElement(name = "GetRemoteDiscoveryModeResponse") public class GetRemoteDiscoveryModeResponse { @XmlElement(name = "RemoteDiscoveryMode", required = true) protected DiscoveryMode remoteDiscoveryMode; /** * Ruft den Wert der remoteDiscoveryMode-Eigenschaft ab. * * @return possible object is {@link DiscoveryMode } * */ public DiscoveryMode getRemoteDiscoveryMode() { return remoteDiscoveryMode; } /** * Legt den Wert der remoteDiscoveryMode-Eigenschaft fest. * * @param value * allowed object is {@link DiscoveryMode } * */ public void setRemoteDiscoveryMode(DiscoveryMode value) { this.remoteDiscoveryMode = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetRemoteUser.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetRemoteUser") public class GetRemoteUser { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetRemoteUserResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.RemoteUser; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "remoteUser" }) @XmlRootElement(name = "GetRemoteUserResponse") public class GetRemoteUserResponse { @XmlElement(name = "RemoteUser") protected RemoteUser remoteUser; /** * Ruft den Wert der remoteUser-Eigenschaft ab. * * @return possible object is {@link RemoteUser } * */ public RemoteUser getRemoteUser() { return remoteUser; } /** * Legt den Wert der remoteUser-Eigenschaft fest. * * @param value * allowed object is {@link RemoteUser } * */ public void setRemoteUser(RemoteUser value) { this.remoteUser = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetScopes.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetScopes") public class GetScopes { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetScopesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Scope; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "scopes" }) @XmlRootElement(name = "GetScopesResponse") public class GetScopesResponse { @XmlElement(name = "Scopes", required = true) protected List scopes; /** * Gets the value of the scopes property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the scopes property. * *

* For example, to add a new item, do as follows: * *

	 * getScopes().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Scope } * * */ public List getScopes() { if (scopes == null) { scopes = new ArrayList(); } return this.scopes; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetServiceCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetServiceCapabilities") public class GetServiceCapabilities { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetServiceCapabilitiesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "capabilities" }) @XmlRootElement(name = "GetServiceCapabilitiesResponse") public class GetServiceCapabilitiesResponse { @XmlElement(name = "Capabilities", required = true) protected DeviceServiceCapabilities capabilities; /** * Ruft den Wert der capabilities-Eigenschaft ab. * * @return possible object is {@link DeviceServiceCapabilities } * */ public DeviceServiceCapabilities getCapabilities() { return capabilities; } /** * Legt den Wert der capabilities-Eigenschaft fest. * * @param value * allowed object is {@link DeviceServiceCapabilities } * */ public void setCapabilities(DeviceServiceCapabilities value) { this.capabilities = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetServices.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "includeCapability" }) @XmlRootElement(name = "GetServices") public class GetServices { @XmlElement(name = "IncludeCapability") protected boolean includeCapability; /** * Ruft den Wert der includeCapability-Eigenschaft ab. * */ public boolean isIncludeCapability() { return includeCapability; } /** * Legt den Wert der includeCapability-Eigenschaft fest. * */ public void setIncludeCapability(boolean value) { this.includeCapability = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetServicesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "service" }) @XmlRootElement(name = "GetServicesResponse") public class GetServicesResponse { @XmlElement(name = "Service", required = true) protected List service; /** * Gets the value of the service property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the service property. * *

* For example, to add a new item, do as follows: * *

	 * getService().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Service } * * */ public List getService() { if (service == null) { service = new ArrayList(); } return this.service; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetSystemBackup.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetSystemBackup") public class GetSystemBackup { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetSystemBackupResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.BackupFile; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "backupFiles" }) @XmlRootElement(name = "GetSystemBackupResponse") public class GetSystemBackupResponse { @XmlElement(name = "BackupFiles", required = true) protected List backupFiles; /** * Gets the value of the backupFiles property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the backupFiles property. * *

* For example, to add a new item, do as follows: * *

	 * getBackupFiles().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link BackupFile } * * */ public List getBackupFiles() { if (backupFiles == null) { backupFiles = new ArrayList(); } return this.backupFiles; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetSystemDateAndTime.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetSystemDateAndTime") public class GetSystemDateAndTime { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetSystemDateAndTimeResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.SystemDateTime; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "systemDateAndTime" }) @XmlRootElement(name = "GetSystemDateAndTimeResponse") public class GetSystemDateAndTimeResponse { @XmlElement(name = "SystemDateAndTime", required = true) protected SystemDateTime systemDateAndTime; /** * Ruft den Wert der systemDateAndTime-Eigenschaft ab. * * @return possible object is {@link SystemDateTime } * */ public SystemDateTime getSystemDateAndTime() { return systemDateAndTime; } /** * Legt den Wert der systemDateAndTime-Eigenschaft fest. * * @param value * allowed object is {@link SystemDateTime } * */ public void setSystemDateAndTime(SystemDateTime value) { this.systemDateAndTime = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetSystemLog.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.SystemLogType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "logType" }) @XmlRootElement(name = "GetSystemLog") public class GetSystemLog { @XmlElement(name = "LogType", required = true) protected SystemLogType logType; /** * Ruft den Wert der logType-Eigenschaft ab. * * @return possible object is {@link SystemLogType } * */ public SystemLogType getLogType() { return logType; } /** * Legt den Wert der logType-Eigenschaft fest. * * @param value * allowed object is {@link SystemLogType } * */ public void setLogType(SystemLogType value) { this.logType = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetSystemLogResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.SystemLog; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "systemLog" }) @XmlRootElement(name = "GetSystemLogResponse") public class GetSystemLogResponse { @XmlElement(name = "SystemLog", required = true) protected SystemLog systemLog; /** * Ruft den Wert der systemLog-Eigenschaft ab. * * @return possible object is {@link SystemLog } * */ public SystemLog getSystemLog() { return systemLog; } /** * Legt den Wert der systemLog-Eigenschaft fest. * * @param value * allowed object is {@link SystemLog } * */ public void setSystemLog(SystemLog value) { this.systemLog = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetSystemSupportInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetSystemSupportInformation") public class GetSystemSupportInformation { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetSystemSupportInformationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.SupportInformation; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "supportInformation" }) @XmlRootElement(name = "GetSystemSupportInformationResponse") public class GetSystemSupportInformationResponse { @XmlElement(name = "SupportInformation", required = true) protected SupportInformation supportInformation; /** * Ruft den Wert der supportInformation-Eigenschaft ab. * * @return possible object is {@link SupportInformation } * */ public SupportInformation getSupportInformation() { return supportInformation; } /** * Legt den Wert der supportInformation-Eigenschaft fest. * * @param value * allowed object is {@link SupportInformation } * */ public void setSupportInformation(SupportInformation value) { this.supportInformation = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetSystemUris.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetSystemUris") public class GetSystemUris { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetSystemUrisResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.SystemLogUriList; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *               
 *             
 *           
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "systemLogUris", "supportInfoUri", "systemBackupUri", "extension" }) @XmlRootElement(name = "GetSystemUrisResponse") public class GetSystemUrisResponse { @XmlElement(name = "SystemLogUris") protected SystemLogUriList systemLogUris; @XmlElement(name = "SupportInfoUri") @XmlSchemaType(name = "anyURI") protected String supportInfoUri; @XmlElement(name = "SystemBackupUri") @XmlSchemaType(name = "anyURI") protected String systemBackupUri; @XmlElement(name = "Extension") protected GetSystemUrisResponse.Extension extension; /** * Ruft den Wert der systemLogUris-Eigenschaft ab. * * @return possible object is {@link SystemLogUriList } * */ public SystemLogUriList getSystemLogUris() { return systemLogUris; } /** * Legt den Wert der systemLogUris-Eigenschaft fest. * * @param value * allowed object is {@link SystemLogUriList } * */ public void setSystemLogUris(SystemLogUriList value) { this.systemLogUris = value; } /** * Ruft den Wert der supportInfoUri-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSupportInfoUri() { return supportInfoUri; } /** * Legt den Wert der supportInfoUri-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSupportInfoUri(String value) { this.supportInfoUri = value; } /** * Ruft den Wert der systemBackupUri-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSystemBackupUri() { return systemBackupUri; } /** * Legt den Wert der systemBackupUri-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSystemBackupUri(String value) { this.systemBackupUri = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link GetSystemUrisResponse.Extension } * */ public GetSystemUrisResponse.Extension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link GetSystemUrisResponse.Extension } * */ public void setExtension(GetSystemUrisResponse.Extension value) { this.extension = value; } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *         
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) public static class Extension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB * object. This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

		 * getAny().add(newItem);
		 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetUsers.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetUsers") public class GetUsers { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetUsersResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.User; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "user" }) @XmlRootElement(name = "GetUsersResponse") public class GetUsersResponse { @XmlElement(name = "User") protected List user; /** * Gets the value of the user property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the user property. * *

* For example, to add a new item, do as follows: * *

	 * getUser().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link User } * * */ public List getUser() { if (user == null) { user = new ArrayList(); } return this.user; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetWsdlUrl.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetWsdlUrl") public class GetWsdlUrl { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetWsdlUrlResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "wsdlUrl" }) @XmlRootElement(name = "GetWsdlUrlResponse") public class GetWsdlUrlResponse { @XmlElement(name = "WsdlUrl", required = true) @XmlSchemaType(name = "anyURI") protected String wsdlUrl; /** * Ruft den Wert der wsdlUrl-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getWsdlUrl() { return wsdlUrl; } /** * Legt den Wert der wsdlUrl-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setWsdlUrl(String value) { this.wsdlUrl = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetZeroConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetZeroConfiguration") public class GetZeroConfiguration { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/GetZeroConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.NetworkZeroConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "zeroConfiguration" }) @XmlRootElement(name = "GetZeroConfigurationResponse") public class GetZeroConfigurationResponse { @XmlElement(name = "ZeroConfiguration", required = true) protected NetworkZeroConfiguration zeroConfiguration; /** * Ruft den Wert der zeroConfiguration-Eigenschaft ab. * * @return possible object is {@link NetworkZeroConfiguration } * */ public NetworkZeroConfiguration getZeroConfiguration() { return zeroConfiguration; } /** * Legt den Wert der zeroConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link NetworkZeroConfiguration } * */ public void setZeroConfiguration(NetworkZeroConfiguration value) { this.zeroConfiguration = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/LoadCACertificates.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Certificate; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "caCertificate" }) @XmlRootElement(name = "LoadCACertificates") public class LoadCACertificates { @XmlElement(name = "CACertificate", required = true) protected List caCertificate; /** * Gets the value of the caCertificate property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the caCertificate property. * *

* For example, to add a new item, do as follows: * *

	 * getCACertificate().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Certificate } * * */ public List getCACertificate() { if (caCertificate == null) { caCertificate = new ArrayList(); } return this.caCertificate; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/LoadCACertificatesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "LoadCACertificatesResponse") public class LoadCACertificatesResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/LoadCertificateWithPrivateKey.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.CertificateWithPrivateKey; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "certificateWithPrivateKey" }) @XmlRootElement(name = "LoadCertificateWithPrivateKey") public class LoadCertificateWithPrivateKey { @XmlElement(name = "CertificateWithPrivateKey", required = true) protected List certificateWithPrivateKey; /** * Gets the value of the certificateWithPrivateKey property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the certificateWithPrivateKey property. * *

* For example, to add a new item, do as follows: * *

	 * getCertificateWithPrivateKey().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link CertificateWithPrivateKey } * * */ public List getCertificateWithPrivateKey() { if (certificateWithPrivateKey == null) { certificateWithPrivateKey = new ArrayList(); } return this.certificateWithPrivateKey; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/LoadCertificateWithPrivateKeyResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "LoadCertificateWithPrivateKeyResponse") public class LoadCertificateWithPrivateKeyResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/LoadCertificates.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Certificate; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "nvtCertificate" }) @XmlRootElement(name = "LoadCertificates") public class LoadCertificates { @XmlElement(name = "NVTCertificate", required = true) protected List nvtCertificate; /** * Gets the value of the nvtCertificate property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the nvtCertificate property. * *

* For example, to add a new item, do as follows: * *

	 * getNVTCertificate().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Certificate } * * */ public List getNVTCertificate() { if (nvtCertificate == null) { nvtCertificate = new ArrayList(); } return this.nvtCertificate; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/LoadCertificatesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "LoadCertificatesResponse") public class LoadCertificatesResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/MiscCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r MiscCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MiscCapabilities") public class MiscCapabilities { @XmlAttribute(name = "AuxiliaryCommands") protected List auxiliaryCommands; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the auxiliaryCommands property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the auxiliaryCommands property. * *

* For example, to add a new item, do as follows: * *

	 * getAuxiliaryCommands().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getAuxiliaryCommands() { if (auxiliaryCommands == null) { auxiliaryCommands = new ArrayList(); } return this.auxiliaryCommands; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/NetworkCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r NetworkCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkCapabilities") public class NetworkCapabilities { @XmlAttribute(name = "IPFilter") protected Boolean ipFilter; @XmlAttribute(name = "ZeroConfiguration") protected Boolean zeroConfiguration; @XmlAttribute(name = "IPVersion6") protected Boolean ipVersion6; @XmlAttribute(name = "DynDNS") protected Boolean dynDNS; @XmlAttribute(name = "Dot11Configuration") protected Boolean dot11Configuration; @XmlAttribute(name = "Dot1XConfigurations") protected Integer dot1XConfigurations; @XmlAttribute(name = "HostnameFromDHCP") protected Boolean hostnameFromDHCP; @XmlAttribute(name = "NTP") protected Integer ntp; @XmlAttribute(name = "DHCPv6") protected Boolean dhcPv6; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der ipFilter-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isIPFilter() { return ipFilter; } /** * Legt den Wert der ipFilter-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setIPFilter(Boolean value) { this.ipFilter = value; } /** * Ruft den Wert der zeroConfiguration-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isZeroConfiguration() { return zeroConfiguration; } /** * Legt den Wert der zeroConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setZeroConfiguration(Boolean value) { this.zeroConfiguration = value; } /** * Ruft den Wert der ipVersion6-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isIPVersion6() { return ipVersion6; } /** * Legt den Wert der ipVersion6-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setIPVersion6(Boolean value) { this.ipVersion6 = value; } /** * Ruft den Wert der dynDNS-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isDynDNS() { return dynDNS; } /** * Legt den Wert der dynDNS-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setDynDNS(Boolean value) { this.dynDNS = value; } /** * Ruft den Wert der dot11Configuration-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isDot11Configuration() { return dot11Configuration; } /** * Legt den Wert der dot11Configuration-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setDot11Configuration(Boolean value) { this.dot11Configuration = value; } /** * Ruft den Wert der dot1XConfigurations-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getDot1XConfigurations() { return dot1XConfigurations; } /** * Legt den Wert der dot1XConfigurations-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setDot1XConfigurations(Integer value) { this.dot1XConfigurations = value; } /** * Ruft den Wert der hostnameFromDHCP-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isHostnameFromDHCP() { return hostnameFromDHCP; } /** * Legt den Wert der hostnameFromDHCP-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setHostnameFromDHCP(Boolean value) { this.hostnameFromDHCP = value; } /** * Ruft den Wert der ntp-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getNTP() { return ntp; } /** * Legt den Wert der ntp-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setNTP(Integer value) { this.ntp = value; } /** * Ruft den Wert der dhcPv6-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isDHCPv6() { return dhcPv6; } /** * Legt den Wert der dhcPv6-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setDHCPv6(Boolean value) { this.dhcPv6 = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/ObjectFactory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each Java content interface and Java element interface generated in the org.onvif.ver10.device.wsdl package. *

* An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema * derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this * class. * */ @XmlRegistry public class ObjectFactory { private final static QName _Capabilities_QNAME = new QName("http://www.onvif.org/ver10/device/wsdl", "Capabilities"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.onvif.ver10.device.wsdl * */ public ObjectFactory() { } /** * Create an instance of {@link GetSystemUrisResponse } * */ public GetSystemUrisResponse createGetSystemUrisResponse() { return new GetSystemUrisResponse(); } /** * Create an instance of {@link Service } * */ public Service createService() { return new Service(); } /** * Create an instance of {@link SetUser } * */ public SetUser createSetUser() { return new SetUser(); } /** * Create an instance of {@link UpgradeSystemFirmwareResponse } * */ public UpgradeSystemFirmwareResponse createUpgradeSystemFirmwareResponse() { return new UpgradeSystemFirmwareResponse(); } /** * Create an instance of {@link SetNTPResponse } * */ public SetNTPResponse createSetNTPResponse() { return new SetNTPResponse(); } /** * Create an instance of {@link SetRelayOutputStateResponse } * */ public SetRelayOutputStateResponse createSetRelayOutputStateResponse() { return new SetRelayOutputStateResponse(); } /** * Create an instance of {@link SetAccessPolicyResponse } * */ public SetAccessPolicyResponse createSetAccessPolicyResponse() { return new SetAccessPolicyResponse(); } /** * Create an instance of {@link GetScopesResponse } * */ public GetScopesResponse createGetScopesResponse() { return new GetScopesResponse(); } /** * Create an instance of {@link ScanAvailableDot11NetworksResponse } * */ public ScanAvailableDot11NetworksResponse createScanAvailableDot11NetworksResponse() { return new ScanAvailableDot11NetworksResponse(); } /** * Create an instance of {@link GetRemoteDiscoveryModeResponse } * */ public GetRemoteDiscoveryModeResponse createGetRemoteDiscoveryModeResponse() { return new GetRemoteDiscoveryModeResponse(); } /** * Create an instance of {@link SetDiscoveryMode } * */ public SetDiscoveryMode createSetDiscoveryMode() { return new SetDiscoveryMode(); } /** * Create an instance of {@link SetRelayOutputSettingsResponse } * */ public SetRelayOutputSettingsResponse createSetRelayOutputSettingsResponse() { return new SetRelayOutputSettingsResponse(); } /** * Create an instance of {@link SetCertificatesStatusResponse } * */ public SetCertificatesStatusResponse createSetCertificatesStatusResponse() { return new SetCertificatesStatusResponse(); } /** * Create an instance of {@link SetRemoteUserResponse } * */ public SetRemoteUserResponse createSetRemoteUserResponse() { return new SetRemoteUserResponse(); } /** * Create an instance of {@link SetScopes } * */ public SetScopes createSetScopes() { return new SetScopes(); } /** * Create an instance of {@link DeleteDot1XConfigurationResponse } * */ public DeleteDot1XConfigurationResponse createDeleteDot1XConfigurationResponse() { return new DeleteDot1XConfigurationResponse(); } /** * Create an instance of {@link GetNTPResponse } * */ public GetNTPResponse createGetNTPResponse() { return new GetNTPResponse(); } /** * Create an instance of {@link GetCertificates } * */ public GetCertificates createGetCertificates() { return new GetCertificates(); } /** * Create an instance of {@link GetWsdlUrl } * */ public GetWsdlUrl createGetWsdlUrl() { return new GetWsdlUrl(); } /** * Create an instance of {@link SetNetworkDefaultGateway } * */ public SetNetworkDefaultGateway createSetNetworkDefaultGateway() { return new SetNetworkDefaultGateway(); } /** * Create an instance of {@link GetEndpointReference } * */ public GetEndpointReference createGetEndpointReference() { return new GetEndpointReference(); } /** * Create an instance of {@link GetZeroConfiguration } * */ public GetZeroConfiguration createGetZeroConfiguration() { return new GetZeroConfiguration(); } /** * Create an instance of {@link SendAuxiliaryCommand } * */ public SendAuxiliaryCommand createSendAuxiliaryCommand() { return new SendAuxiliaryCommand(); } /** * Create an instance of {@link GetWsdlUrlResponse } * */ public GetWsdlUrlResponse createGetWsdlUrlResponse() { return new GetWsdlUrlResponse(); } /** * Create an instance of {@link DeleteCertificatesResponse } * */ public DeleteCertificatesResponse createDeleteCertificatesResponse() { return new DeleteCertificatesResponse(); } /** * Create an instance of {@link StartSystemRestore } * */ public StartSystemRestore createStartSystemRestore() { return new StartSystemRestore(); } /** * Create an instance of {@link SystemReboot } * */ public SystemReboot createSystemReboot() { return new SystemReboot(); } /** * Create an instance of {@link SetDot1XConfigurationResponse } * */ public SetDot1XConfigurationResponse createSetDot1XConfigurationResponse() { return new SetDot1XConfigurationResponse(); } /** * Create an instance of {@link SetClientCertificateMode } * */ public SetClientCertificateMode createSetClientCertificateMode() { return new SetClientCertificateMode(); } /** * Create an instance of {@link StartFirmwareUpgradeResponse } * */ public StartFirmwareUpgradeResponse createStartFirmwareUpgradeResponse() { return new StartFirmwareUpgradeResponse(); } /** * Create an instance of {@link StartFirmwareUpgrade } * */ public StartFirmwareUpgrade createStartFirmwareUpgrade() { return new StartFirmwareUpgrade(); } /** * Create an instance of {@link SetClientCertificateModeResponse } * */ public SetClientCertificateModeResponse createSetClientCertificateModeResponse() { return new SetClientCertificateModeResponse(); } /** * Create an instance of {@link GetDynamicDNSResponse } * */ public GetDynamicDNSResponse createGetDynamicDNSResponse() { return new GetDynamicDNSResponse(); } /** * Create an instance of {@link GetCertificateInformation } * */ public GetCertificateInformation createGetCertificateInformation() { return new GetCertificateInformation(); } /** * Create an instance of {@link GetDeviceInformation } * */ public GetDeviceInformation createGetDeviceInformation() { return new GetDeviceInformation(); } /** * Create an instance of {@link GetDynamicDNS } * */ public GetDynamicDNS createGetDynamicDNS() { return new GetDynamicDNS(); } /** * Create an instance of {@link CreateDot1XConfiguration } * */ public CreateDot1XConfiguration createCreateDot1XConfiguration() { return new CreateDot1XConfiguration(); } /** * Create an instance of {@link SetSystemFactoryDefaultResponse } * */ public SetSystemFactoryDefaultResponse createSetSystemFactoryDefaultResponse() { return new SetSystemFactoryDefaultResponse(); } /** * Create an instance of {@link UpgradeSystemFirmware } * */ public UpgradeSystemFirmware createUpgradeSystemFirmware() { return new UpgradeSystemFirmware(); } /** * Create an instance of {@link GetDiscoveryMode } * */ public GetDiscoveryMode createGetDiscoveryMode() { return new GetDiscoveryMode(); } /** * Create an instance of {@link GetZeroConfigurationResponse } * */ public GetZeroConfigurationResponse createGetZeroConfigurationResponse() { return new GetZeroConfigurationResponse(); } /** * Create an instance of {@link SetHostnameResponse } * */ public SetHostnameResponse createSetHostnameResponse() { return new SetHostnameResponse(); } /** * Create an instance of {@link SendAuxiliaryCommandResponse } * */ public SendAuxiliaryCommandResponse createSendAuxiliaryCommandResponse() { return new SendAuxiliaryCommandResponse(); } /** * Create an instance of {@link SetDynamicDNSResponse } * */ public SetDynamicDNSResponse createSetDynamicDNSResponse() { return new SetDynamicDNSResponse(); } /** * Create an instance of {@link SetNetworkProtocolsResponse } * */ public SetNetworkProtocolsResponse createSetNetworkProtocolsResponse() { return new SetNetworkProtocolsResponse(); } /** * Create an instance of {@link LoadCertificates } * */ public LoadCertificates createLoadCertificates() { return new LoadCertificates(); } /** * Create an instance of {@link RestoreSystem } * */ public RestoreSystem createRestoreSystem() { return new RestoreSystem(); } /** * Create an instance of {@link GetRelayOutputsResponse } * */ public GetRelayOutputsResponse createGetRelayOutputsResponse() { return new GetRelayOutputsResponse(); } /** * Create an instance of {@link GetCertificatesResponse } * */ public GetCertificatesResponse createGetCertificatesResponse() { return new GetCertificatesResponse(); } /** * Create an instance of {@link GetSystemDateAndTimeResponse } * */ public GetSystemDateAndTimeResponse createGetSystemDateAndTimeResponse() { return new GetSystemDateAndTimeResponse(); } /** * Create an instance of {@link SetSystemDateAndTime } * */ public SetSystemDateAndTime createSetSystemDateAndTime() { return new SetSystemDateAndTime(); } /** * Create an instance of {@link GetCapabilitiesResponse } * */ public GetCapabilitiesResponse createGetCapabilitiesResponse() { return new GetCapabilitiesResponse(); } /** * Create an instance of {@link LoadCACertificates } * */ public LoadCACertificates createLoadCACertificates() { return new LoadCACertificates(); } /** * Create an instance of {@link GetClientCertificateModeResponse } * */ public GetClientCertificateModeResponse createGetClientCertificateModeResponse() { return new GetClientCertificateModeResponse(); } /** * Create an instance of {@link GetSystemBackup } * */ public GetSystemBackup createGetSystemBackup() { return new GetSystemBackup(); } /** * Create an instance of {@link GetCertificatesStatusResponse } * */ public GetCertificatesStatusResponse createGetCertificatesStatusResponse() { return new GetCertificatesStatusResponse(); } /** * Create an instance of {@link AddIPAddressFilterResponse } * */ public AddIPAddressFilterResponse createAddIPAddressFilterResponse() { return new AddIPAddressFilterResponse(); } /** * Create an instance of {@link GetCACertificatesResponse } * */ public GetCACertificatesResponse createGetCACertificatesResponse() { return new GetCACertificatesResponse(); } /** * Create an instance of {@link GetSystemSupportInformationResponse } * */ public GetSystemSupportInformationResponse createGetSystemSupportInformationResponse() { return new GetSystemSupportInformationResponse(); } /** * Create an instance of {@link StartSystemRestoreResponse } * */ public StartSystemRestoreResponse createStartSystemRestoreResponse() { return new StartSystemRestoreResponse(); } /** * Create an instance of {@link GetCertificateInformationResponse } * */ public GetCertificateInformationResponse createGetCertificateInformationResponse() { return new GetCertificateInformationResponse(); } /** * Create an instance of {@link GetSystemBackupResponse } * */ public GetSystemBackupResponse createGetSystemBackupResponse() { return new GetSystemBackupResponse(); } /** * Create an instance of {@link SetNetworkInterfacesResponse } * */ public SetNetworkInterfacesResponse createSetNetworkInterfacesResponse() { return new SetNetworkInterfacesResponse(); } /** * Create an instance of {@link LoadCertificatesResponse } * */ public LoadCertificatesResponse createLoadCertificatesResponse() { return new LoadCertificatesResponse(); } /** * Create an instance of {@link GetDot1XConfigurationResponse } * */ public GetDot1XConfigurationResponse createGetDot1XConfigurationResponse() { return new GetDot1XConfigurationResponse(); } /** * Create an instance of {@link SetDPAddresses } * */ public SetDPAddresses createSetDPAddresses() { return new SetDPAddresses(); } /** * Create an instance of {@link GetDiscoveryModeResponse } * */ public GetDiscoveryModeResponse createGetDiscoveryModeResponse() { return new GetDiscoveryModeResponse(); } /** * Create an instance of {@link SetRemoteUser } * */ public SetRemoteUser createSetRemoteUser() { return new SetRemoteUser(); } /** * Create an instance of {@link CreateUsers } * */ public CreateUsers createCreateUsers() { return new CreateUsers(); } /** * Create an instance of {@link SetRelayOutputSettings } * */ public SetRelayOutputSettings createSetRelayOutputSettings() { return new SetRelayOutputSettings(); } /** * Create an instance of {@link SetNTP } * */ public SetNTP createSetNTP() { return new SetNTP(); } /** * Create an instance of {@link CreateDot1XConfigurationResponse } * */ public CreateDot1XConfigurationResponse createCreateDot1XConfigurationResponse() { return new CreateDot1XConfigurationResponse(); } /** * Create an instance of {@link GetRemoteUserResponse } * */ public GetRemoteUserResponse createGetRemoteUserResponse() { return new GetRemoteUserResponse(); } /** * Create an instance of {@link GetDPAddressesResponse } * */ public GetDPAddressesResponse createGetDPAddressesResponse() { return new GetDPAddressesResponse(); } /** * Create an instance of {@link SetHostname } * */ public SetHostname createSetHostname() { return new SetHostname(); } /** * Create an instance of {@link GetHostnameResponse } * */ public GetHostnameResponse createGetHostnameResponse() { return new GetHostnameResponse(); } /** * Create an instance of {@link SetDPAddressesResponse } * */ public SetDPAddressesResponse createSetDPAddressesResponse() { return new SetDPAddressesResponse(); } /** * Create an instance of {@link GetRemoteDiscoveryMode } * */ public GetRemoteDiscoveryMode createGetRemoteDiscoveryMode() { return new GetRemoteDiscoveryMode(); } /** * Create an instance of {@link GetDot11StatusResponse } * */ public GetDot11StatusResponse createGetDot11StatusResponse() { return new GetDot11StatusResponse(); } /** * Create an instance of {@link GetAccessPolicyResponse } * */ public GetAccessPolicyResponse createGetAccessPolicyResponse() { return new GetAccessPolicyResponse(); } /** * Create an instance of {@link SetIPAddressFilter } * */ public SetIPAddressFilter createSetIPAddressFilter() { return new SetIPAddressFilter(); } /** * Create an instance of {@link GetServicesResponse } * */ public GetServicesResponse createGetServicesResponse() { return new GetServicesResponse(); } /** * Create an instance of {@link SetCertificatesStatus } * */ public SetCertificatesStatus createSetCertificatesStatus() { return new SetCertificatesStatus(); } /** * Create an instance of {@link SetNetworkInterfaces } * */ public SetNetworkInterfaces createSetNetworkInterfaces() { return new SetNetworkInterfaces(); } /** * Create an instance of {@link SetDiscoveryModeResponse } * */ public SetDiscoveryModeResponse createSetDiscoveryModeResponse() { return new SetDiscoveryModeResponse(); } /** * Create an instance of {@link GetNetworkProtocolsResponse } * */ public GetNetworkProtocolsResponse createGetNetworkProtocolsResponse() { return new GetNetworkProtocolsResponse(); } /** * Create an instance of {@link LoadCertificateWithPrivateKeyResponse } * */ public LoadCertificateWithPrivateKeyResponse createLoadCertificateWithPrivateKeyResponse() { return new LoadCertificateWithPrivateKeyResponse(); } /** * Create an instance of {@link GetSystemUrisResponse.Extension } * */ public GetSystemUrisResponse.Extension createGetSystemUrisResponseExtension() { return new GetSystemUrisResponse.Extension(); } /** * Create an instance of {@link GetDNSResponse } * */ public GetDNSResponse createGetDNSResponse() { return new GetDNSResponse(); } /** * Create an instance of {@link SetDot1XConfiguration } * */ public SetDot1XConfiguration createSetDot1XConfiguration() { return new SetDot1XConfiguration(); } /** * Create an instance of {@link GetUsersResponse } * */ public GetUsersResponse createGetUsersResponse() { return new GetUsersResponse(); } /** * Create an instance of {@link SetDynamicDNS } * */ public SetDynamicDNS createSetDynamicDNS() { return new SetDynamicDNS(); } /** * Create an instance of {@link GetNetworkInterfacesResponse } * */ public GetNetworkInterfacesResponse createGetNetworkInterfacesResponse() { return new GetNetworkInterfacesResponse(); } /** * Create an instance of {@link GetDPAddresses } * */ public GetDPAddresses createGetDPAddresses() { return new GetDPAddresses(); } /** * Create an instance of {@link ScanAvailableDot11Networks } * */ public ScanAvailableDot11Networks createScanAvailableDot11Networks() { return new ScanAvailableDot11Networks(); } /** * Create an instance of {@link GetServiceCapabilitiesResponse } * */ public GetServiceCapabilitiesResponse createGetServiceCapabilitiesResponse() { return new GetServiceCapabilitiesResponse(); } /** * Create an instance of {@link DeviceServiceCapabilities } * */ public DeviceServiceCapabilities createDeviceServiceCapabilities() { return new DeviceServiceCapabilities(); } /** * Create an instance of {@link GetHostname } * */ public GetHostname createGetHostname() { return new GetHostname(); } /** * Create an instance of {@link LoadCACertificatesResponse } * */ public LoadCACertificatesResponse createLoadCACertificatesResponse() { return new LoadCACertificatesResponse(); } /** * Create an instance of {@link AddIPAddressFilter } * */ public AddIPAddressFilter createAddIPAddressFilter() { return new AddIPAddressFilter(); } /** * Create an instance of {@link GetIPAddressFilter } * */ public GetIPAddressFilter createGetIPAddressFilter() { return new GetIPAddressFilter(); } /** * Create an instance of {@link DeleteUsersResponse } * */ public DeleteUsersResponse createDeleteUsersResponse() { return new DeleteUsersResponse(); } /** * Create an instance of {@link LoadCertificateWithPrivateKey } * */ public LoadCertificateWithPrivateKey createLoadCertificateWithPrivateKey() { return new LoadCertificateWithPrivateKey(); } /** * Create an instance of {@link CreateCertificateResponse } * */ public CreateCertificateResponse createCreateCertificateResponse() { return new CreateCertificateResponse(); } /** * Create an instance of {@link SetDNS } * */ public SetDNS createSetDNS() { return new SetDNS(); } /** * Create an instance of {@link DeleteCertificates } * */ public DeleteCertificates createDeleteCertificates() { return new DeleteCertificates(); } /** * Create an instance of {@link GetNetworkInterfaces } * */ public GetNetworkInterfaces createGetNetworkInterfaces() { return new GetNetworkInterfaces(); } /** * Create an instance of {@link GetDot11CapabilitiesResponse } * */ public GetDot11CapabilitiesResponse createGetDot11CapabilitiesResponse() { return new GetDot11CapabilitiesResponse(); } /** * Create an instance of {@link GetCACertificates } * */ public GetCACertificates createGetCACertificates() { return new GetCACertificates(); } /** * Create an instance of {@link DeleteDot1XConfiguration } * */ public DeleteDot1XConfiguration createDeleteDot1XConfiguration() { return new DeleteDot1XConfiguration(); } /** * Create an instance of {@link GetNetworkDefaultGateway } * */ public GetNetworkDefaultGateway createGetNetworkDefaultGateway() { return new GetNetworkDefaultGateway(); } /** * Create an instance of {@link RestoreSystemResponse } * */ public RestoreSystemResponse createRestoreSystemResponse() { return new RestoreSystemResponse(); } /** * Create an instance of {@link RemoveIPAddressFilter } * */ public RemoveIPAddressFilter createRemoveIPAddressFilter() { return new RemoveIPAddressFilter(); } /** * Create an instance of {@link GetDNS } * */ public GetDNS createGetDNS() { return new GetDNS(); } /** * Create an instance of {@link GetClientCertificateMode } * */ public GetClientCertificateMode createGetClientCertificateMode() { return new GetClientCertificateMode(); } /** * Create an instance of {@link GetScopes } * */ public GetScopes createGetScopes() { return new GetScopes(); } /** * Create an instance of {@link GetAccessPolicy } * */ public GetAccessPolicy createGetAccessPolicy() { return new GetAccessPolicy(); } /** * Create an instance of {@link RemoveIPAddressFilterResponse } * */ public RemoveIPAddressFilterResponse createRemoveIPAddressFilterResponse() { return new RemoveIPAddressFilterResponse(); } /** * Create an instance of {@link GetSystemLog } * */ public GetSystemLog createGetSystemLog() { return new GetSystemLog(); } /** * Create an instance of {@link GetDot11Capabilities } * */ public GetDot11Capabilities createGetDot11Capabilities() { return new GetDot11Capabilities(); } /** * Create an instance of {@link GetNetworkDefaultGatewayResponse } * */ public GetNetworkDefaultGatewayResponse createGetNetworkDefaultGatewayResponse() { return new GetNetworkDefaultGatewayResponse(); } /** * Create an instance of {@link GetServiceCapabilities } * */ public GetServiceCapabilities createGetServiceCapabilities() { return new GetServiceCapabilities(); } /** * Create an instance of {@link GetSystemDateAndTime } * */ public GetSystemDateAndTime createGetSystemDateAndTime() { return new GetSystemDateAndTime(); } /** * Create an instance of {@link SetScopesResponse } * */ public SetScopesResponse createSetScopesResponse() { return new SetScopesResponse(); } /** * Create an instance of {@link GetDot1XConfigurationsResponse } * */ public GetDot1XConfigurationsResponse createGetDot1XConfigurationsResponse() { return new GetDot1XConfigurationsResponse(); } /** * Create an instance of {@link GetDot1XConfigurations } * */ public GetDot1XConfigurations createGetDot1XConfigurations() { return new GetDot1XConfigurations(); } /** * Create an instance of {@link SetUserResponse } * */ public SetUserResponse createSetUserResponse() { return new SetUserResponse(); } /** * Create an instance of {@link SetZeroConfigurationResponse } * */ public SetZeroConfigurationResponse createSetZeroConfigurationResponse() { return new SetZeroConfigurationResponse(); } /** * Create an instance of {@link GetSystemUris } * */ public GetSystemUris createGetSystemUris() { return new GetSystemUris(); } /** * Create an instance of {@link GetEndpointReferenceResponse } * */ public GetEndpointReferenceResponse createGetEndpointReferenceResponse() { return new GetEndpointReferenceResponse(); } /** * Create an instance of {@link AddScopes } * */ public AddScopes createAddScopes() { return new AddScopes(); } /** * Create an instance of {@link GetDeviceInformationResponse } * */ public GetDeviceInformationResponse createGetDeviceInformationResponse() { return new GetDeviceInformationResponse(); } /** * Create an instance of {@link SetHostnameFromDHCPResponse } * */ public SetHostnameFromDHCPResponse createSetHostnameFromDHCPResponse() { return new SetHostnameFromDHCPResponse(); } /** * Create an instance of {@link GetDot11Status } * */ public GetDot11Status createGetDot11Status() { return new GetDot11Status(); } /** * Create an instance of {@link SetHostnameFromDHCP } * */ public SetHostnameFromDHCP createSetHostnameFromDHCP() { return new SetHostnameFromDHCP(); } /** * Create an instance of {@link GetSystemLogResponse } * */ public GetSystemLogResponse createGetSystemLogResponse() { return new GetSystemLogResponse(); } /** * Create an instance of {@link GetPkcs10Request } * */ public GetPkcs10Request createGetPkcs10Request() { return new GetPkcs10Request(); } /** * Create an instance of {@link GetRelayOutputs } * */ public GetRelayOutputs createGetRelayOutputs() { return new GetRelayOutputs(); } /** * Create an instance of {@link SetZeroConfiguration } * */ public SetZeroConfiguration createSetZeroConfiguration() { return new SetZeroConfiguration(); } /** * Create an instance of {@link GetSystemSupportInformation } * */ public GetSystemSupportInformation createGetSystemSupportInformation() { return new GetSystemSupportInformation(); } /** * Create an instance of {@link SetDNSResponse } * */ public SetDNSResponse createSetDNSResponse() { return new SetDNSResponse(); } /** * Create an instance of {@link GetIPAddressFilterResponse } * */ public GetIPAddressFilterResponse createGetIPAddressFilterResponse() { return new GetIPAddressFilterResponse(); } /** * Create an instance of {@link GetNTP } * */ public GetNTP createGetNTP() { return new GetNTP(); } /** * Create an instance of {@link GetNetworkProtocols } * */ public GetNetworkProtocols createGetNetworkProtocols() { return new GetNetworkProtocols(); } /** * Create an instance of {@link GetCapabilities } * */ public GetCapabilities createGetCapabilities() { return new GetCapabilities(); } /** * Create an instance of {@link CreateCertificate } * */ public CreateCertificate createCreateCertificate() { return new CreateCertificate(); } /** * Create an instance of {@link SetIPAddressFilterResponse } * */ public SetIPAddressFilterResponse createSetIPAddressFilterResponse() { return new SetIPAddressFilterResponse(); } /** * Create an instance of {@link RemoveScopesResponse } * */ public RemoveScopesResponse createRemoveScopesResponse() { return new RemoveScopesResponse(); } /** * Create an instance of {@link GetCertificatesStatus } * */ public GetCertificatesStatus createGetCertificatesStatus() { return new GetCertificatesStatus(); } /** * Create an instance of {@link AddScopesResponse } * */ public AddScopesResponse createAddScopesResponse() { return new AddScopesResponse(); } /** * Create an instance of {@link SetSystemDateAndTimeResponse } * */ public SetSystemDateAndTimeResponse createSetSystemDateAndTimeResponse() { return new SetSystemDateAndTimeResponse(); } /** * Create an instance of {@link GetPkcs10RequestResponse } * */ public GetPkcs10RequestResponse createGetPkcs10RequestResponse() { return new GetPkcs10RequestResponse(); } /** * Create an instance of {@link SetRemoteDiscoveryModeResponse } * */ public SetRemoteDiscoveryModeResponse createSetRemoteDiscoveryModeResponse() { return new SetRemoteDiscoveryModeResponse(); } /** * Create an instance of {@link SystemRebootResponse } * */ public SystemRebootResponse createSystemRebootResponse() { return new SystemRebootResponse(); } /** * Create an instance of {@link SetNetworkDefaultGatewayResponse } * */ public SetNetworkDefaultGatewayResponse createSetNetworkDefaultGatewayResponse() { return new SetNetworkDefaultGatewayResponse(); } /** * Create an instance of {@link CreateUsersResponse } * */ public CreateUsersResponse createCreateUsersResponse() { return new CreateUsersResponse(); } /** * Create an instance of {@link SetAccessPolicy } * */ public SetAccessPolicy createSetAccessPolicy() { return new SetAccessPolicy(); } /** * Create an instance of {@link GetUsers } * */ public GetUsers createGetUsers() { return new GetUsers(); } /** * Create an instance of {@link GetRemoteUser } * */ public GetRemoteUser createGetRemoteUser() { return new GetRemoteUser(); } /** * Create an instance of {@link RemoveScopes } * */ public RemoveScopes createRemoveScopes() { return new RemoveScopes(); } /** * Create an instance of {@link SetSystemFactoryDefault } * */ public SetSystemFactoryDefault createSetSystemFactoryDefault() { return new SetSystemFactoryDefault(); } /** * Create an instance of {@link SetRelayOutputState } * */ public SetRelayOutputState createSetRelayOutputState() { return new SetRelayOutputState(); } /** * Create an instance of {@link GetDot1XConfiguration } * */ public GetDot1XConfiguration createGetDot1XConfiguration() { return new GetDot1XConfiguration(); } /** * Create an instance of {@link GetServices } * */ public GetServices createGetServices() { return new GetServices(); } /** * Create an instance of {@link DeleteUsers } * */ public DeleteUsers createDeleteUsers() { return new DeleteUsers(); } /** * Create an instance of {@link SetRemoteDiscoveryMode } * */ public SetRemoteDiscoveryMode createSetRemoteDiscoveryMode() { return new SetRemoteDiscoveryMode(); } /** * Create an instance of {@link SetNetworkProtocols } * */ public SetNetworkProtocols createSetNetworkProtocols() { return new SetNetworkProtocols(); } /** * Create an instance of {@link NetworkCapabilities } * */ public NetworkCapabilities createNetworkCapabilities() { return new NetworkCapabilities(); } /** * Create an instance of {@link SecurityCapabilities } * */ public SecurityCapabilities createSecurityCapabilities() { return new SecurityCapabilities(); } /** * Create an instance of {@link MiscCapabilities } * */ public MiscCapabilities createMiscCapabilities() { return new MiscCapabilities(); } /** * Create an instance of {@link SystemCapabilities } * */ public SystemCapabilities createSystemCapabilities() { return new SystemCapabilities(); } /** * Create an instance of {@link Service.Capabilities } * */ public Service.Capabilities createServiceCapabilities() { return new Service.Capabilities(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link DeviceServiceCapabilities }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/device/wsdl", name = "Capabilities") public JAXBElement createCapabilities(DeviceServiceCapabilities value) { return new JAXBElement(_Capabilities_QNAME, DeviceServiceCapabilities.class, null, value); } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/RemoveIPAddressFilter.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.IPAddressFilter; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ipAddressFilter" }) @XmlRootElement(name = "RemoveIPAddressFilter") public class RemoveIPAddressFilter { @XmlElement(name = "IPAddressFilter", required = true) protected IPAddressFilter ipAddressFilter; /** * Ruft den Wert der ipAddressFilter-Eigenschaft ab. * * @return possible object is {@link IPAddressFilter } * */ public IPAddressFilter getIPAddressFilter() { return ipAddressFilter; } /** * Legt den Wert der ipAddressFilter-Eigenschaft fest. * * @param value * allowed object is {@link IPAddressFilter } * */ public void setIPAddressFilter(IPAddressFilter value) { this.ipAddressFilter = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/RemoveIPAddressFilterResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RemoveIPAddressFilterResponse") public class RemoveIPAddressFilterResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/RemoveScopes.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "scopeItem" }) @XmlRootElement(name = "RemoveScopes") public class RemoveScopes { @XmlElement(name = "ScopeItem", required = true) @XmlSchemaType(name = "anyURI") protected List scopeItem; /** * Gets the value of the scopeItem property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the scopeItem property. * *

* For example, to add a new item, do as follows: * *

	 * getScopeItem().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getScopeItem() { if (scopeItem == null) { scopeItem = new ArrayList(); } return this.scopeItem; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/RemoveScopesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "scopeItem" }) @XmlRootElement(name = "RemoveScopesResponse") public class RemoveScopesResponse { @XmlElement(name = "ScopeItem") @XmlSchemaType(name = "anyURI") protected List scopeItem; /** * Gets the value of the scopeItem property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the scopeItem property. * *

* For example, to add a new item, do as follows: * *

	 * getScopeItem().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getScopeItem() { if (scopeItem == null) { scopeItem = new ArrayList(); } return this.scopeItem; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/RestoreSystem.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.BackupFile; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "backupFiles" }) @XmlRootElement(name = "RestoreSystem") public class RestoreSystem { @XmlElement(name = "BackupFiles", required = true) protected List backupFiles; /** * Gets the value of the backupFiles property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the backupFiles property. * *

* For example, to add a new item, do as follows: * *

	 * getBackupFiles().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link BackupFile } * * */ public List getBackupFiles() { if (backupFiles == null) { backupFiles = new ArrayList(); } return this.backupFiles; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/RestoreSystemResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RestoreSystemResponse") public class RestoreSystemResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/ScanAvailableDot11Networks.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "interfaceToken" }) @XmlRootElement(name = "ScanAvailableDot11Networks") public class ScanAvailableDot11Networks { @XmlElement(name = "InterfaceToken", required = true) protected String interfaceToken; /** * Ruft den Wert der interfaceToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getInterfaceToken() { return interfaceToken; } /** * Legt den Wert der interfaceToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setInterfaceToken(String value) { this.interfaceToken = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/ScanAvailableDot11NetworksResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Dot11AvailableNetworks; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "networks" }) @XmlRootElement(name = "ScanAvailableDot11NetworksResponse") public class ScanAvailableDot11NetworksResponse { @XmlElement(name = "Networks") protected List networks; /** * Gets the value of the networks property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the networks property. * *

* For example, to add a new item, do as follows: * *

	 * getNetworks().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Dot11AvailableNetworks } * * */ public List getNetworks() { if (networks == null) { networks = new ArrayList(); } return this.networks; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SecurityCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r SecurityCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SecurityCapabilities") public class SecurityCapabilities { @XmlAttribute(name = "TLS1.0") protected Boolean tls10; @XmlAttribute(name = "TLS1.1") protected Boolean tls11; @XmlAttribute(name = "TLS1.2") protected Boolean tls12; @XmlAttribute(name = "OnboardKeyGeneration") protected Boolean onboardKeyGeneration; @XmlAttribute(name = "AccessPolicyConfig") protected Boolean accessPolicyConfig; @XmlAttribute(name = "DefaultAccessPolicy") protected Boolean defaultAccessPolicy; @XmlAttribute(name = "Dot1X") protected Boolean dot1X; @XmlAttribute(name = "RemoteUserHandling") protected Boolean remoteUserHandling; @XmlAttribute(name = "X.509Token") protected Boolean x509Token; @XmlAttribute(name = "SAMLToken") protected Boolean samlToken; @XmlAttribute(name = "KerberosToken") protected Boolean kerberosToken; @XmlAttribute(name = "UsernameToken") protected Boolean usernameToken; @XmlAttribute(name = "HttpDigest") protected Boolean httpDigest; @XmlAttribute(name = "RELToken") protected Boolean relToken; @XmlAttribute(name = "SupportedEAPMethods") protected List supportedEAPMethods; @XmlAttribute(name = "MaxUsers") protected Integer maxUsers; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der tls10-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isTLS10() { return tls10; } /** * Legt den Wert der tls10-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setTLS10(Boolean value) { this.tls10 = value; } /** * Ruft den Wert der tls11-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isTLS11() { return tls11; } /** * Legt den Wert der tls11-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setTLS11(Boolean value) { this.tls11 = value; } /** * Ruft den Wert der tls12-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isTLS12() { return tls12; } /** * Legt den Wert der tls12-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setTLS12(Boolean value) { this.tls12 = value; } /** * Ruft den Wert der onboardKeyGeneration-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isOnboardKeyGeneration() { return onboardKeyGeneration; } /** * Legt den Wert der onboardKeyGeneration-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setOnboardKeyGeneration(Boolean value) { this.onboardKeyGeneration = value; } /** * Ruft den Wert der accessPolicyConfig-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isAccessPolicyConfig() { return accessPolicyConfig; } /** * Legt den Wert der accessPolicyConfig-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setAccessPolicyConfig(Boolean value) { this.accessPolicyConfig = value; } /** * Ruft den Wert der defaultAccessPolicy-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isDefaultAccessPolicy() { return defaultAccessPolicy; } /** * Legt den Wert der defaultAccessPolicy-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setDefaultAccessPolicy(Boolean value) { this.defaultAccessPolicy = value; } /** * Ruft den Wert der dot1X-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isDot1X() { return dot1X; } /** * Legt den Wert der dot1X-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setDot1X(Boolean value) { this.dot1X = value; } /** * Ruft den Wert der remoteUserHandling-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isRemoteUserHandling() { return remoteUserHandling; } /** * Legt den Wert der remoteUserHandling-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setRemoteUserHandling(Boolean value) { this.remoteUserHandling = value; } /** * Ruft den Wert der x509Token-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isX509Token() { return x509Token; } /** * Legt den Wert der x509Token-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setX509Token(Boolean value) { this.x509Token = value; } /** * Ruft den Wert der samlToken-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isSAMLToken() { return samlToken; } /** * Legt den Wert der samlToken-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setSAMLToken(Boolean value) { this.samlToken = value; } /** * Ruft den Wert der kerberosToken-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isKerberosToken() { return kerberosToken; } /** * Legt den Wert der kerberosToken-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setKerberosToken(Boolean value) { this.kerberosToken = value; } /** * Ruft den Wert der usernameToken-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isUsernameToken() { return usernameToken; } /** * Legt den Wert der usernameToken-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setUsernameToken(Boolean value) { this.usernameToken = value; } /** * Ruft den Wert der httpDigest-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isHttpDigest() { return httpDigest; } /** * Legt den Wert der httpDigest-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setHttpDigest(Boolean value) { this.httpDigest = value; } /** * Ruft den Wert der relToken-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isRELToken() { return relToken; } /** * Legt den Wert der relToken-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setRELToken(Boolean value) { this.relToken = value; } /** * Gets the value of the supportedEAPMethods property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the supportedEAPMethods property. * *

* For example, to add a new item, do as follows: * *

	 * getSupportedEAPMethods().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Integer } * * */ public List getSupportedEAPMethods() { if (supportedEAPMethods == null) { supportedEAPMethods = new ArrayList(); } return this.supportedEAPMethods; } /** * Ruft den Wert der maxUsers-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getMaxUsers() { return maxUsers; } /** * Legt den Wert der maxUsers-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setMaxUsers(Integer value) { this.maxUsers = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SendAuxiliaryCommand.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "auxiliaryCommand" }) @XmlRootElement(name = "SendAuxiliaryCommand") public class SendAuxiliaryCommand { @XmlElement(name = "AuxiliaryCommand", required = true) protected String auxiliaryCommand; /** * Ruft den Wert der auxiliaryCommand-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getAuxiliaryCommand() { return auxiliaryCommand; } /** * Legt den Wert der auxiliaryCommand-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setAuxiliaryCommand(String value) { this.auxiliaryCommand = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SendAuxiliaryCommandResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "auxiliaryCommandResponse" }) @XmlRootElement(name = "SendAuxiliaryCommandResponse") public class SendAuxiliaryCommandResponse { @XmlElement(name = "AuxiliaryCommandResponse") protected String auxiliaryCommandResponse; /** * Ruft den Wert der auxiliaryCommandResponse-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getAuxiliaryCommandResponse() { return auxiliaryCommandResponse; } /** * Legt den Wert der auxiliaryCommandResponse-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setAuxiliaryCommandResponse(String value) { this.auxiliaryCommandResponse = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/Service.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.onvif.ver10.schema.OnvifVersion; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Service complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *               
 *             
 *           
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Service", propOrder = { "namespace", "xAddr", "capabilities", "version", "any" }) public class Service { @XmlElement(name = "Namespace", required = true) @XmlSchemaType(name = "anyURI") protected String namespace; @XmlElement(name = "XAddr", required = true) @XmlSchemaType(name = "anyURI") protected String xAddr; @XmlElement(name = "Capabilities") protected Service.Capabilities capabilities; @XmlElement(name = "Version", required = true) protected OnvifVersion version; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der namespace-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getNamespace() { return namespace; } /** * Legt den Wert der namespace-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setNamespace(String value) { this.namespace = value; } /** * Ruft den Wert der xAddr-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getXAddr() { return xAddr; } /** * Legt den Wert der xAddr-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setXAddr(String value) { this.xAddr = value; } /** * Ruft den Wert der capabilities-Eigenschaft ab. * * @return possible object is {@link Service.Capabilities } * */ public Service.Capabilities getCapabilities() { return capabilities; } /** * Legt den Wert der capabilities-Eigenschaft fest. * * @param value * allowed object is {@link Service.Capabilities } * */ public void setCapabilities(Service.Capabilities value) { this.capabilities = value; } /** * Ruft den Wert der version-Eigenschaft ab. * * @return possible object is {@link OnvifVersion } * */ public OnvifVersion getVersion() { return version; } /** * Legt den Wert der version-Eigenschaft fest. * * @param value * allowed object is {@link OnvifVersion } * */ public void setVersion(OnvifVersion value) { this.version = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *         
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) public static class Capabilities { @XmlAnyElement(lax = true) protected Object any; /** * Ruft den Wert der any-Eigenschaft ab. * * @return possible object is {@link Element } {@link Object } * */ public Object getAny() { return any; } /** * Legt den Wert der any-Eigenschaft fest. * * @param value * allowed object is {@link Element } {@link Object } * */ public void setAny(Object value) { this.any = value; } } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetAccessPolicy.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.BinaryData; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "policyFile" }) @XmlRootElement(name = "SetAccessPolicy") public class SetAccessPolicy { @XmlElement(name = "PolicyFile", required = true) protected BinaryData policyFile; /** * Ruft den Wert der policyFile-Eigenschaft ab. * * @return possible object is {@link BinaryData } * */ public BinaryData getPolicyFile() { return policyFile; } /** * Legt den Wert der policyFile-Eigenschaft fest. * * @param value * allowed object is {@link BinaryData } * */ public void setPolicyFile(BinaryData value) { this.policyFile = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetAccessPolicyResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetAccessPolicyResponse") public class SetAccessPolicyResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetCertificatesStatus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.CertificateStatus; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "certificateStatus" }) @XmlRootElement(name = "SetCertificatesStatus") public class SetCertificatesStatus { @XmlElement(name = "CertificateStatus") protected List certificateStatus; /** * Gets the value of the certificateStatus property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the certificateStatus property. * *

* For example, to add a new item, do as follows: * *

	 * getCertificateStatus().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link CertificateStatus } * * */ public List getCertificateStatus() { if (certificateStatus == null) { certificateStatus = new ArrayList(); } return this.certificateStatus; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetCertificatesStatusResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetCertificatesStatusResponse") public class SetCertificatesStatusResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetClientCertificateMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "enabled" }) @XmlRootElement(name = "SetClientCertificateMode") public class SetClientCertificateMode { @XmlElement(name = "Enabled") protected boolean enabled; /** * Ruft den Wert der enabled-Eigenschaft ab. * */ public boolean isEnabled() { return enabled; } /** * Legt den Wert der enabled-Eigenschaft fest. * */ public void setEnabled(boolean value) { this.enabled = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetClientCertificateModeResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetClientCertificateModeResponse") public class SetClientCertificateModeResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetDNS.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import org.onvif.ver10.schema.IPAddress; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "fromDHCP", "searchDomain", "dnsManual" }) @XmlRootElement(name = "SetDNS") public class SetDNS { @XmlElement(name = "FromDHCP") protected boolean fromDHCP; @XmlElement(name = "SearchDomain") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected List searchDomain; @XmlElement(name = "DNSManual") protected List dnsManual; /** * Ruft den Wert der fromDHCP-Eigenschaft ab. * */ public boolean isFromDHCP() { return fromDHCP; } /** * Legt den Wert der fromDHCP-Eigenschaft fest. * */ public void setFromDHCP(boolean value) { this.fromDHCP = value; } /** * Gets the value of the searchDomain property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the searchDomain property. * *

* For example, to add a new item, do as follows: * *

	 * getSearchDomain().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getSearchDomain() { if (searchDomain == null) { searchDomain = new ArrayList(); } return this.searchDomain; } /** * Gets the value of the dnsManual property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the dnsManual property. * *

* For example, to add a new item, do as follows: * *

	 * getDNSManual().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link IPAddress } * * */ public List getDNSManual() { if (dnsManual == null) { dnsManual = new ArrayList(); } return this.dnsManual; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetDNSResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetDNSResponse") public class SetDNSResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetDPAddresses.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.NetworkHost; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dpAddress" }) @XmlRootElement(name = "SetDPAddresses") public class SetDPAddresses { @XmlElement(name = "DPAddress") protected List dpAddress; /** * Gets the value of the dpAddress property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the dpAddress property. * *

* For example, to add a new item, do as follows: * *

	 * getDPAddress().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link NetworkHost } * * */ public List getDPAddress() { if (dpAddress == null) { dpAddress = new ArrayList(); } return this.dpAddress; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetDPAddressesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetDPAddressesResponse") public class SetDPAddressesResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetDiscoveryMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.DiscoveryMode; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "discoveryMode" }) @XmlRootElement(name = "SetDiscoveryMode") public class SetDiscoveryMode { @XmlElement(name = "DiscoveryMode", required = true) protected DiscoveryMode discoveryMode; /** * Ruft den Wert der discoveryMode-Eigenschaft ab. * * @return possible object is {@link DiscoveryMode } * */ public DiscoveryMode getDiscoveryMode() { return discoveryMode; } /** * Legt den Wert der discoveryMode-Eigenschaft fest. * * @param value * allowed object is {@link DiscoveryMode } * */ public void setDiscoveryMode(DiscoveryMode value) { this.discoveryMode = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetDiscoveryModeResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetDiscoveryModeResponse") public class SetDiscoveryModeResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetDot1XConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Dot1XConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dot1XConfiguration" }) @XmlRootElement(name = "SetDot1XConfiguration") public class SetDot1XConfiguration { @XmlElement(name = "Dot1XConfiguration", required = true) protected Dot1XConfiguration dot1XConfiguration; /** * Ruft den Wert der dot1XConfiguration-Eigenschaft ab. * * @return possible object is {@link Dot1XConfiguration } * */ public Dot1XConfiguration getDot1XConfiguration() { return dot1XConfiguration; } /** * Legt den Wert der dot1XConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link Dot1XConfiguration } * */ public void setDot1XConfiguration(Dot1XConfiguration value) { this.dot1XConfiguration = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetDot1XConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetDot1XConfigurationResponse") public class SetDot1XConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetDynamicDNS.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.Duration; import org.onvif.ver10.schema.DynamicDNSType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "type", "name", "ttl" }) @XmlRootElement(name = "SetDynamicDNS") public class SetDynamicDNS { @XmlElement(name = "Type", required = true) protected DynamicDNSType type; @XmlElement(name = "Name") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String name; @XmlElement(name = "TTL") protected Duration ttl; /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link DynamicDNSType } * */ public DynamicDNSType getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link DynamicDNSType } * */ public void setType(DynamicDNSType value) { this.type = value; } /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der ttl-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getTTL() { return ttl; } /** * Legt den Wert der ttl-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setTTL(Duration value) { this.ttl = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetDynamicDNSResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetDynamicDNSResponse") public class SetDynamicDNSResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetHostname.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "name" }) @XmlRootElement(name = "SetHostname") public class SetHostname { @XmlElement(name = "Name", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String name; /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetHostnameFromDHCP.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "fromDHCP" }) @XmlRootElement(name = "SetHostnameFromDHCP") public class SetHostnameFromDHCP { @XmlElement(name = "FromDHCP") protected boolean fromDHCP; /** * Ruft den Wert der fromDHCP-Eigenschaft ab. * */ public boolean isFromDHCP() { return fromDHCP; } /** * Legt den Wert der fromDHCP-Eigenschaft fest. * */ public void setFromDHCP(boolean value) { this.fromDHCP = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetHostnameFromDHCPResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "rebootNeeded" }) @XmlRootElement(name = "SetHostnameFromDHCPResponse") public class SetHostnameFromDHCPResponse { @XmlElement(name = "RebootNeeded") protected boolean rebootNeeded; /** * Ruft den Wert der rebootNeeded-Eigenschaft ab. * */ public boolean isRebootNeeded() { return rebootNeeded; } /** * Legt den Wert der rebootNeeded-Eigenschaft fest. * */ public void setRebootNeeded(boolean value) { this.rebootNeeded = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetHostnameResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetHostnameResponse") public class SetHostnameResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetIPAddressFilter.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.IPAddressFilter; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ipAddressFilter" }) @XmlRootElement(name = "SetIPAddressFilter") public class SetIPAddressFilter { @XmlElement(name = "IPAddressFilter", required = true) protected IPAddressFilter ipAddressFilter; /** * Ruft den Wert der ipAddressFilter-Eigenschaft ab. * * @return possible object is {@link IPAddressFilter } * */ public IPAddressFilter getIPAddressFilter() { return ipAddressFilter; } /** * Legt den Wert der ipAddressFilter-Eigenschaft fest. * * @param value * allowed object is {@link IPAddressFilter } * */ public void setIPAddressFilter(IPAddressFilter value) { this.ipAddressFilter = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetIPAddressFilterResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetIPAddressFilterResponse") public class SetIPAddressFilterResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetNTP.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.NetworkHost; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "fromDHCP", "ntpManual" }) @XmlRootElement(name = "SetNTP") public class SetNTP { @XmlElement(name = "FromDHCP") protected boolean fromDHCP; @XmlElement(name = "NTPManual") protected List ntpManual; /** * Ruft den Wert der fromDHCP-Eigenschaft ab. * */ public boolean isFromDHCP() { return fromDHCP; } /** * Legt den Wert der fromDHCP-Eigenschaft fest. * */ public void setFromDHCP(boolean value) { this.fromDHCP = value; } /** * Gets the value of the ntpManual property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the ntpManual property. * *

* For example, to add a new item, do as follows: * *

	 * getNTPManual().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link NetworkHost } * * */ public List getNTPManual() { if (ntpManual == null) { ntpManual = new ArrayList(); } return this.ntpManual; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetNTPResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetNTPResponse") public class SetNTPResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetNetworkDefaultGateway.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "iPv4Address", "iPv6Address" }) @XmlRootElement(name = "SetNetworkDefaultGateway") public class SetNetworkDefaultGateway { @XmlElement(name = "IPv4Address") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected List iPv4Address; @XmlElement(name = "IPv6Address") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected List iPv6Address; /** * Gets the value of the iPv4Address property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the iPv4Address property. * *

* For example, to add a new item, do as follows: * *

	 * getIPv4Address().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getIPv4Address() { if (iPv4Address == null) { iPv4Address = new ArrayList(); } return this.iPv4Address; } /** * Gets the value of the iPv6Address property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the iPv6Address property. * *

* For example, to add a new item, do as follows: * *

	 * getIPv6Address().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getIPv6Address() { if (iPv6Address == null) { iPv6Address = new ArrayList(); } return this.iPv6Address; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetNetworkDefaultGatewayResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetNetworkDefaultGatewayResponse") public class SetNetworkDefaultGatewayResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetNetworkInterfaces.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.NetworkInterfaceSetConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "interfaceToken", "networkInterface" }) @XmlRootElement(name = "SetNetworkInterfaces") public class SetNetworkInterfaces { @XmlElement(name = "InterfaceToken", required = true) protected String interfaceToken; @XmlElement(name = "NetworkInterface", required = true) protected NetworkInterfaceSetConfiguration networkInterface; /** * Ruft den Wert der interfaceToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getInterfaceToken() { return interfaceToken; } /** * Legt den Wert der interfaceToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setInterfaceToken(String value) { this.interfaceToken = value; } /** * Ruft den Wert der networkInterface-Eigenschaft ab. * * @return possible object is {@link NetworkInterfaceSetConfiguration } * */ public NetworkInterfaceSetConfiguration getNetworkInterface() { return networkInterface; } /** * Legt den Wert der networkInterface-Eigenschaft fest. * * @param value * allowed object is {@link NetworkInterfaceSetConfiguration } * */ public void setNetworkInterface(NetworkInterfaceSetConfiguration value) { this.networkInterface = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetNetworkInterfacesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "rebootNeeded" }) @XmlRootElement(name = "SetNetworkInterfacesResponse") public class SetNetworkInterfacesResponse { @XmlElement(name = "RebootNeeded") protected boolean rebootNeeded; /** * Ruft den Wert der rebootNeeded-Eigenschaft ab. * */ public boolean isRebootNeeded() { return rebootNeeded; } /** * Legt den Wert der rebootNeeded-Eigenschaft fest. * */ public void setRebootNeeded(boolean value) { this.rebootNeeded = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetNetworkProtocols.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.NetworkProtocol; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "networkProtocols" }) @XmlRootElement(name = "SetNetworkProtocols") public class SetNetworkProtocols { @XmlElement(name = "NetworkProtocols", required = true) protected List networkProtocols; /** * Gets the value of the networkProtocols property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the networkProtocols property. * *

* For example, to add a new item, do as follows: * *

	 * getNetworkProtocols().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link NetworkProtocol } * * */ public List getNetworkProtocols() { if (networkProtocols == null) { networkProtocols = new ArrayList(); } return this.networkProtocols; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetNetworkProtocolsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetNetworkProtocolsResponse") public class SetNetworkProtocolsResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetRelayOutputSettings.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.RelayOutputSettings; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "relayOutputToken", "properties" }) @XmlRootElement(name = "SetRelayOutputSettings") public class SetRelayOutputSettings { @XmlElement(name = "RelayOutputToken", required = true) protected String relayOutputToken; @XmlElement(name = "Properties", required = true) protected RelayOutputSettings properties; /** * Ruft den Wert der relayOutputToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getRelayOutputToken() { return relayOutputToken; } /** * Legt den Wert der relayOutputToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setRelayOutputToken(String value) { this.relayOutputToken = value; } /** * Ruft den Wert der properties-Eigenschaft ab. * * @return possible object is {@link RelayOutputSettings } * */ public RelayOutputSettings getProperties() { return properties; } /** * Legt den Wert der properties-Eigenschaft fest. * * @param value * allowed object is {@link RelayOutputSettings } * */ public void setProperties(RelayOutputSettings value) { this.properties = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetRelayOutputSettingsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetRelayOutputSettingsResponse") public class SetRelayOutputSettingsResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetRelayOutputState.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.RelayLogicalState; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "relayOutputToken", "logicalState" }) @XmlRootElement(name = "SetRelayOutputState") public class SetRelayOutputState { @XmlElement(name = "RelayOutputToken", required = true) protected String relayOutputToken; @XmlElement(name = "LogicalState", required = true) protected RelayLogicalState logicalState; /** * Ruft den Wert der relayOutputToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getRelayOutputToken() { return relayOutputToken; } /** * Legt den Wert der relayOutputToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setRelayOutputToken(String value) { this.relayOutputToken = value; } /** * Ruft den Wert der logicalState-Eigenschaft ab. * * @return possible object is {@link RelayLogicalState } * */ public RelayLogicalState getLogicalState() { return logicalState; } /** * Legt den Wert der logicalState-Eigenschaft fest. * * @param value * allowed object is {@link RelayLogicalState } * */ public void setLogicalState(RelayLogicalState value) { this.logicalState = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetRelayOutputStateResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetRelayOutputStateResponse") public class SetRelayOutputStateResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetRemoteDiscoveryMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.DiscoveryMode; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "remoteDiscoveryMode" }) @XmlRootElement(name = "SetRemoteDiscoveryMode") public class SetRemoteDiscoveryMode { @XmlElement(name = "RemoteDiscoveryMode", required = true) protected DiscoveryMode remoteDiscoveryMode; /** * Ruft den Wert der remoteDiscoveryMode-Eigenschaft ab. * * @return possible object is {@link DiscoveryMode } * */ public DiscoveryMode getRemoteDiscoveryMode() { return remoteDiscoveryMode; } /** * Legt den Wert der remoteDiscoveryMode-Eigenschaft fest. * * @param value * allowed object is {@link DiscoveryMode } * */ public void setRemoteDiscoveryMode(DiscoveryMode value) { this.remoteDiscoveryMode = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetRemoteDiscoveryModeResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetRemoteDiscoveryModeResponse") public class SetRemoteDiscoveryModeResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetRemoteUser.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.RemoteUser; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "remoteUser" }) @XmlRootElement(name = "SetRemoteUser") public class SetRemoteUser { @XmlElement(name = "RemoteUser") protected RemoteUser remoteUser; /** * Ruft den Wert der remoteUser-Eigenschaft ab. * * @return possible object is {@link RemoteUser } * */ public RemoteUser getRemoteUser() { return remoteUser; } /** * Legt den Wert der remoteUser-Eigenschaft fest. * * @param value * allowed object is {@link RemoteUser } * */ public void setRemoteUser(RemoteUser value) { this.remoteUser = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetRemoteUserResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetRemoteUserResponse") public class SetRemoteUserResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetScopes.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "scopes" }) @XmlRootElement(name = "SetScopes") public class SetScopes { @XmlElement(name = "Scopes", required = true) @XmlSchemaType(name = "anyURI") protected List scopes; /** * Gets the value of the scopes property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the scopes property. * *

* For example, to add a new item, do as follows: * *

	 * getScopes().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getScopes() { if (scopes == null) { scopes = new ArrayList(); } return this.scopes; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetScopesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetScopesResponse") public class SetScopesResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetSystemDateAndTime.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.DateTime; import org.onvif.ver10.schema.SetDateTimeType; import org.onvif.ver10.schema.TimeZone; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dateTimeType", "daylightSavings", "timeZone", "utcDateTime" }) @XmlRootElement(name = "SetSystemDateAndTime") public class SetSystemDateAndTime { @XmlElement(name = "DateTimeType", required = true) protected SetDateTimeType dateTimeType; @XmlElement(name = "DaylightSavings") protected boolean daylightSavings; @XmlElement(name = "TimeZone") protected TimeZone timeZone; @XmlElement(name = "UTCDateTime") protected DateTime utcDateTime; /** * Ruft den Wert der dateTimeType-Eigenschaft ab. * * @return possible object is {@link SetDateTimeType } * */ public SetDateTimeType getDateTimeType() { return dateTimeType; } /** * Legt den Wert der dateTimeType-Eigenschaft fest. * * @param value * allowed object is {@link SetDateTimeType } * */ public void setDateTimeType(SetDateTimeType value) { this.dateTimeType = value; } /** * Ruft den Wert der daylightSavings-Eigenschaft ab. * */ public boolean isDaylightSavings() { return daylightSavings; } /** * Legt den Wert der daylightSavings-Eigenschaft fest. * */ public void setDaylightSavings(boolean value) { this.daylightSavings = value; } /** * Ruft den Wert der timeZone-Eigenschaft ab. * * @return possible object is {@link TimeZone } * */ public TimeZone getTimeZone() { return timeZone; } /** * Legt den Wert der timeZone-Eigenschaft fest. * * @param value * allowed object is {@link TimeZone } * */ public void setTimeZone(TimeZone value) { this.timeZone = value; } /** * Ruft den Wert der utcDateTime-Eigenschaft ab. * * @return possible object is {@link DateTime } * */ public DateTime getUTCDateTime() { return utcDateTime; } /** * Legt den Wert der utcDateTime-Eigenschaft fest. * * @param value * allowed object is {@link DateTime } * */ public void setUTCDateTime(DateTime value) { this.utcDateTime = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetSystemDateAndTimeResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetSystemDateAndTimeResponse") public class SetSystemDateAndTimeResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetSystemFactoryDefault.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.FactoryDefaultType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "factoryDefault" }) @XmlRootElement(name = "SetSystemFactoryDefault") public class SetSystemFactoryDefault { @XmlElement(name = "FactoryDefault", required = true) protected FactoryDefaultType factoryDefault; /** * Ruft den Wert der factoryDefault-Eigenschaft ab. * * @return possible object is {@link FactoryDefaultType } * */ public FactoryDefaultType getFactoryDefault() { return factoryDefault; } /** * Legt den Wert der factoryDefault-Eigenschaft fest. * * @param value * allowed object is {@link FactoryDefaultType } * */ public void setFactoryDefault(FactoryDefaultType value) { this.factoryDefault = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetSystemFactoryDefaultResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetSystemFactoryDefaultResponse") public class SetSystemFactoryDefaultResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetUser.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.User; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "user" }) @XmlRootElement(name = "SetUser") public class SetUser { @XmlElement(name = "User", required = true) protected List user; /** * Gets the value of the user property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the user property. * *

* For example, to add a new item, do as follows: * *

	 * getUser().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link User } * * */ public List getUser() { if (user == null) { user = new ArrayList(); } return this.user; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetUserResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetUserResponse") public class SetUserResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetZeroConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "interfaceToken", "enabled" }) @XmlRootElement(name = "SetZeroConfiguration") public class SetZeroConfiguration { @XmlElement(name = "InterfaceToken", required = true) protected String interfaceToken; @XmlElement(name = "Enabled") protected boolean enabled; /** * Ruft den Wert der interfaceToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getInterfaceToken() { return interfaceToken; } /** * Legt den Wert der interfaceToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setInterfaceToken(String value) { this.interfaceToken = value; } /** * Ruft den Wert der enabled-Eigenschaft ab. * */ public boolean isEnabled() { return enabled; } /** * Legt den Wert der enabled-Eigenschaft fest. * */ public void setEnabled(boolean value) { this.enabled = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SetZeroConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetZeroConfigurationResponse") public class SetZeroConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/StartFirmwareUpgrade.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "StartFirmwareUpgrade") public class StartFirmwareUpgrade { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/StartFirmwareUpgradeResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "uploadUri", "uploadDelay", "expectedDownTime" }) @XmlRootElement(name = "StartFirmwareUpgradeResponse") public class StartFirmwareUpgradeResponse { @XmlElement(name = "UploadUri", required = true) @XmlSchemaType(name = "anyURI") protected String uploadUri; @XmlElement(name = "UploadDelay", required = true) protected Duration uploadDelay; @XmlElement(name = "ExpectedDownTime", required = true) protected Duration expectedDownTime; /** * Ruft den Wert der uploadUri-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getUploadUri() { return uploadUri; } /** * Legt den Wert der uploadUri-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setUploadUri(String value) { this.uploadUri = value; } /** * Ruft den Wert der uploadDelay-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getUploadDelay() { return uploadDelay; } /** * Legt den Wert der uploadDelay-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setUploadDelay(Duration value) { this.uploadDelay = value; } /** * Ruft den Wert der expectedDownTime-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getExpectedDownTime() { return expectedDownTime; } /** * Legt den Wert der expectedDownTime-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setExpectedDownTime(Duration value) { this.expectedDownTime = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/StartSystemRestore.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "StartSystemRestore") public class StartSystemRestore { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/StartSystemRestoreResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "uploadUri", "expectedDownTime" }) @XmlRootElement(name = "StartSystemRestoreResponse") public class StartSystemRestoreResponse { @XmlElement(name = "UploadUri", required = true) @XmlSchemaType(name = "anyURI") protected String uploadUri; @XmlElement(name = "ExpectedDownTime", required = true) protected Duration expectedDownTime; /** * Ruft den Wert der uploadUri-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getUploadUri() { return uploadUri; } /** * Legt den Wert der uploadUri-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setUploadUri(String value) { this.uploadUri = value; } /** * Ruft den Wert der expectedDownTime-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getExpectedDownTime() { return expectedDownTime; } /** * Legt den Wert der expectedDownTime-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setExpectedDownTime(Duration value) { this.expectedDownTime = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SystemCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r SystemCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SystemCapabilities") public class SystemCapabilities { @XmlAttribute(name = "DiscoveryResolve") protected Boolean discoveryResolve; @XmlAttribute(name = "DiscoveryBye") protected Boolean discoveryBye; @XmlAttribute(name = "RemoteDiscovery") protected Boolean remoteDiscovery; @XmlAttribute(name = "SystemBackup") protected Boolean systemBackup; @XmlAttribute(name = "SystemLogging") protected Boolean systemLogging; @XmlAttribute(name = "FirmwareUpgrade") protected Boolean firmwareUpgrade; @XmlAttribute(name = "HttpFirmwareUpgrade") protected Boolean httpFirmwareUpgrade; @XmlAttribute(name = "HttpSystemBackup") protected Boolean httpSystemBackup; @XmlAttribute(name = "HttpSystemLogging") protected Boolean httpSystemLogging; @XmlAttribute(name = "HttpSupportInformation") protected Boolean httpSupportInformation; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der discoveryResolve-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isDiscoveryResolve() { return discoveryResolve; } /** * Legt den Wert der discoveryResolve-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setDiscoveryResolve(Boolean value) { this.discoveryResolve = value; } /** * Ruft den Wert der discoveryBye-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isDiscoveryBye() { return discoveryBye; } /** * Legt den Wert der discoveryBye-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setDiscoveryBye(Boolean value) { this.discoveryBye = value; } /** * Ruft den Wert der remoteDiscovery-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isRemoteDiscovery() { return remoteDiscovery; } /** * Legt den Wert der remoteDiscovery-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setRemoteDiscovery(Boolean value) { this.remoteDiscovery = value; } /** * Ruft den Wert der systemBackup-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isSystemBackup() { return systemBackup; } /** * Legt den Wert der systemBackup-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setSystemBackup(Boolean value) { this.systemBackup = value; } /** * Ruft den Wert der systemLogging-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isSystemLogging() { return systemLogging; } /** * Legt den Wert der systemLogging-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setSystemLogging(Boolean value) { this.systemLogging = value; } /** * Ruft den Wert der firmwareUpgrade-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isFirmwareUpgrade() { return firmwareUpgrade; } /** * Legt den Wert der firmwareUpgrade-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setFirmwareUpgrade(Boolean value) { this.firmwareUpgrade = value; } /** * Ruft den Wert der httpFirmwareUpgrade-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isHttpFirmwareUpgrade() { return httpFirmwareUpgrade; } /** * Legt den Wert der httpFirmwareUpgrade-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setHttpFirmwareUpgrade(Boolean value) { this.httpFirmwareUpgrade = value; } /** * Ruft den Wert der httpSystemBackup-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isHttpSystemBackup() { return httpSystemBackup; } /** * Legt den Wert der httpSystemBackup-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setHttpSystemBackup(Boolean value) { this.httpSystemBackup = value; } /** * Ruft den Wert der httpSystemLogging-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isHttpSystemLogging() { return httpSystemLogging; } /** * Legt den Wert der httpSystemLogging-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setHttpSystemLogging(Boolean value) { this.httpSystemLogging = value; } /** * Ruft den Wert der httpSupportInformation-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isHttpSupportInformation() { return httpSupportInformation; } /** * Legt den Wert der httpSupportInformation-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setHttpSupportInformation(Boolean value) { this.httpSupportInformation = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SystemReboot.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SystemReboot") public class SystemReboot { } ================================================ FILE: src/org/onvif/ver10/device/wsdl/SystemRebootResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "message" }) @XmlRootElement(name = "SystemRebootResponse") public class SystemRebootResponse { @XmlElement(name = "Message", required = true) protected String message; /** * Ruft den Wert der message-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getMessage() { return message; } /** * Legt den Wert der message-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setMessage(String value) { this.message = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/UpgradeSystemFirmware.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AttachmentData; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "firmware" }) @XmlRootElement(name = "UpgradeSystemFirmware") public class UpgradeSystemFirmware { @XmlElement(name = "Firmware", required = true) protected AttachmentData firmware; /** * Ruft den Wert der firmware-Eigenschaft ab. * * @return possible object is {@link AttachmentData } * */ public AttachmentData getFirmware() { return firmware; } /** * Legt den Wert der firmware-Eigenschaft fest. * * @param value * allowed object is {@link AttachmentData } * */ public void setFirmware(AttachmentData value) { this.firmware = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/UpgradeSystemFirmwareResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.device.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "message" }) @XmlRootElement(name = "UpgradeSystemFirmwareResponse") public class UpgradeSystemFirmwareResponse { @XmlElement(name = "Message") protected String message; /** * Ruft den Wert der message-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getMessage() { return message; } /** * Legt den Wert der message-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setMessage(String value) { this.message = value; } } ================================================ FILE: src/org/onvif/ver10/device/wsdl/package-info.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/device/wsdl", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) package org.onvif.ver10.device.wsdl; ================================================ FILE: src/org/onvif/ver10/events/wsdl/Capabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr Capabilities complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="Capabilities">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="WSSubscriptionPolicySupport" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="WSPullPointSupport" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="WSPausableSubscriptionManagerInterfaceSupport" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="MaxNotificationProducers" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="MaxPullPoints" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="PersistentNotificationStorage" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Capabilities", propOrder = { "any" }) public class Capabilities { @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "WSSubscriptionPolicySupport") protected Boolean wsSubscriptionPolicySupport; @XmlAttribute(name = "WSPullPointSupport") protected Boolean wsPullPointSupport; @XmlAttribute(name = "WSPausableSubscriptionManagerInterfaceSupport") protected Boolean wsPausableSubscriptionManagerInterfaceSupport; @XmlAttribute(name = "MaxNotificationProducers") protected Integer maxNotificationProducers; @XmlAttribute(name = "MaxPullPoints") protected Integer maxPullPoints; @XmlAttribute(name = "PersistentNotificationStorage") protected Boolean persistentNotificationStorage; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der wsSubscriptionPolicySupport-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isWSSubscriptionPolicySupport() { return wsSubscriptionPolicySupport; } /** * Legt den Wert der wsSubscriptionPolicySupport-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setWSSubscriptionPolicySupport(Boolean value) { this.wsSubscriptionPolicySupport = value; } /** * Ruft den Wert der wsPullPointSupport-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isWSPullPointSupport() { return wsPullPointSupport; } /** * Legt den Wert der wsPullPointSupport-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setWSPullPointSupport(Boolean value) { this.wsPullPointSupport = value; } /** * Ruft den Wert der wsPausableSubscriptionManagerInterfaceSupport-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isWSPausableSubscriptionManagerInterfaceSupport() { return wsPausableSubscriptionManagerInterfaceSupport; } /** * Legt den Wert der wsPausableSubscriptionManagerInterfaceSupport-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setWSPausableSubscriptionManagerInterfaceSupport(Boolean value) { this.wsPausableSubscriptionManagerInterfaceSupport = value; } /** * Ruft den Wert der maxNotificationProducers-Eigenschaft ab. * * @return * possible object is * {@link Integer } * */ public Integer getMaxNotificationProducers() { return maxNotificationProducers; } /** * Legt den Wert der maxNotificationProducers-Eigenschaft fest. * * @param value * allowed object is * {@link Integer } * */ public void setMaxNotificationProducers(Integer value) { this.maxNotificationProducers = value; } /** * Ruft den Wert der maxPullPoints-Eigenschaft ab. * * @return * possible object is * {@link Integer } * */ public Integer getMaxPullPoints() { return maxPullPoints; } /** * Legt den Wert der maxPullPoints-Eigenschaft fest. * * @param value * allowed object is * {@link Integer } * */ public void setMaxPullPoints(Integer value) { this.maxPullPoints = value; } /** * Ruft den Wert der persistentNotificationStorage-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isPersistentNotificationStorage() { return persistentNotificationStorage; } /** * Legt den Wert der persistentNotificationStorage-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setPersistentNotificationStorage(Boolean value) { this.persistentNotificationStorage = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/events/wsdl/CreatePullPointSubscription.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsn.b_2.FilterType; import org.w3c.dom.Element; /** *

Java-Klasse for anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *               
 *             
 *           
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "filter", "initialTerminationTime", "subscriptionPolicy", "any" }) @XmlRootElement(name = "CreatePullPointSubscription") public class CreatePullPointSubscription { @XmlElement(name = "Filter") protected FilterType filter; @XmlElementRef(name = "InitialTerminationTime", namespace = "http://www.onvif.org/ver10/events/wsdl", type = JAXBElement.class, required = false) protected JAXBElement initialTerminationTime; @XmlElement(name = "SubscriptionPolicy") protected CreatePullPointSubscription.SubscriptionPolicy subscriptionPolicy; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der filter-Eigenschaft ab. * * @return * possible object is * {@link FilterType } * */ public FilterType getFilter() { return filter; } /** * Legt den Wert der filter-Eigenschaft fest. * * @param value * allowed object is * {@link FilterType } * */ public void setFilter(FilterType value) { this.filter = value; } /** * Ruft den Wert der initialTerminationTime-Eigenschaft ab. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getInitialTerminationTime() { return initialTerminationTime; } /** * Legt den Wert der initialTerminationTime-Eigenschaft fest. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setInitialTerminationTime(JAXBElement value) { this.initialTerminationTime = value; } /** * Ruft den Wert der subscriptionPolicy-Eigenschaft ab. * * @return * possible object is * {@link CreatePullPointSubscription.SubscriptionPolicy } * */ public CreatePullPointSubscription.SubscriptionPolicy getSubscriptionPolicy() { return subscriptionPolicy; } /** * Legt den Wert der subscriptionPolicy-Eigenschaft fest. * * @param value * allowed object is * {@link CreatePullPointSubscription.SubscriptionPolicy } * */ public void setSubscriptionPolicy(CreatePullPointSubscription.SubscriptionPolicy value) { this.subscriptionPolicy = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** *

Java-Klasse for anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

     * 
     *   
     *     
     *       
     *         
     *       
     *     
     *   
     * 
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) public static class SubscriptionPolicy { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

         *    getAny().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } } ================================================ FILE: src/org/onvif/ver10/events/wsdl/CreatePullPointSubscriptionResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import org.w3._2005._08.addressing.EndpointReferenceType; import org.w3c.dom.Element; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="SubscriptionReference" type="{http://www.w3.org/2005/08/addressing}EndpointReferenceType"/>
 *         <element ref="{http://docs.oasis-open.org/wsn/b-2}CurrentTime"/>
 *         <element ref="{http://docs.oasis-open.org/wsn/b-2}TerminationTime"/>
 *         <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "subscriptionReference", "currentTime", "terminationTime", "any" }) @XmlRootElement(name = "CreatePullPointSubscriptionResponse") public class CreatePullPointSubscriptionResponse { @XmlElement(name = "SubscriptionReference", required = true) protected EndpointReferenceType subscriptionReference; @XmlElement(name = "CurrentTime", namespace = "http://docs.oasis-open.org/wsn/b-2", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar currentTime; @XmlElement(name = "TerminationTime", namespace = "http://docs.oasis-open.org/wsn/b-2", required = true, nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar terminationTime; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der subscriptionReference-Eigenschaft ab. * * @return * possible object is * {@link EndpointReferenceType } * */ public EndpointReferenceType getSubscriptionReference() { return subscriptionReference; } /** * Legt den Wert der subscriptionReference-Eigenschaft fest. * * @param value * allowed object is * {@link EndpointReferenceType } * */ public void setSubscriptionReference(EndpointReferenceType value) { this.subscriptionReference = value; } /** * Current time of the server for synchronization purposes. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCurrentTime() { return currentTime; } /** * Legt den Wert der currentTime-Eigenschaft fest. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCurrentTime(XMLGregorianCalendar value) { this.currentTime = value; } /** * Date time when the PullPoint will be shut down without further pull requests. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTerminationTime() { return terminationTime; } /** * Legt den Wert der terminationTime-Eigenschaft fest. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTerminationTime(XMLGregorianCalendar value) { this.terminationTime = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/events/wsdl/GetEventProperties.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetEventProperties") public class GetEventProperties { } ================================================ FILE: src/org/onvif/ver10/events/wsdl/GetEventPropertiesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsn.t_1.TopicSetType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="TopicNamespaceLocation" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded"/>
 *         <element ref="{http://docs.oasis-open.org/wsn/b-2}FixedTopicSet"/>
 *         <element ref="{http://docs.oasis-open.org/wsn/t-1}TopicSet"/>
 *         <element ref="{http://docs.oasis-open.org/wsn/b-2}TopicExpressionDialect" maxOccurs="unbounded"/>
 *         <element name="MessageContentFilterDialect" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded"/>
 *         <element name="ProducerPropertiesFilterDialect" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="MessageContentSchemaLocation" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded"/>
 *         <any namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "topicNamespaceLocation", "fixedTopicSet", "topicSet", "topicExpressionDialect", "messageContentFilterDialect", "producerPropertiesFilterDialect", "messageContentSchemaLocation", "any" }) @XmlRootElement(name = "GetEventPropertiesResponse") public class GetEventPropertiesResponse { @XmlElement(name = "TopicNamespaceLocation", required = true) @XmlSchemaType(name = "anyURI") protected List topicNamespaceLocation; @XmlElement(name = "FixedTopicSet", namespace = "http://docs.oasis-open.org/wsn/b-2", defaultValue = "true") protected boolean fixedTopicSet; @XmlElement(name = "TopicSet", namespace = "http://docs.oasis-open.org/wsn/t-1", required = true) protected TopicSetType topicSet; @XmlElement(name = "TopicExpressionDialect", namespace = "http://docs.oasis-open.org/wsn/b-2", required = true) @XmlSchemaType(name = "anyURI") protected List topicExpressionDialect; @XmlElement(name = "MessageContentFilterDialect", required = true) @XmlSchemaType(name = "anyURI") protected List messageContentFilterDialect; @XmlElement(name = "ProducerPropertiesFilterDialect") @XmlSchemaType(name = "anyURI") protected List producerPropertiesFilterDialect; @XmlElement(name = "MessageContentSchemaLocation", required = true) @XmlSchemaType(name = "anyURI") protected List messageContentSchemaLocation; @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the topicNamespaceLocation property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the topicNamespaceLocation property. * *

* For example, to add a new item, do as follows: *

     *    getTopicNamespaceLocation().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getTopicNamespaceLocation() { if (topicNamespaceLocation == null) { topicNamespaceLocation = new ArrayList(); } return this.topicNamespaceLocation; } /** * True when topicset is fixed for all times. * */ public boolean isFixedTopicSet() { return fixedTopicSet; } /** * Legt den Wert der fixedTopicSet-Eigenschaft fest. * */ public void setFixedTopicSet(boolean value) { this.fixedTopicSet = value; } /** * Set of topics supported. * * @return * possible object is * {@link TopicSetType } * */ public TopicSetType getTopicSet() { return topicSet; } /** * Legt den Wert der topicSet-Eigenschaft fest. * * @param value * allowed object is * {@link TopicSetType } * */ public void setTopicSet(TopicSetType value) { this.topicSet = value; } /** * * Defines the XPath expression syntax supported for matching topic expressions. *

     * <?xml version="1.0" encoding="UTF-8"?><br xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:tev="http://www.onvif.org/ver10/events/wsdl" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsnt="http://docs.oasis-open.org/wsn/b-2" xmlns:wsntw="http://docs.oasis-open.org/wsn/bw-2" xmlns:wsrf-rw="http://docs.oasis-open.org/wsrf/rw-2" xmlns:wstop="http://docs.oasis-open.org/wsn/t-1" xmlns:xs="http://www.w3.org/2001/XMLSchema"/>
     * 
* * The following TopicExpressionDialects are mandatory for an ONVIF compliant device : * *
     * <?xml version="1.0" encoding="UTF-8"?><ul xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:tev="http://www.onvif.org/ver10/events/wsdl" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsnt="http://docs.oasis-open.org/wsn/b-2" xmlns:wsntw="http://docs.oasis-open.org/wsn/bw-2" xmlns:wsrf-rw="http://docs.oasis-open.org/wsrf/rw-2" xmlns:wstop="http://docs.oasis-open.org/wsn/t-1" xmlns:xs="http://www.w3.org/2001/XMLSchema" type="disc"><li>http://docs.oasis-open.org/wsn/t-1/TopicExpression/Concrete</li><li>http://www.onvif.org/ver10/tev/topicExpression/ConcreteSet.</li></ul>
     * 
* Gets the value of the topicExpressionDialect property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the topicExpressionDialect property. * *

* For example, to add a new item, do as follows: *

     *    getTopicExpressionDialect().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getTopicExpressionDialect() { if (topicExpressionDialect == null) { topicExpressionDialect = new ArrayList(); } return this.topicExpressionDialect; } /** * Gets the value of the messageContentFilterDialect property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the messageContentFilterDialect property. * *

* For example, to add a new item, do as follows: *

     *    getMessageContentFilterDialect().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getMessageContentFilterDialect() { if (messageContentFilterDialect == null) { messageContentFilterDialect = new ArrayList(); } return this.messageContentFilterDialect; } /** * Gets the value of the producerPropertiesFilterDialect property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the producerPropertiesFilterDialect property. * *

* For example, to add a new item, do as follows: *

     *    getProducerPropertiesFilterDialect().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getProducerPropertiesFilterDialect() { if (producerPropertiesFilterDialect == null) { producerPropertiesFilterDialect = new ArrayList(); } return this.producerPropertiesFilterDialect; } /** * Gets the value of the messageContentSchemaLocation property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the messageContentSchemaLocation property. * *

* For example, to add a new item, do as follows: *

     *    getMessageContentSchemaLocation().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getMessageContentSchemaLocation() { if (messageContentSchemaLocation == null) { messageContentSchemaLocation = new ArrayList(); } return this.messageContentSchemaLocation; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/events/wsdl/GetServiceCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetServiceCapabilities") public class GetServiceCapabilities { } ================================================ FILE: src/org/onvif/ver10/events/wsdl/GetServiceCapabilitiesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Capabilities" type="{http://www.onvif.org/ver10/events/wsdl}Capabilities"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "capabilities" }) @XmlRootElement(name = "GetServiceCapabilitiesResponse") public class GetServiceCapabilitiesResponse { @XmlElement(name = "Capabilities", required = true) protected Capabilities capabilities; /** * Ruft den Wert der capabilities-Eigenschaft ab. * * @return * possible object is * {@link Capabilities } * */ public Capabilities getCapabilities() { return capabilities; } /** * Legt den Wert der capabilities-Eigenschaft fest. * * @param value * allowed object is * {@link Capabilities } * */ public void setCapabilities(Capabilities value) { this.capabilities = value; } } ================================================ FILE: src/org/onvif/ver10/events/wsdl/ObjectFactory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each * Java content interface and Java element interface * generated in the org.onvif.ver10.events.wsdl package. *

An ObjectFactory allows you to programatically * construct new instances of the Java representation * for XML content. The Java representation of XML * content can consist of schema derived interfaces * and classes representing the binding of schema * type definitions, element declarations and model * groups. Factory methods for each of these are * provided in this class. * */ @XmlRegistry public class ObjectFactory { private final static QName _Capabilities_QNAME = new QName("http://www.onvif.org/ver10/events/wsdl", "Capabilities"); private final static QName _CreatePullPointSubscriptionInitialTerminationTime_QNAME = new QName("http://www.onvif.org/ver10/events/wsdl", "InitialTerminationTime"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.onvif.ver10.events.wsdl * */ public ObjectFactory() { } /** * Create an instance of {@link CreatePullPointSubscription } * */ public CreatePullPointSubscription createCreatePullPointSubscription() { return new CreatePullPointSubscription(); } /** * Create an instance of {@link SeekResponse } * */ public SeekResponse createSeekResponse() { return new SeekResponse(); } /** * Create an instance of {@link PullMessages } * */ public PullMessages createPullMessages() { return new PullMessages(); } /** * Create an instance of {@link PullMessagesResponse } * */ public PullMessagesResponse createPullMessagesResponse() { return new PullMessagesResponse(); } /** * Create an instance of {@link CreatePullPointSubscriptionResponse } * */ public CreatePullPointSubscriptionResponse createCreatePullPointSubscriptionResponse() { return new CreatePullPointSubscriptionResponse(); } /** * Create an instance of {@link GetServiceCapabilitiesResponse } * */ public GetServiceCapabilitiesResponse createGetServiceCapabilitiesResponse() { return new GetServiceCapabilitiesResponse(); } /** * Create an instance of {@link Capabilities } * */ public Capabilities createCapabilities() { return new Capabilities(); } /** * Create an instance of {@link SetSynchronizationPointResponse } * */ public SetSynchronizationPointResponse createSetSynchronizationPointResponse() { return new SetSynchronizationPointResponse(); } /** * Create an instance of {@link GetEventProperties } * */ public GetEventProperties createGetEventProperties() { return new GetEventProperties(); } /** * Create an instance of {@link GetServiceCapabilities } * */ public GetServiceCapabilities createGetServiceCapabilities() { return new GetServiceCapabilities(); } /** * Create an instance of {@link GetEventPropertiesResponse } * */ public GetEventPropertiesResponse createGetEventPropertiesResponse() { return new GetEventPropertiesResponse(); } /** * Create an instance of {@link SetSynchronizationPoint } * */ public SetSynchronizationPoint createSetSynchronizationPoint() { return new SetSynchronizationPoint(); } /** * Create an instance of {@link CreatePullPointSubscription.SubscriptionPolicy } * */ public CreatePullPointSubscription.SubscriptionPolicy createCreatePullPointSubscriptionSubscriptionPolicy() { return new CreatePullPointSubscription.SubscriptionPolicy(); } /** * Create an instance of {@link PullMessagesFaultResponse } * */ public PullMessagesFaultResponse createPullMessagesFaultResponse() { return new PullMessagesFaultResponse(); } /** * Create an instance of {@link Seek } * */ public Seek createSeek() { return new Seek(); } /** * Create an instance of {@link org.onvif.ver10.events.wsdl.SubscriptionPolicy } * */ public org.onvif.ver10.events.wsdl.SubscriptionPolicy createSubscriptionPolicy() { return new org.onvif.ver10.events.wsdl.SubscriptionPolicy(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Capabilities }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/events/wsdl", name = "Capabilities") public JAXBElement createCapabilities(Capabilities value) { return new JAXBElement(_Capabilities_QNAME, Capabilities.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/events/wsdl", name = "InitialTerminationTime", scope = CreatePullPointSubscription.class) public JAXBElement createCreatePullPointSubscriptionInitialTerminationTime(String value) { return new JAXBElement(_CreatePullPointSubscriptionInitialTerminationTime_QNAME, String.class, CreatePullPointSubscription.class, value); } } ================================================ FILE: src/org/onvif/ver10/events/wsdl/PullMessages.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Timeout" type="{http://www.w3.org/2001/XMLSchema}duration"/>
 *         <element name="MessageLimit" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <any namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "timeout", "messageLimit", "any" }) @XmlRootElement(name = "PullMessages") public class PullMessages { @XmlElement(name = "Timeout", required = true) protected Duration timeout; @XmlElement(name = "MessageLimit") protected int messageLimit; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der timeout-Eigenschaft ab. * * @return * possible object is * {@link Duration } * */ public Duration getTimeout() { return timeout; } /** * Legt den Wert der timeout-Eigenschaft fest. * * @param value * allowed object is * {@link Duration } * */ public void setTimeout(Duration value) { this.timeout = value; } /** * Ruft den Wert der messageLimit-Eigenschaft ab. * */ public int getMessageLimit() { return messageLimit; } /** * Legt den Wert der messageLimit-Eigenschaft fest. * */ public void setMessageLimit(int value) { this.messageLimit = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/events/wsdl/PullMessagesFaultResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="MaxTimeout" type="{http://www.w3.org/2001/XMLSchema}duration"/>
 *         <element name="MaxMessageLimit" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <any namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "maxTimeout", "maxMessageLimit", "any" }) @XmlRootElement(name = "PullMessagesFaultResponse") public class PullMessagesFaultResponse { @XmlElement(name = "MaxTimeout", required = true) protected Duration maxTimeout; @XmlElement(name = "MaxMessageLimit") protected int maxMessageLimit; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der maxTimeout-Eigenschaft ab. * * @return * possible object is * {@link Duration } * */ public Duration getMaxTimeout() { return maxTimeout; } /** * Legt den Wert der maxTimeout-Eigenschaft fest. * * @param value * allowed object is * {@link Duration } * */ public void setMaxTimeout(Duration value) { this.maxTimeout = value; } /** * Ruft den Wert der maxMessageLimit-Eigenschaft ab. * */ public int getMaxMessageLimit() { return maxMessageLimit; } /** * Legt den Wert der maxMessageLimit-Eigenschaft fest. * */ public void setMaxMessageLimit(int value) { this.maxMessageLimit = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/events/wsdl/PullMessagesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import org.oasis_open.docs.wsn.b_2.NotificationMessageHolderType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="CurrentTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="TerminationTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element ref="{http://docs.oasis-open.org/wsn/b-2}NotificationMessage" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "currentTime", "terminationTime", "notificationMessage" }) @XmlRootElement(name = "PullMessagesResponse") public class PullMessagesResponse { @XmlElement(name = "CurrentTime", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar currentTime; @XmlElement(name = "TerminationTime", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar terminationTime; @XmlElement(name = "NotificationMessage", namespace = "http://docs.oasis-open.org/wsn/b-2") protected List notificationMessage; /** * Ruft den Wert der currentTime-Eigenschaft ab. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCurrentTime() { return currentTime; } /** * Legt den Wert der currentTime-Eigenschaft fest. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCurrentTime(XMLGregorianCalendar value) { this.currentTime = value; } /** * Ruft den Wert der terminationTime-Eigenschaft ab. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTerminationTime() { return terminationTime; } /** * Legt den Wert der terminationTime-Eigenschaft fest. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTerminationTime(XMLGregorianCalendar value) { this.terminationTime = value; } /** * List of messages. This list shall be empty in case of a timeout.Gets the value of the notificationMessage property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the notificationMessage property. * *

* For example, to add a new item, do as follows: *

     *    getNotificationMessage().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link NotificationMessageHolderType } * * */ public List getNotificationMessage() { if (notificationMessage == null) { notificationMessage = new ArrayList(); } return this.notificationMessage; } } ================================================ FILE: src/org/onvif/ver10/events/wsdl/Seek.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="UtcTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="Reverse" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <any namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "utcTime", "reverse", "any" }) @XmlRootElement(name = "Seek") public class Seek { @XmlElement(name = "UtcTime", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar utcTime; @XmlElement(name = "Reverse") protected Boolean reverse; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der utcTime-Eigenschaft ab. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getUtcTime() { return utcTime; } /** * Legt den Wert der utcTime-Eigenschaft fest. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setUtcTime(XMLGregorianCalendar value) { this.utcTime = value; } /** * Ruft den Wert der reverse-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isReverse() { return reverse; } /** * Legt den Wert der reverse-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setReverse(Boolean value) { this.reverse = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/events/wsdl/SeekResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SeekResponse") public class SeekResponse { } ================================================ FILE: src/org/onvif/ver10/events/wsdl/SetSynchronizationPoint.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetSynchronizationPoint") public class SetSynchronizationPoint { } ================================================ FILE: src/org/onvif/ver10/events/wsdl/SetSynchronizationPointResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetSynchronizationPointResponse") public class SetSynchronizationPointResponse { } ================================================ FILE: src/org/onvif/ver10/events/wsdl/SubscriptionPolicy.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // package org.onvif.ver10.events.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** * Optional ONVIF defined pull point subscription policies * *

Java-Klasse fr SubscriptionPolicy complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="SubscriptionPolicy">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="ChangedOnly" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SubscriptionPolicy", propOrder = { "any" }) public class SubscriptionPolicy { @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "ChangedOnly") protected Boolean changedOnly; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der changedOnly-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isChangedOnly() { return changedOnly; } /** * Legt den Wert der changedOnly-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setChangedOnly(Boolean value) { this.changedOnly = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/events/wsdl/package-info.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.03.16 um 01:52:47 PM CET // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/events/wsdl", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) package org.onvif.ver10.events.wsdl; ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddAudioDecoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "configurationToken" }) @XmlRootElement(name = "AddAudioDecoderConfiguration") public class AddAudioDecoderConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddAudioDecoderConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "AddAudioDecoderConfigurationResponse") public class AddAudioDecoderConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddAudioEncoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "configurationToken" }) @XmlRootElement(name = "AddAudioEncoderConfiguration") public class AddAudioEncoderConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddAudioEncoderConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "AddAudioEncoderConfigurationResponse") public class AddAudioEncoderConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddAudioOutputConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "configurationToken" }) @XmlRootElement(name = "AddAudioOutputConfiguration") public class AddAudioOutputConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddAudioOutputConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "AddAudioOutputConfigurationResponse") public class AddAudioOutputConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddAudioSourceConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "configurationToken" }) @XmlRootElement(name = "AddAudioSourceConfiguration") public class AddAudioSourceConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddAudioSourceConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "AddAudioSourceConfigurationResponse") public class AddAudioSourceConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddMetadataConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "configurationToken" }) @XmlRootElement(name = "AddMetadataConfiguration") public class AddMetadataConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddMetadataConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "AddMetadataConfigurationResponse") public class AddMetadataConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddPTZConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "configurationToken" }) @XmlRootElement(name = "AddPTZConfiguration") public class AddPTZConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddPTZConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "AddPTZConfigurationResponse") public class AddPTZConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddVideoAnalyticsConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "configurationToken" }) @XmlRootElement(name = "AddVideoAnalyticsConfiguration") public class AddVideoAnalyticsConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddVideoAnalyticsConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "AddVideoAnalyticsConfigurationResponse") public class AddVideoAnalyticsConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddVideoEncoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "configurationToken" }) @XmlRootElement(name = "AddVideoEncoderConfiguration") public class AddVideoEncoderConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddVideoEncoderConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "AddVideoEncoderConfigurationResponse") public class AddVideoEncoderConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddVideoSourceConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "configurationToken" }) @XmlRootElement(name = "AddVideoSourceConfiguration") public class AddVideoSourceConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/AddVideoSourceConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "AddVideoSourceConfigurationResponse") public class AddVideoSourceConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/Capabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Capabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Capabilities", propOrder = { "profileCapabilities", "streamingCapabilities", "any" }) public class Capabilities { @XmlElement(name = "ProfileCapabilities", required = true) protected ProfileCapabilities profileCapabilities; @XmlElement(name = "StreamingCapabilities", required = true) protected StreamingCapabilities streamingCapabilities; @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "SnapshotUri") protected Boolean snapshotUri; @XmlAttribute(name = "Rotation") protected Boolean rotation; @XmlAttribute(name = "VideoSourceMode") protected Boolean videoSourceMode; @XmlAttribute(name = "OSD") protected Boolean osd; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der profileCapabilities-Eigenschaft ab. * * @return possible object is {@link ProfileCapabilities } * */ public ProfileCapabilities getProfileCapabilities() { return profileCapabilities; } /** * Legt den Wert der profileCapabilities-Eigenschaft fest. * * @param value * allowed object is {@link ProfileCapabilities } * */ public void setProfileCapabilities(ProfileCapabilities value) { this.profileCapabilities = value; } /** * Ruft den Wert der streamingCapabilities-Eigenschaft ab. * * @return possible object is {@link StreamingCapabilities } * */ public StreamingCapabilities getStreamingCapabilities() { return streamingCapabilities; } /** * Legt den Wert der streamingCapabilities-Eigenschaft fest. * * @param value * allowed object is {@link StreamingCapabilities } * */ public void setStreamingCapabilities(StreamingCapabilities value) { this.streamingCapabilities = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der snapshotUri-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isSnapshotUri() { return snapshotUri; } /** * Legt den Wert der snapshotUri-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setSnapshotUri(Boolean value) { this.snapshotUri = value; } /** * Ruft den Wert der rotation-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isRotation() { return rotation; } /** * Legt den Wert der rotation-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setRotation(Boolean value) { this.rotation = value; } /** * Ruft den Wert der videoSourceMode-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isVideoSourceMode() { return videoSourceMode; } /** * Legt den Wert der videoSourceMode-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setVideoSourceMode(Boolean value) { this.videoSourceMode = value; } /** * Ruft den Wert der osd-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isOSD() { return osd; } /** * Legt den Wert der osd-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setOSD(Boolean value) { this.osd = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/CreateOSD.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.OSDConfiguration; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osd", "any" }) @XmlRootElement(name = "CreateOSD") public class CreateOSD { @XmlElement(name = "OSD", required = true) protected OSDConfiguration osd; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der osd-Eigenschaft ab. * * @return possible object is {@link OSDConfiguration } * */ public OSDConfiguration getOSD() { return osd; } /** * Legt den Wert der osd-Eigenschaft fest. * * @param value * allowed object is {@link OSDConfiguration } * */ public void setOSD(OSDConfiguration value) { this.osd = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/CreateOSDResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osdToken", "any" }) @XmlRootElement(name = "CreateOSDResponse") public class CreateOSDResponse { @XmlElement(name = "OSDToken", required = true) protected String osdToken; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der osdToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getOSDToken() { return osdToken; } /** * Legt den Wert der osdToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setOSDToken(String value) { this.osdToken = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/CreateProfile.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "name", "token" }) @XmlRootElement(name = "CreateProfile") public class CreateProfile { @XmlElement(name = "Name", required = true) protected String name; @XmlElement(name = "Token") protected String token; /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der token-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setToken(String value) { this.token = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/CreateProfileResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Profile; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profile" }) @XmlRootElement(name = "CreateProfileResponse") public class CreateProfileResponse { @XmlElement(name = "Profile", required = true) protected Profile profile; /** * Ruft den Wert der profile-Eigenschaft ab. * * @return possible object is {@link Profile } * */ public Profile getProfile() { return profile; } /** * Legt den Wert der profile-Eigenschaft fest. * * @param value * allowed object is {@link Profile } * */ public void setProfile(Profile value) { this.profile = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/DeleteOSD.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osdToken", "any" }) @XmlRootElement(name = "DeleteOSD") public class DeleteOSD { @XmlElement(name = "OSDToken", required = true) protected String osdToken; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der osdToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getOSDToken() { return osdToken; } /** * Legt den Wert der osdToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setOSDToken(String value) { this.osdToken = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/DeleteOSDResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) @XmlRootElement(name = "DeleteOSDResponse") public class DeleteOSDResponse { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/DeleteProfile.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "DeleteProfile") public class DeleteProfile { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/DeleteProfileResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "DeleteProfileResponse") public class DeleteProfileResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioDecoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken" }) @XmlRootElement(name = "GetAudioDecoderConfiguration") public class GetAudioDecoderConfiguration { @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioDecoderConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken", "profileToken" }) @XmlRootElement(name = "GetAudioDecoderConfigurationOptions") public class GetAudioDecoderConfigurationOptions { @XmlElement(name = "ConfigurationToken") protected String configurationToken; @XmlElement(name = "ProfileToken") protected String profileToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioDecoderConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioDecoderConfigurationOptions; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetAudioDecoderConfigurationOptionsResponse") public class GetAudioDecoderConfigurationOptionsResponse { @XmlElement(name = "Options", required = true) protected AudioDecoderConfigurationOptions options; /** * Ruft den Wert der options-Eigenschaft ab. * * @return possible object is {@link AudioDecoderConfigurationOptions } * */ public AudioDecoderConfigurationOptions getOptions() { return options; } /** * Legt den Wert der options-Eigenschaft fest. * * @param value * allowed object is {@link AudioDecoderConfigurationOptions } * */ public void setOptions(AudioDecoderConfigurationOptions value) { this.options = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioDecoderConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioDecoderConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "GetAudioDecoderConfigurationResponse") public class GetAudioDecoderConfigurationResponse { @XmlElement(name = "Configuration", required = true) protected AudioDecoderConfiguration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link AudioDecoderConfiguration } * */ public AudioDecoderConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link AudioDecoderConfiguration } * */ public void setConfiguration(AudioDecoderConfiguration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioDecoderConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetAudioDecoderConfigurations") public class GetAudioDecoderConfigurations { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioDecoderConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioDecoderConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetAudioDecoderConfigurationsResponse") public class GetAudioDecoderConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AudioDecoderConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioEncoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken" }) @XmlRootElement(name = "GetAudioEncoderConfiguration") public class GetAudioEncoderConfiguration { @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioEncoderConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken", "profileToken" }) @XmlRootElement(name = "GetAudioEncoderConfigurationOptions") public class GetAudioEncoderConfigurationOptions { @XmlElement(name = "ConfigurationToken") protected String configurationToken; @XmlElement(name = "ProfileToken") protected String profileToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioEncoderConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioEncoderConfigurationOptions; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetAudioEncoderConfigurationOptionsResponse") public class GetAudioEncoderConfigurationOptionsResponse { @XmlElement(name = "Options", required = true) protected AudioEncoderConfigurationOptions options; /** * Ruft den Wert der options-Eigenschaft ab. * * @return possible object is {@link AudioEncoderConfigurationOptions } * */ public AudioEncoderConfigurationOptions getOptions() { return options; } /** * Legt den Wert der options-Eigenschaft fest. * * @param value * allowed object is {@link AudioEncoderConfigurationOptions } * */ public void setOptions(AudioEncoderConfigurationOptions value) { this.options = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioEncoderConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioEncoderConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "GetAudioEncoderConfigurationResponse") public class GetAudioEncoderConfigurationResponse { @XmlElement(name = "Configuration", required = true) protected AudioEncoderConfiguration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link AudioEncoderConfiguration } * */ public AudioEncoderConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link AudioEncoderConfiguration } * */ public void setConfiguration(AudioEncoderConfiguration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioEncoderConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetAudioEncoderConfigurations") public class GetAudioEncoderConfigurations { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioEncoderConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioEncoderConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetAudioEncoderConfigurationsResponse") public class GetAudioEncoderConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AudioEncoderConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioOutputConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken" }) @XmlRootElement(name = "GetAudioOutputConfiguration") public class GetAudioOutputConfiguration { @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioOutputConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken", "profileToken" }) @XmlRootElement(name = "GetAudioOutputConfigurationOptions") public class GetAudioOutputConfigurationOptions { @XmlElement(name = "ConfigurationToken") protected String configurationToken; @XmlElement(name = "ProfileToken") protected String profileToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioOutputConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioOutputConfigurationOptions; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetAudioOutputConfigurationOptionsResponse") public class GetAudioOutputConfigurationOptionsResponse { @XmlElement(name = "Options", required = true) protected AudioOutputConfigurationOptions options; /** * Ruft den Wert der options-Eigenschaft ab. * * @return possible object is {@link AudioOutputConfigurationOptions } * */ public AudioOutputConfigurationOptions getOptions() { return options; } /** * Legt den Wert der options-Eigenschaft fest. * * @param value * allowed object is {@link AudioOutputConfigurationOptions } * */ public void setOptions(AudioOutputConfigurationOptions value) { this.options = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioOutputConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioOutputConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "GetAudioOutputConfigurationResponse") public class GetAudioOutputConfigurationResponse { @XmlElement(name = "Configuration", required = true) protected AudioOutputConfiguration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link AudioOutputConfiguration } * */ public AudioOutputConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link AudioOutputConfiguration } * */ public void setConfiguration(AudioOutputConfiguration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioOutputConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetAudioOutputConfigurations") public class GetAudioOutputConfigurations { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioOutputConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioOutputConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetAudioOutputConfigurationsResponse") public class GetAudioOutputConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AudioOutputConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioOutputs.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetAudioOutputs") public class GetAudioOutputs { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioOutputsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioOutput; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "audioOutputs" }) @XmlRootElement(name = "GetAudioOutputsResponse") public class GetAudioOutputsResponse { @XmlElement(name = "AudioOutputs") protected List audioOutputs; /** * Gets the value of the audioOutputs property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the audioOutputs property. * *

* For example, to add a new item, do as follows: * *

	 * getAudioOutputs().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AudioOutput } * * */ public List getAudioOutputs() { if (audioOutputs == null) { audioOutputs = new ArrayList(); } return this.audioOutputs; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioSourceConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken" }) @XmlRootElement(name = "GetAudioSourceConfiguration") public class GetAudioSourceConfiguration { @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioSourceConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken", "profileToken" }) @XmlRootElement(name = "GetAudioSourceConfigurationOptions") public class GetAudioSourceConfigurationOptions { @XmlElement(name = "ConfigurationToken") protected String configurationToken; @XmlElement(name = "ProfileToken") protected String profileToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioSourceConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioSourceConfigurationOptions; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetAudioSourceConfigurationOptionsResponse") public class GetAudioSourceConfigurationOptionsResponse { @XmlElement(name = "Options", required = true) protected AudioSourceConfigurationOptions options; /** * Ruft den Wert der options-Eigenschaft ab. * * @return possible object is {@link AudioSourceConfigurationOptions } * */ public AudioSourceConfigurationOptions getOptions() { return options; } /** * Legt den Wert der options-Eigenschaft fest. * * @param value * allowed object is {@link AudioSourceConfigurationOptions } * */ public void setOptions(AudioSourceConfigurationOptions value) { this.options = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioSourceConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioSourceConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "GetAudioSourceConfigurationResponse") public class GetAudioSourceConfigurationResponse { @XmlElement(name = "Configuration", required = true) protected AudioSourceConfiguration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link AudioSourceConfiguration } * */ public AudioSourceConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link AudioSourceConfiguration } * */ public void setConfiguration(AudioSourceConfiguration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioSourceConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetAudioSourceConfigurations") public class GetAudioSourceConfigurations { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioSourceConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioSourceConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetAudioSourceConfigurationsResponse") public class GetAudioSourceConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AudioSourceConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioSources.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetAudioSources") public class GetAudioSources { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetAudioSourcesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioSource; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "audioSources" }) @XmlRootElement(name = "GetAudioSourcesResponse") public class GetAudioSourcesResponse { @XmlElement(name = "AudioSources") protected List audioSources; /** * Gets the value of the audioSources property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the audioSources property. * *

* For example, to add a new item, do as follows: * *

	 * getAudioSources().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AudioSource } * * */ public List getAudioSources() { if (audioSources == null) { audioSources = new ArrayList(); } return this.audioSources; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleAudioDecoderConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetCompatibleAudioDecoderConfigurations") public class GetCompatibleAudioDecoderConfigurations { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleAudioDecoderConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioDecoderConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetCompatibleAudioDecoderConfigurationsResponse") public class GetCompatibleAudioDecoderConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AudioDecoderConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleAudioEncoderConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetCompatibleAudioEncoderConfigurations") public class GetCompatibleAudioEncoderConfigurations { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleAudioEncoderConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioEncoderConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetCompatibleAudioEncoderConfigurationsResponse") public class GetCompatibleAudioEncoderConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AudioEncoderConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleAudioOutputConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetCompatibleAudioOutputConfigurations") public class GetCompatibleAudioOutputConfigurations { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleAudioOutputConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioOutputConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetCompatibleAudioOutputConfigurationsResponse") public class GetCompatibleAudioOutputConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AudioOutputConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleAudioSourceConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetCompatibleAudioSourceConfigurations") public class GetCompatibleAudioSourceConfigurations { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleAudioSourceConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioSourceConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetCompatibleAudioSourceConfigurationsResponse") public class GetCompatibleAudioSourceConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AudioSourceConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleMetadataConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetCompatibleMetadataConfigurations") public class GetCompatibleMetadataConfigurations { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleMetadataConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.MetadataConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetCompatibleMetadataConfigurationsResponse") public class GetCompatibleMetadataConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link MetadataConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleVideoAnalyticsConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetCompatibleVideoAnalyticsConfigurations") public class GetCompatibleVideoAnalyticsConfigurations { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleVideoAnalyticsConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoAnalyticsConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetCompatibleVideoAnalyticsConfigurationsResponse") public class GetCompatibleVideoAnalyticsConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoAnalyticsConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleVideoEncoderConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetCompatibleVideoEncoderConfigurations") public class GetCompatibleVideoEncoderConfigurations { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleVideoEncoderConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoEncoderConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetCompatibleVideoEncoderConfigurationsResponse") public class GetCompatibleVideoEncoderConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoEncoderConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleVideoSourceConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetCompatibleVideoSourceConfigurations") public class GetCompatibleVideoSourceConfigurations { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetCompatibleVideoSourceConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoSourceConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetCompatibleVideoSourceConfigurationsResponse") public class GetCompatibleVideoSourceConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoSourceConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetGuaranteedNumberOfVideoEncoderInstances.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken" }) @XmlRootElement(name = "GetGuaranteedNumberOfVideoEncoderInstances") public class GetGuaranteedNumberOfVideoEncoderInstances { @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetGuaranteedNumberOfVideoEncoderInstancesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "totalNumber", "jpeg", "h264", "mpeg4" }) @XmlRootElement(name = "GetGuaranteedNumberOfVideoEncoderInstancesResponse") public class GetGuaranteedNumberOfVideoEncoderInstancesResponse { @XmlElement(name = "TotalNumber") protected int totalNumber; @XmlElement(name = "JPEG") protected Integer jpeg; @XmlElement(name = "H264") protected Integer h264; @XmlElement(name = "MPEG4") protected Integer mpeg4; /** * Ruft den Wert der totalNumber-Eigenschaft ab. * */ public int getTotalNumber() { return totalNumber; } /** * Legt den Wert der totalNumber-Eigenschaft fest. * */ public void setTotalNumber(int value) { this.totalNumber = value; } /** * Ruft den Wert der jpeg-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getJPEG() { return jpeg; } /** * Legt den Wert der jpeg-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setJPEG(Integer value) { this.jpeg = value; } /** * Ruft den Wert der h264-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getH264() { return h264; } /** * Legt den Wert der h264-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setH264(Integer value) { this.h264 = value; } /** * Ruft den Wert der mpeg4-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getMPEG4() { return mpeg4; } /** * Legt den Wert der mpeg4-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setMPEG4(Integer value) { this.mpeg4 = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetMetadataConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken" }) @XmlRootElement(name = "GetMetadataConfiguration") public class GetMetadataConfiguration { @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetMetadataConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken", "profileToken" }) @XmlRootElement(name = "GetMetadataConfigurationOptions") public class GetMetadataConfigurationOptions { @XmlElement(name = "ConfigurationToken") protected String configurationToken; @XmlElement(name = "ProfileToken") protected String profileToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetMetadataConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.MetadataConfigurationOptions; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetMetadataConfigurationOptionsResponse") public class GetMetadataConfigurationOptionsResponse { @XmlElement(name = "Options", required = true) protected MetadataConfigurationOptions options; /** * Ruft den Wert der options-Eigenschaft ab. * * @return possible object is {@link MetadataConfigurationOptions } * */ public MetadataConfigurationOptions getOptions() { return options; } /** * Legt den Wert der options-Eigenschaft fest. * * @param value * allowed object is {@link MetadataConfigurationOptions } * */ public void setOptions(MetadataConfigurationOptions value) { this.options = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetMetadataConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.MetadataConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "GetMetadataConfigurationResponse") public class GetMetadataConfigurationResponse { @XmlElement(name = "Configuration", required = true) protected MetadataConfiguration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link MetadataConfiguration } * */ public MetadataConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link MetadataConfiguration } * */ public void setConfiguration(MetadataConfiguration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetMetadataConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetMetadataConfigurations") public class GetMetadataConfigurations { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetMetadataConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.MetadataConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetMetadataConfigurationsResponse") public class GetMetadataConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link MetadataConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetOSD.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osdToken", "any" }) @XmlRootElement(name = "GetOSD") public class GetOSD { @XmlElement(name = "OSDToken", required = true) protected String osdToken; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der osdToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getOSDToken() { return osdToken; } /** * Legt den Wert der osdToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setOSDToken(String value) { this.osdToken = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetOSDOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken", "any" }) @XmlRootElement(name = "GetOSDOptions") public class GetOSDOptions { @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetOSDOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.OSDConfigurationOptions; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osdOptions", "any" }) @XmlRootElement(name = "GetOSDOptionsResponse") public class GetOSDOptionsResponse { @XmlElement(name = "OSDOptions", required = true) protected OSDConfigurationOptions osdOptions; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der osdOptions-Eigenschaft ab. * * @return possible object is {@link OSDConfigurationOptions } * */ public OSDConfigurationOptions getOSDOptions() { return osdOptions; } /** * Legt den Wert der osdOptions-Eigenschaft fest. * * @param value * allowed object is {@link OSDConfigurationOptions } * */ public void setOSDOptions(OSDConfigurationOptions value) { this.osdOptions = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetOSDResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.OSDConfiguration; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osd", "any" }) @XmlRootElement(name = "GetOSDResponse") public class GetOSDResponse { @XmlElement(name = "OSD", required = true) protected OSDConfiguration osd; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der osd-Eigenschaft ab. * * @return possible object is {@link OSDConfiguration } * */ public OSDConfiguration getOSD() { return osd; } /** * Legt den Wert der osd-Eigenschaft fest. * * @param value * allowed object is {@link OSDConfiguration } * */ public void setOSD(OSDConfiguration value) { this.osd = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetOSDs.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken" }) @XmlRootElement(name = "GetOSDs") public class GetOSDs { @XmlElement(name = "ConfigurationToken") protected String configurationToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetOSDsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.OSDConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osDs" }) @XmlRootElement(name = "GetOSDsResponse") public class GetOSDsResponse { @XmlElement(name = "OSDs") protected List osDs; /** * Gets the value of the osDs property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the osDs property. * *

* For example, to add a new item, do as follows: * *

	 * getOSDs().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link OSDConfiguration } * * */ public List getOSDs() { if (osDs == null) { osDs = new ArrayList(); } return this.osDs; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetProfile.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetProfile") public class GetProfile { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetProfileResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Profile; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profile" }) @XmlRootElement(name = "GetProfileResponse") public class GetProfileResponse { @XmlElement(name = "Profile", required = true) protected Profile profile; /** * Ruft den Wert der profile-Eigenschaft ab. * * @return possible object is {@link Profile } * */ public Profile getProfile() { return profile; } /** * Legt den Wert der profile-Eigenschaft fest. * * @param value * allowed object is {@link Profile } * */ public void setProfile(Profile value) { this.profile = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetProfiles.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetProfiles") public class GetProfiles { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetProfilesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.Profile; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profiles" }) @XmlRootElement(name = "GetProfilesResponse") public class GetProfilesResponse { @XmlElement(name = "Profiles") protected List profiles; /** * Gets the value of the profiles property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the profiles property. * *

* For example, to add a new item, do as follows: * *

	 * getProfiles().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Profile } * * */ public List getProfiles() { if (profiles == null) { profiles = new ArrayList(); } return this.profiles; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetServiceCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetServiceCapabilities") public class GetServiceCapabilities { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetServiceCapabilitiesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "capabilities" }) @XmlRootElement(name = "GetServiceCapabilitiesResponse") public class GetServiceCapabilitiesResponse { @XmlElement(name = "Capabilities", required = true) protected Capabilities capabilities; /** * Ruft den Wert der capabilities-Eigenschaft ab. * * @return possible object is {@link Capabilities } * */ public Capabilities getCapabilities() { return capabilities; } /** * Legt den Wert der capabilities-Eigenschaft fest. * * @param value * allowed object is {@link Capabilities } * */ public void setCapabilities(Capabilities value) { this.capabilities = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetSnapshotUri.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetSnapshotUri") public class GetSnapshotUri { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetSnapshotUriResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.MediaUri; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "mediaUri" }) @XmlRootElement(name = "GetSnapshotUriResponse") public class GetSnapshotUriResponse { @XmlElement(name = "MediaUri", required = true) protected MediaUri mediaUri; /** * Ruft den Wert der mediaUri-Eigenschaft ab. * * @return possible object is {@link MediaUri } * */ public MediaUri getMediaUri() { return mediaUri; } /** * Legt den Wert der mediaUri-Eigenschaft fest. * * @param value * allowed object is {@link MediaUri } * */ public void setMediaUri(MediaUri value) { this.mediaUri = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetStreamUri.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.StreamSetup; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "streamSetup", "profileToken" }) @XmlRootElement(name = "GetStreamUri") public class GetStreamUri { @XmlElement(name = "StreamSetup", required = true) protected StreamSetup streamSetup; @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der streamSetup-Eigenschaft ab. * * @return possible object is {@link StreamSetup } * */ public StreamSetup getStreamSetup() { return streamSetup; } /** * Legt den Wert der streamSetup-Eigenschaft fest. * * @param value * allowed object is {@link StreamSetup } * */ public void setStreamSetup(StreamSetup value) { this.streamSetup = value; } /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetStreamUriResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.MediaUri; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "mediaUri" }) @XmlRootElement(name = "GetStreamUriResponse") public class GetStreamUriResponse { @XmlElement(name = "MediaUri", required = true) protected MediaUri mediaUri; /** * Ruft den Wert der mediaUri-Eigenschaft ab. * * @return possible object is {@link MediaUri } * */ public MediaUri getMediaUri() { return mediaUri; } /** * Legt den Wert der mediaUri-Eigenschaft fest. * * @param value * allowed object is {@link MediaUri } * */ public void setMediaUri(MediaUri value) { this.mediaUri = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoAnalyticsConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken" }) @XmlRootElement(name = "GetVideoAnalyticsConfiguration") public class GetVideoAnalyticsConfiguration { @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoAnalyticsConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoAnalyticsConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "GetVideoAnalyticsConfigurationResponse") public class GetVideoAnalyticsConfigurationResponse { @XmlElement(name = "Configuration", required = true) protected VideoAnalyticsConfiguration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link VideoAnalyticsConfiguration } * */ public VideoAnalyticsConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link VideoAnalyticsConfiguration } * */ public void setConfiguration(VideoAnalyticsConfiguration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoAnalyticsConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetVideoAnalyticsConfigurations") public class GetVideoAnalyticsConfigurations { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoAnalyticsConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoAnalyticsConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetVideoAnalyticsConfigurationsResponse") public class GetVideoAnalyticsConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoAnalyticsConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoEncoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken" }) @XmlRootElement(name = "GetVideoEncoderConfiguration") public class GetVideoEncoderConfiguration { @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoEncoderConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken", "profileToken" }) @XmlRootElement(name = "GetVideoEncoderConfigurationOptions") public class GetVideoEncoderConfigurationOptions { @XmlElement(name = "ConfigurationToken") protected String configurationToken; @XmlElement(name = "ProfileToken") protected String profileToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoEncoderConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoEncoderConfigurationOptions; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetVideoEncoderConfigurationOptionsResponse") public class GetVideoEncoderConfigurationOptionsResponse { @XmlElement(name = "Options", required = true) protected VideoEncoderConfigurationOptions options; /** * Ruft den Wert der options-Eigenschaft ab. * * @return possible object is {@link VideoEncoderConfigurationOptions } * */ public VideoEncoderConfigurationOptions getOptions() { return options; } /** * Legt den Wert der options-Eigenschaft fest. * * @param value * allowed object is {@link VideoEncoderConfigurationOptions } * */ public void setOptions(VideoEncoderConfigurationOptions value) { this.options = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoEncoderConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoEncoderConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "GetVideoEncoderConfigurationResponse") public class GetVideoEncoderConfigurationResponse { @XmlElement(name = "Configuration", required = true) protected VideoEncoderConfiguration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link VideoEncoderConfiguration } * */ public VideoEncoderConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link VideoEncoderConfiguration } * */ public void setConfiguration(VideoEncoderConfiguration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoEncoderConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetVideoEncoderConfigurations") public class GetVideoEncoderConfigurations { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoEncoderConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoEncoderConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetVideoEncoderConfigurationsResponse") public class GetVideoEncoderConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoEncoderConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoSourceConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken" }) @XmlRootElement(name = "GetVideoSourceConfiguration") public class GetVideoSourceConfiguration { @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoSourceConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken", "profileToken" }) @XmlRootElement(name = "GetVideoSourceConfigurationOptions") public class GetVideoSourceConfigurationOptions { @XmlElement(name = "ConfigurationToken") protected String configurationToken; @XmlElement(name = "ProfileToken") protected String profileToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoSourceConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoSourceConfigurationOptions; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetVideoSourceConfigurationOptionsResponse") public class GetVideoSourceConfigurationOptionsResponse { @XmlElement(name = "Options", required = true) protected VideoSourceConfigurationOptions options; /** * Ruft den Wert der options-Eigenschaft ab. * * @return possible object is {@link VideoSourceConfigurationOptions } * */ public VideoSourceConfigurationOptions getOptions() { return options; } /** * Legt den Wert der options-Eigenschaft fest. * * @param value * allowed object is {@link VideoSourceConfigurationOptions } * */ public void setOptions(VideoSourceConfigurationOptions value) { this.options = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoSourceConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoSourceConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "GetVideoSourceConfigurationResponse") public class GetVideoSourceConfigurationResponse { @XmlElement(name = "Configuration", required = true) protected VideoSourceConfiguration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link VideoSourceConfiguration } * */ public VideoSourceConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link VideoSourceConfiguration } * */ public void setConfiguration(VideoSourceConfiguration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoSourceConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetVideoSourceConfigurations") public class GetVideoSourceConfigurations { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoSourceConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoSourceConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetVideoSourceConfigurationsResponse") public class GetVideoSourceConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: * *

	 * getConfigurations().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoSourceConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoSourceModes.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "videoSourceToken" }) @XmlRootElement(name = "GetVideoSourceModes") public class GetVideoSourceModes { @XmlElement(name = "VideoSourceToken", required = true) protected String videoSourceToken; /** * Ruft den Wert der videoSourceToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getVideoSourceToken() { return videoSourceToken; } /** * Legt den Wert der videoSourceToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setVideoSourceToken(String value) { this.videoSourceToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoSourceModesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "videoSourceModes" }) @XmlRootElement(name = "GetVideoSourceModesResponse") public class GetVideoSourceModesResponse { @XmlElement(name = "VideoSourceModes", required = true) protected List videoSourceModes; /** * Gets the value of the videoSourceModes property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the videoSourceModes property. * *

* For example, to add a new item, do as follows: * *

	 * getVideoSourceModes().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoSourceMode } * * */ public List getVideoSourceModes() { if (videoSourceModes == null) { videoSourceModes = new ArrayList(); } return this.videoSourceModes; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoSources.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetVideoSources") public class GetVideoSources { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/GetVideoSourcesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoSource; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "videoSources" }) @XmlRootElement(name = "GetVideoSourcesResponse") public class GetVideoSourcesResponse { @XmlElement(name = "VideoSources") protected List videoSources; /** * Gets the value of the videoSources property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the videoSources property. * *

* For example, to add a new item, do as follows: * *

	 * getVideoSources().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoSource } * * */ public List getVideoSources() { if (videoSources == null) { videoSources = new ArrayList(); } return this.videoSources; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/ObjectFactory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each Java content interface and Java element interface generated in the org.onvif.ver10.media.wsdl package. *

* An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema * derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this * class. * */ @XmlRegistry public class ObjectFactory { private final static QName _Capabilities_QNAME = new QName("http://www.onvif.org/ver10/media/wsdl", "Capabilities"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.onvif.ver10.media.wsdl * */ public ObjectFactory() { } /** * Create an instance of {@link GetVideoSourceConfigurationOptionsResponse } * */ public GetVideoSourceConfigurationOptionsResponse createGetVideoSourceConfigurationOptionsResponse() { return new GetVideoSourceConfigurationOptionsResponse(); } /** * Create an instance of {@link GetCompatibleAudioEncoderConfigurations } * */ public GetCompatibleAudioEncoderConfigurations createGetCompatibleAudioEncoderConfigurations() { return new GetCompatibleAudioEncoderConfigurations(); } /** * Create an instance of {@link GetVideoEncoderConfigurationsResponse } * */ public GetVideoEncoderConfigurationsResponse createGetVideoEncoderConfigurationsResponse() { return new GetVideoEncoderConfigurationsResponse(); } /** * Create an instance of {@link GetVideoEncoderConfigurationResponse } * */ public GetVideoEncoderConfigurationResponse createGetVideoEncoderConfigurationResponse() { return new GetVideoEncoderConfigurationResponse(); } /** * Create an instance of {@link StartMulticastStreaming } * */ public StartMulticastStreaming createStartMulticastStreaming() { return new StartMulticastStreaming(); } /** * Create an instance of {@link GetMetadataConfigurationOptions } * */ public GetMetadataConfigurationOptions createGetMetadataConfigurationOptions() { return new GetMetadataConfigurationOptions(); } /** * Create an instance of {@link SetMetadataConfiguration } * */ public SetMetadataConfiguration createSetMetadataConfiguration() { return new SetMetadataConfiguration(); } /** * Create an instance of {@link SetOSDResponse } * */ public SetOSDResponse createSetOSDResponse() { return new SetOSDResponse(); } /** * Create an instance of {@link GetOSDResponse } * */ public GetOSDResponse createGetOSDResponse() { return new GetOSDResponse(); } /** * Create an instance of {@link GetVideoSourceConfiguration } * */ public GetVideoSourceConfiguration createGetVideoSourceConfiguration() { return new GetVideoSourceConfiguration(); } /** * Create an instance of {@link GetAudioSourceConfiguration } * */ public GetAudioSourceConfiguration createGetAudioSourceConfiguration() { return new GetAudioSourceConfiguration(); } /** * Create an instance of {@link GetCompatibleAudioDecoderConfigurations } * */ public GetCompatibleAudioDecoderConfigurations createGetCompatibleAudioDecoderConfigurations() { return new GetCompatibleAudioDecoderConfigurations(); } /** * Create an instance of {@link GetProfileResponse } * */ public GetProfileResponse createGetProfileResponse() { return new GetProfileResponse(); } /** * Create an instance of {@link GetVideoSourceConfigurations } * */ public GetVideoSourceConfigurations createGetVideoSourceConfigurations() { return new GetVideoSourceConfigurations(); } /** * Create an instance of {@link SetVideoEncoderConfiguration } * */ public SetVideoEncoderConfiguration createSetVideoEncoderConfiguration() { return new SetVideoEncoderConfiguration(); } /** * Create an instance of {@link AddAudioOutputConfiguration } * */ public AddAudioOutputConfiguration createAddAudioOutputConfiguration() { return new AddAudioOutputConfiguration(); } /** * Create an instance of {@link CreateProfile } * */ public CreateProfile createCreateProfile() { return new CreateProfile(); } /** * Create an instance of {@link AddAudioEncoderConfiguration } * */ public AddAudioEncoderConfiguration createAddAudioEncoderConfiguration() { return new AddAudioEncoderConfiguration(); } /** * Create an instance of {@link SetSynchronizationPointResponse } * */ public SetSynchronizationPointResponse createSetSynchronizationPointResponse() { return new SetSynchronizationPointResponse(); } /** * Create an instance of {@link DeleteProfile } * */ public DeleteProfile createDeleteProfile() { return new DeleteProfile(); } /** * Create an instance of {@link GetGuaranteedNumberOfVideoEncoderInstancesResponse } * */ public GetGuaranteedNumberOfVideoEncoderInstancesResponse createGetGuaranteedNumberOfVideoEncoderInstancesResponse() { return new GetGuaranteedNumberOfVideoEncoderInstancesResponse(); } /** * Create an instance of {@link RemoveAudioDecoderConfigurationResponse } * */ public RemoveAudioDecoderConfigurationResponse createRemoveAudioDecoderConfigurationResponse() { return new RemoveAudioDecoderConfigurationResponse(); } /** * Create an instance of {@link GetVideoAnalyticsConfiguration } * */ public GetVideoAnalyticsConfiguration createGetVideoAnalyticsConfiguration() { return new GetVideoAnalyticsConfiguration(); } /** * Create an instance of {@link SetVideoSourceModeResponse } * */ public SetVideoSourceModeResponse createSetVideoSourceModeResponse() { return new SetVideoSourceModeResponse(); } /** * Create an instance of {@link GetAudioEncoderConfigurationOptionsResponse } * */ public GetAudioEncoderConfigurationOptionsResponse createGetAudioEncoderConfigurationOptionsResponse() { return new GetAudioEncoderConfigurationOptionsResponse(); } /** * Create an instance of {@link GetAudioOutputConfiguration } * */ public GetAudioOutputConfiguration createGetAudioOutputConfiguration() { return new GetAudioOutputConfiguration(); } /** * Create an instance of {@link SetVideoSourceConfigurationResponse } * */ public SetVideoSourceConfigurationResponse createSetVideoSourceConfigurationResponse() { return new SetVideoSourceConfigurationResponse(); } /** * Create an instance of {@link SetVideoSourceConfiguration } * */ public SetVideoSourceConfiguration createSetVideoSourceConfiguration() { return new SetVideoSourceConfiguration(); } /** * Create an instance of {@link DeleteProfileResponse } * */ public DeleteProfileResponse createDeleteProfileResponse() { return new DeleteProfileResponse(); } /** * Create an instance of {@link GetProfilesResponse } * */ public GetProfilesResponse createGetProfilesResponse() { return new GetProfilesResponse(); } /** * Create an instance of {@link AddAudioOutputConfigurationResponse } * */ public AddAudioOutputConfigurationResponse createAddAudioOutputConfigurationResponse() { return new AddAudioOutputConfigurationResponse(); } /** * Create an instance of {@link GetAudioSourcesResponse } * */ public GetAudioSourcesResponse createGetAudioSourcesResponse() { return new GetAudioSourcesResponse(); } /** * Create an instance of {@link RemoveAudioSourceConfigurationResponse } * */ public RemoveAudioSourceConfigurationResponse createRemoveAudioSourceConfigurationResponse() { return new RemoveAudioSourceConfigurationResponse(); } /** * Create an instance of {@link GetAudioOutputs } * */ public GetAudioOutputs createGetAudioOutputs() { return new GetAudioOutputs(); } /** * Create an instance of {@link GetAudioDecoderConfigurationsResponse } * */ public GetAudioDecoderConfigurationsResponse createGetAudioDecoderConfigurationsResponse() { return new GetAudioDecoderConfigurationsResponse(); } /** * Create an instance of {@link GetCompatibleVideoSourceConfigurations } * */ public GetCompatibleVideoSourceConfigurations createGetCompatibleVideoSourceConfigurations() { return new GetCompatibleVideoSourceConfigurations(); } /** * Create an instance of {@link AddVideoSourceConfigurationResponse } * */ public AddVideoSourceConfigurationResponse createAddVideoSourceConfigurationResponse() { return new AddVideoSourceConfigurationResponse(); } /** * Create an instance of {@link GetAudioSourceConfigurationsResponse } * */ public GetAudioSourceConfigurationsResponse createGetAudioSourceConfigurationsResponse() { return new GetAudioSourceConfigurationsResponse(); } /** * Create an instance of {@link GetAudioOutputsResponse } * */ public GetAudioOutputsResponse createGetAudioOutputsResponse() { return new GetAudioOutputsResponse(); } /** * Create an instance of {@link GetVideoSourceConfigurationResponse } * */ public GetVideoSourceConfigurationResponse createGetVideoSourceConfigurationResponse() { return new GetVideoSourceConfigurationResponse(); } /** * Create an instance of {@link GetCompatibleAudioSourceConfigurations } * */ public GetCompatibleAudioSourceConfigurations createGetCompatibleAudioSourceConfigurations() { return new GetCompatibleAudioSourceConfigurations(); } /** * Create an instance of {@link CreateOSD } * */ public CreateOSD createCreateOSD() { return new CreateOSD(); } /** * Create an instance of {@link GetAudioEncoderConfigurationResponse } * */ public GetAudioEncoderConfigurationResponse createGetAudioEncoderConfigurationResponse() { return new GetAudioEncoderConfigurationResponse(); } /** * Create an instance of {@link GetMetadataConfiguration } * */ public GetMetadataConfiguration createGetMetadataConfiguration() { return new GetMetadataConfiguration(); } /** * Create an instance of {@link GetSnapshotUriResponse } * */ public GetSnapshotUriResponse createGetSnapshotUriResponse() { return new GetSnapshotUriResponse(); } /** * Create an instance of {@link SetAudioEncoderConfiguration } * */ public SetAudioEncoderConfiguration createSetAudioEncoderConfiguration() { return new SetAudioEncoderConfiguration(); } /** * Create an instance of {@link GetCompatibleMetadataConfigurationsResponse } * */ public GetCompatibleMetadataConfigurationsResponse createGetCompatibleMetadataConfigurationsResponse() { return new GetCompatibleMetadataConfigurationsResponse(); } /** * Create an instance of {@link AddVideoAnalyticsConfiguration } * */ public AddVideoAnalyticsConfiguration createAddVideoAnalyticsConfiguration() { return new AddVideoAnalyticsConfiguration(); } /** * Create an instance of {@link RemoveVideoSourceConfigurationResponse } * */ public RemoveVideoSourceConfigurationResponse createRemoveVideoSourceConfigurationResponse() { return new RemoveVideoSourceConfigurationResponse(); } /** * Create an instance of {@link GetOSDsResponse } * */ public GetOSDsResponse createGetOSDsResponse() { return new GetOSDsResponse(); } /** * Create an instance of {@link GetAudioSourceConfigurationOptions } * */ public GetAudioSourceConfigurationOptions createGetAudioSourceConfigurationOptions() { return new GetAudioSourceConfigurationOptions(); } /** * Create an instance of {@link SetVideoAnalyticsConfigurationResponse } * */ public SetVideoAnalyticsConfigurationResponse createSetVideoAnalyticsConfigurationResponse() { return new SetVideoAnalyticsConfigurationResponse(); } /** * Create an instance of {@link GetVideoEncoderConfigurationOptionsResponse } * */ public GetVideoEncoderConfigurationOptionsResponse createGetVideoEncoderConfigurationOptionsResponse() { return new GetVideoEncoderConfigurationOptionsResponse(); } /** * Create an instance of {@link AddAudioSourceConfiguration } * */ public AddAudioSourceConfiguration createAddAudioSourceConfiguration() { return new AddAudioSourceConfiguration(); } /** * Create an instance of {@link GetVideoAnalyticsConfigurationsResponse } * */ public GetVideoAnalyticsConfigurationsResponse createGetVideoAnalyticsConfigurationsResponse() { return new GetVideoAnalyticsConfigurationsResponse(); } /** * Create an instance of {@link GetCompatibleVideoSourceConfigurationsResponse } * */ public GetCompatibleVideoSourceConfigurationsResponse createGetCompatibleVideoSourceConfigurationsResponse() { return new GetCompatibleVideoSourceConfigurationsResponse(); } /** * Create an instance of {@link GetCompatibleVideoEncoderConfigurations } * */ public GetCompatibleVideoEncoderConfigurations createGetCompatibleVideoEncoderConfigurations() { return new GetCompatibleVideoEncoderConfigurations(); } /** * Create an instance of {@link AddAudioSourceConfigurationResponse } * */ public AddAudioSourceConfigurationResponse createAddAudioSourceConfigurationResponse() { return new AddAudioSourceConfigurationResponse(); } /** * Create an instance of {@link GetAudioSources } * */ public GetAudioSources createGetAudioSources() { return new GetAudioSources(); } /** * Create an instance of {@link GetOSD } * */ public GetOSD createGetOSD() { return new GetOSD(); } /** * Create an instance of {@link GetVideoEncoderConfigurationOptions } * */ public GetVideoEncoderConfigurationOptions createGetVideoEncoderConfigurationOptions() { return new GetVideoEncoderConfigurationOptions(); } /** * Create an instance of {@link RemoveVideoAnalyticsConfiguration } * */ public RemoveVideoAnalyticsConfiguration createRemoveVideoAnalyticsConfiguration() { return new RemoveVideoAnalyticsConfiguration(); } /** * Create an instance of {@link SetVideoEncoderConfigurationResponse } * */ public SetVideoEncoderConfigurationResponse createSetVideoEncoderConfigurationResponse() { return new SetVideoEncoderConfigurationResponse(); } /** * Create an instance of {@link SetAudioDecoderConfiguration } * */ public SetAudioDecoderConfiguration createSetAudioDecoderConfiguration() { return new SetAudioDecoderConfiguration(); } /** * Create an instance of {@link StartMulticastStreamingResponse } * */ public StartMulticastStreamingResponse createStartMulticastStreamingResponse() { return new StartMulticastStreamingResponse(); } /** * Create an instance of {@link GetCompatibleVideoAnalyticsConfigurations } * */ public GetCompatibleVideoAnalyticsConfigurations createGetCompatibleVideoAnalyticsConfigurations() { return new GetCompatibleVideoAnalyticsConfigurations(); } /** * Create an instance of {@link RemoveAudioSourceConfiguration } * */ public RemoveAudioSourceConfiguration createRemoveAudioSourceConfiguration() { return new RemoveAudioSourceConfiguration(); } /** * Create an instance of {@link GetAudioOutputConfigurationOptionsResponse } * */ public GetAudioOutputConfigurationOptionsResponse createGetAudioOutputConfigurationOptionsResponse() { return new GetAudioOutputConfigurationOptionsResponse(); } /** * Create an instance of {@link GetProfiles } * */ public GetProfiles createGetProfiles() { return new GetProfiles(); } /** * Create an instance of {@link SetAudioOutputConfiguration } * */ public SetAudioOutputConfiguration createSetAudioOutputConfiguration() { return new SetAudioOutputConfiguration(); } /** * Create an instance of {@link DeleteOSD } * */ public DeleteOSD createDeleteOSD() { return new DeleteOSD(); } /** * Create an instance of {@link SetAudioEncoderConfigurationResponse } * */ public SetAudioEncoderConfigurationResponse createSetAudioEncoderConfigurationResponse() { return new SetAudioEncoderConfigurationResponse(); } /** * Create an instance of {@link AddAudioEncoderConfigurationResponse } * */ public AddAudioEncoderConfigurationResponse createAddAudioEncoderConfigurationResponse() { return new AddAudioEncoderConfigurationResponse(); } /** * Create an instance of {@link DeleteOSDResponse } * */ public DeleteOSDResponse createDeleteOSDResponse() { return new DeleteOSDResponse(); } /** * Create an instance of {@link GetVideoSourceConfigurationOptions } * */ public GetVideoSourceConfigurationOptions createGetVideoSourceConfigurationOptions() { return new GetVideoSourceConfigurationOptions(); } /** * Create an instance of {@link GetVideoAnalyticsConfigurationResponse } * */ public GetVideoAnalyticsConfigurationResponse createGetVideoAnalyticsConfigurationResponse() { return new GetVideoAnalyticsConfigurationResponse(); } /** * Create an instance of {@link GetVideoSourceModesResponse } * */ public GetVideoSourceModesResponse createGetVideoSourceModesResponse() { return new GetVideoSourceModesResponse(); } /** * Create an instance of {@link VideoSourceMode } * */ public VideoSourceMode createVideoSourceMode() { return new VideoSourceMode(); } /** * Create an instance of {@link GetVideoSourceModes } * */ public GetVideoSourceModes createGetVideoSourceModes() { return new GetVideoSourceModes(); } /** * Create an instance of {@link GetGuaranteedNumberOfVideoEncoderInstances } * */ public GetGuaranteedNumberOfVideoEncoderInstances createGetGuaranteedNumberOfVideoEncoderInstances() { return new GetGuaranteedNumberOfVideoEncoderInstances(); } /** * Create an instance of {@link GetStreamUri } * */ public GetStreamUri createGetStreamUri() { return new GetStreamUri(); } /** * Create an instance of {@link AddPTZConfiguration } * */ public AddPTZConfiguration createAddPTZConfiguration() { return new AddPTZConfiguration(); } /** * Create an instance of {@link AddPTZConfigurationResponse } * */ public AddPTZConfigurationResponse createAddPTZConfigurationResponse() { return new AddPTZConfigurationResponse(); } /** * Create an instance of {@link GetCompatibleVideoAnalyticsConfigurationsResponse } * */ public GetCompatibleVideoAnalyticsConfigurationsResponse createGetCompatibleVideoAnalyticsConfigurationsResponse() { return new GetCompatibleVideoAnalyticsConfigurationsResponse(); } /** * Create an instance of {@link RemoveMetadataConfiguration } * */ public RemoveMetadataConfiguration createRemoveMetadataConfiguration() { return new RemoveMetadataConfiguration(); } /** * Create an instance of {@link GetAudioSourceConfigurationOptionsResponse } * */ public GetAudioSourceConfigurationOptionsResponse createGetAudioSourceConfigurationOptionsResponse() { return new GetAudioSourceConfigurationOptionsResponse(); } /** * Create an instance of {@link AddVideoSourceConfiguration } * */ public AddVideoSourceConfiguration createAddVideoSourceConfiguration() { return new AddVideoSourceConfiguration(); } /** * Create an instance of {@link GetAudioDecoderConfiguration } * */ public GetAudioDecoderConfiguration createGetAudioDecoderConfiguration() { return new GetAudioDecoderConfiguration(); } /** * Create an instance of {@link GetMetadataConfigurationOptionsResponse } * */ public GetMetadataConfigurationOptionsResponse createGetMetadataConfigurationOptionsResponse() { return new GetMetadataConfigurationOptionsResponse(); } /** * Create an instance of {@link GetServiceCapabilitiesResponse } * */ public GetServiceCapabilitiesResponse createGetServiceCapabilitiesResponse() { return new GetServiceCapabilitiesResponse(); } /** * Create an instance of {@link Capabilities } * */ public Capabilities createCapabilities() { return new Capabilities(); } /** * Create an instance of {@link GetVideoEncoderConfigurations } * */ public GetVideoEncoderConfigurations createGetVideoEncoderConfigurations() { return new GetVideoEncoderConfigurations(); } /** * Create an instance of {@link GetAudioOutputConfigurations } * */ public GetAudioOutputConfigurations createGetAudioOutputConfigurations() { return new GetAudioOutputConfigurations(); } /** * Create an instance of {@link GetOSDOptions } * */ public GetOSDOptions createGetOSDOptions() { return new GetOSDOptions(); } /** * Create an instance of {@link RemoveAudioOutputConfigurationResponse } * */ public RemoveAudioOutputConfigurationResponse createRemoveAudioOutputConfigurationResponse() { return new RemoveAudioOutputConfigurationResponse(); } /** * Create an instance of {@link GetOSDs } * */ public GetOSDs createGetOSDs() { return new GetOSDs(); } /** * Create an instance of {@link GetSnapshotUri } * */ public GetSnapshotUri createGetSnapshotUri() { return new GetSnapshotUri(); } /** * Create an instance of {@link GetVideoSourceConfigurationsResponse } * */ public GetVideoSourceConfigurationsResponse createGetVideoSourceConfigurationsResponse() { return new GetVideoSourceConfigurationsResponse(); } /** * Create an instance of {@link AddVideoEncoderConfiguration } * */ public AddVideoEncoderConfiguration createAddVideoEncoderConfiguration() { return new AddVideoEncoderConfiguration(); } /** * Create an instance of {@link RemoveVideoEncoderConfigurationResponse } * */ public RemoveVideoEncoderConfigurationResponse createRemoveVideoEncoderConfigurationResponse() { return new RemoveVideoEncoderConfigurationResponse(); } /** * Create an instance of {@link GetAudioEncoderConfiguration } * */ public GetAudioEncoderConfiguration createGetAudioEncoderConfiguration() { return new GetAudioEncoderConfiguration(); } /** * Create an instance of {@link AddAudioDecoderConfiguration } * */ public AddAudioDecoderConfiguration createAddAudioDecoderConfiguration() { return new AddAudioDecoderConfiguration(); } /** * Create an instance of {@link AddMetadataConfigurationResponse } * */ public AddMetadataConfigurationResponse createAddMetadataConfigurationResponse() { return new AddMetadataConfigurationResponse(); } /** * Create an instance of {@link GetCompatibleAudioOutputConfigurationsResponse } * */ public GetCompatibleAudioOutputConfigurationsResponse createGetCompatibleAudioOutputConfigurationsResponse() { return new GetCompatibleAudioOutputConfigurationsResponse(); } /** * Create an instance of {@link RemoveAudioOutputConfiguration } * */ public RemoveAudioOutputConfiguration createRemoveAudioOutputConfiguration() { return new RemoveAudioOutputConfiguration(); } /** * Create an instance of {@link GetCompatibleAudioSourceConfigurationsResponse } * */ public GetCompatibleAudioSourceConfigurationsResponse createGetCompatibleAudioSourceConfigurationsResponse() { return new GetCompatibleAudioSourceConfigurationsResponse(); } /** * Create an instance of {@link RemoveVideoSourceConfiguration } * */ public RemoveVideoSourceConfiguration createRemoveVideoSourceConfiguration() { return new RemoveVideoSourceConfiguration(); } /** * Create an instance of {@link GetAudioOutputConfigurationOptions } * */ public GetAudioOutputConfigurationOptions createGetAudioOutputConfigurationOptions() { return new GetAudioOutputConfigurationOptions(); } /** * Create an instance of {@link GetCompatibleAudioOutputConfigurations } * */ public GetCompatibleAudioOutputConfigurations createGetCompatibleAudioOutputConfigurations() { return new GetCompatibleAudioOutputConfigurations(); } /** * Create an instance of {@link CreateProfileResponse } * */ public CreateProfileResponse createCreateProfileResponse() { return new CreateProfileResponse(); } /** * Create an instance of {@link RemoveAudioDecoderConfiguration } * */ public RemoveAudioDecoderConfiguration createRemoveAudioDecoderConfiguration() { return new RemoveAudioDecoderConfiguration(); } /** * Create an instance of {@link GetAudioOutputConfigurationResponse } * */ public GetAudioOutputConfigurationResponse createGetAudioOutputConfigurationResponse() { return new GetAudioOutputConfigurationResponse(); } /** * Create an instance of {@link SetMetadataConfigurationResponse } * */ public SetMetadataConfigurationResponse createSetMetadataConfigurationResponse() { return new SetMetadataConfigurationResponse(); } /** * Create an instance of {@link RemoveVideoAnalyticsConfigurationResponse } * */ public RemoveVideoAnalyticsConfigurationResponse createRemoveVideoAnalyticsConfigurationResponse() { return new RemoveVideoAnalyticsConfigurationResponse(); } /** * Create an instance of {@link GetServiceCapabilities } * */ public GetServiceCapabilities createGetServiceCapabilities() { return new GetServiceCapabilities(); } /** * Create an instance of {@link SetAudioSourceConfiguration } * */ public SetAudioSourceConfiguration createSetAudioSourceConfiguration() { return new SetAudioSourceConfiguration(); } /** * Create an instance of {@link SetOSD } * */ public SetOSD createSetOSD() { return new SetOSD(); } /** * Create an instance of {@link AddVideoAnalyticsConfigurationResponse } * */ public AddVideoAnalyticsConfigurationResponse createAddVideoAnalyticsConfigurationResponse() { return new AddVideoAnalyticsConfigurationResponse(); } /** * Create an instance of {@link AddAudioDecoderConfigurationResponse } * */ public AddAudioDecoderConfigurationResponse createAddAudioDecoderConfigurationResponse() { return new AddAudioDecoderConfigurationResponse(); } /** * Create an instance of {@link GetAudioOutputConfigurationsResponse } * */ public GetAudioOutputConfigurationsResponse createGetAudioOutputConfigurationsResponse() { return new GetAudioOutputConfigurationsResponse(); } /** * Create an instance of {@link RemoveAudioEncoderConfigurationResponse } * */ public RemoveAudioEncoderConfigurationResponse createRemoveAudioEncoderConfigurationResponse() { return new RemoveAudioEncoderConfigurationResponse(); } /** * Create an instance of {@link AddMetadataConfiguration } * */ public AddMetadataConfiguration createAddMetadataConfiguration() { return new AddMetadataConfiguration(); } /** * Create an instance of {@link GetVideoEncoderConfiguration } * */ public GetVideoEncoderConfiguration createGetVideoEncoderConfiguration() { return new GetVideoEncoderConfiguration(); } /** * Create an instance of {@link RemoveMetadataConfigurationResponse } * */ public RemoveMetadataConfigurationResponse createRemoveMetadataConfigurationResponse() { return new RemoveMetadataConfigurationResponse(); } /** * Create an instance of {@link GetCompatibleVideoEncoderConfigurationsResponse } * */ public GetCompatibleVideoEncoderConfigurationsResponse createGetCompatibleVideoEncoderConfigurationsResponse() { return new GetCompatibleVideoEncoderConfigurationsResponse(); } /** * Create an instance of {@link SetAudioSourceConfigurationResponse } * */ public SetAudioSourceConfigurationResponse createSetAudioSourceConfigurationResponse() { return new SetAudioSourceConfigurationResponse(); } /** * Create an instance of {@link StopMulticastStreamingResponse } * */ public StopMulticastStreamingResponse createStopMulticastStreamingResponse() { return new StopMulticastStreamingResponse(); } /** * Create an instance of {@link SetAudioOutputConfigurationResponse } * */ public SetAudioOutputConfigurationResponse createSetAudioOutputConfigurationResponse() { return new SetAudioOutputConfigurationResponse(); } /** * Create an instance of {@link SetAudioDecoderConfigurationResponse } * */ public SetAudioDecoderConfigurationResponse createSetAudioDecoderConfigurationResponse() { return new SetAudioDecoderConfigurationResponse(); } /** * Create an instance of {@link GetCompatibleAudioEncoderConfigurationsResponse } * */ public GetCompatibleAudioEncoderConfigurationsResponse createGetCompatibleAudioEncoderConfigurationsResponse() { return new GetCompatibleAudioEncoderConfigurationsResponse(); } /** * Create an instance of {@link GetAudioSourceConfigurations } * */ public GetAudioSourceConfigurations createGetAudioSourceConfigurations() { return new GetAudioSourceConfigurations(); } /** * Create an instance of {@link GetVideoSourcesResponse } * */ public GetVideoSourcesResponse createGetVideoSourcesResponse() { return new GetVideoSourcesResponse(); } /** * Create an instance of {@link GetAudioEncoderConfigurations } * */ public GetAudioEncoderConfigurations createGetAudioEncoderConfigurations() { return new GetAudioEncoderConfigurations(); } /** * Create an instance of {@link RemovePTZConfiguration } * */ public RemovePTZConfiguration createRemovePTZConfiguration() { return new RemovePTZConfiguration(); } /** * Create an instance of {@link CreateOSDResponse } * */ public CreateOSDResponse createCreateOSDResponse() { return new CreateOSDResponse(); } /** * Create an instance of {@link RemoveVideoEncoderConfiguration } * */ public RemoveVideoEncoderConfiguration createRemoveVideoEncoderConfiguration() { return new RemoveVideoEncoderConfiguration(); } /** * Create an instance of {@link SetSynchronizationPoint } * */ public SetSynchronizationPoint createSetSynchronizationPoint() { return new SetSynchronizationPoint(); } /** * Create an instance of {@link GetVideoAnalyticsConfigurations } * */ public GetVideoAnalyticsConfigurations createGetVideoAnalyticsConfigurations() { return new GetVideoAnalyticsConfigurations(); } /** * Create an instance of {@link GetAudioDecoderConfigurations } * */ public GetAudioDecoderConfigurations createGetAudioDecoderConfigurations() { return new GetAudioDecoderConfigurations(); } /** * Create an instance of {@link GetStreamUriResponse } * */ public GetStreamUriResponse createGetStreamUriResponse() { return new GetStreamUriResponse(); } /** * Create an instance of {@link GetAudioDecoderConfigurationOptions } * */ public GetAudioDecoderConfigurationOptions createGetAudioDecoderConfigurationOptions() { return new GetAudioDecoderConfigurationOptions(); } /** * Create an instance of {@link GetMetadataConfigurations } * */ public GetMetadataConfigurations createGetMetadataConfigurations() { return new GetMetadataConfigurations(); } /** * Create an instance of {@link GetMetadataConfigurationResponse } * */ public GetMetadataConfigurationResponse createGetMetadataConfigurationResponse() { return new GetMetadataConfigurationResponse(); } /** * Create an instance of {@link StopMulticastStreaming } * */ public StopMulticastStreaming createStopMulticastStreaming() { return new StopMulticastStreaming(); } /** * Create an instance of {@link SetVideoAnalyticsConfiguration } * */ public SetVideoAnalyticsConfiguration createSetVideoAnalyticsConfiguration() { return new SetVideoAnalyticsConfiguration(); } /** * Create an instance of {@link GetAudioDecoderConfigurationResponse } * */ public GetAudioDecoderConfigurationResponse createGetAudioDecoderConfigurationResponse() { return new GetAudioDecoderConfigurationResponse(); } /** * Create an instance of {@link GetAudioEncoderConfigurationOptions } * */ public GetAudioEncoderConfigurationOptions createGetAudioEncoderConfigurationOptions() { return new GetAudioEncoderConfigurationOptions(); } /** * Create an instance of {@link GetAudioDecoderConfigurationOptionsResponse } * */ public GetAudioDecoderConfigurationOptionsResponse createGetAudioDecoderConfigurationOptionsResponse() { return new GetAudioDecoderConfigurationOptionsResponse(); } /** * Create an instance of {@link GetAudioEncoderConfigurationsResponse } * */ public GetAudioEncoderConfigurationsResponse createGetAudioEncoderConfigurationsResponse() { return new GetAudioEncoderConfigurationsResponse(); } /** * Create an instance of {@link GetCompatibleAudioDecoderConfigurationsResponse } * */ public GetCompatibleAudioDecoderConfigurationsResponse createGetCompatibleAudioDecoderConfigurationsResponse() { return new GetCompatibleAudioDecoderConfigurationsResponse(); } /** * Create an instance of {@link GetProfile } * */ public GetProfile createGetProfile() { return new GetProfile(); } /** * Create an instance of {@link AddVideoEncoderConfigurationResponse } * */ public AddVideoEncoderConfigurationResponse createAddVideoEncoderConfigurationResponse() { return new AddVideoEncoderConfigurationResponse(); } /** * Create an instance of {@link GetOSDOptionsResponse } * */ public GetOSDOptionsResponse createGetOSDOptionsResponse() { return new GetOSDOptionsResponse(); } /** * Create an instance of {@link GetMetadataConfigurationsResponse } * */ public GetMetadataConfigurationsResponse createGetMetadataConfigurationsResponse() { return new GetMetadataConfigurationsResponse(); } /** * Create an instance of {@link SetVideoSourceMode } * */ public SetVideoSourceMode createSetVideoSourceMode() { return new SetVideoSourceMode(); } /** * Create an instance of {@link RemovePTZConfigurationResponse } * */ public RemovePTZConfigurationResponse createRemovePTZConfigurationResponse() { return new RemovePTZConfigurationResponse(); } /** * Create an instance of {@link GetAudioSourceConfigurationResponse } * */ public GetAudioSourceConfigurationResponse createGetAudioSourceConfigurationResponse() { return new GetAudioSourceConfigurationResponse(); } /** * Create an instance of {@link GetCompatibleMetadataConfigurations } * */ public GetCompatibleMetadataConfigurations createGetCompatibleMetadataConfigurations() { return new GetCompatibleMetadataConfigurations(); } /** * Create an instance of {@link RemoveAudioEncoderConfiguration } * */ public RemoveAudioEncoderConfiguration createRemoveAudioEncoderConfiguration() { return new RemoveAudioEncoderConfiguration(); } /** * Create an instance of {@link GetVideoSources } * */ public GetVideoSources createGetVideoSources() { return new GetVideoSources(); } /** * Create an instance of {@link VideoSourceModeExtension } * */ public VideoSourceModeExtension createVideoSourceModeExtension() { return new VideoSourceModeExtension(); } /** * Create an instance of {@link StreamingCapabilities } * */ public StreamingCapabilities createStreamingCapabilities() { return new StreamingCapabilities(); } /** * Create an instance of {@link ProfileCapabilities } * */ public ProfileCapabilities createProfileCapabilities() { return new ProfileCapabilities(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Capabilities }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/media/wsdl", name = "Capabilities") public JAXBElement createCapabilities(Capabilities value) { return new JAXBElement(_Capabilities_QNAME, Capabilities.class, null, value); } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/ProfileCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ProfileCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProfileCapabilities", propOrder = { "any" }) public class ProfileCapabilities { @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "MaximumNumberOfProfiles") protected Integer maximumNumberOfProfiles; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der maximumNumberOfProfiles-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getMaximumNumberOfProfiles() { return maximumNumberOfProfiles; } /** * Legt den Wert der maximumNumberOfProfiles-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setMaximumNumberOfProfiles(Integer value) { this.maximumNumberOfProfiles = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveAudioDecoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "RemoveAudioDecoderConfiguration") public class RemoveAudioDecoderConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveAudioDecoderConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RemoveAudioDecoderConfigurationResponse") public class RemoveAudioDecoderConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveAudioEncoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "RemoveAudioEncoderConfiguration") public class RemoveAudioEncoderConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveAudioEncoderConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RemoveAudioEncoderConfigurationResponse") public class RemoveAudioEncoderConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveAudioOutputConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "RemoveAudioOutputConfiguration") public class RemoveAudioOutputConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveAudioOutputConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RemoveAudioOutputConfigurationResponse") public class RemoveAudioOutputConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveAudioSourceConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "RemoveAudioSourceConfiguration") public class RemoveAudioSourceConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveAudioSourceConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RemoveAudioSourceConfigurationResponse") public class RemoveAudioSourceConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveMetadataConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "RemoveMetadataConfiguration") public class RemoveMetadataConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveMetadataConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RemoveMetadataConfigurationResponse") public class RemoveMetadataConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemovePTZConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "RemovePTZConfiguration") public class RemovePTZConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemovePTZConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RemovePTZConfigurationResponse") public class RemovePTZConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveVideoAnalyticsConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "RemoveVideoAnalyticsConfiguration") public class RemoveVideoAnalyticsConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveVideoAnalyticsConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RemoveVideoAnalyticsConfigurationResponse") public class RemoveVideoAnalyticsConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveVideoEncoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "RemoveVideoEncoderConfiguration") public class RemoveVideoEncoderConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveVideoEncoderConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RemoveVideoEncoderConfigurationResponse") public class RemoveVideoEncoderConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveVideoSourceConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "RemoveVideoSourceConfiguration") public class RemoveVideoSourceConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/RemoveVideoSourceConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RemoveVideoSourceConfigurationResponse") public class RemoveVideoSourceConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetAudioDecoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioDecoderConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration", "forcePersistence" }) @XmlRootElement(name = "SetAudioDecoderConfiguration") public class SetAudioDecoderConfiguration { @XmlElement(name = "Configuration", required = true) protected AudioDecoderConfiguration configuration; @XmlElement(name = "ForcePersistence") protected boolean forcePersistence; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link AudioDecoderConfiguration } * */ public AudioDecoderConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link AudioDecoderConfiguration } * */ public void setConfiguration(AudioDecoderConfiguration value) { this.configuration = value; } /** * Ruft den Wert der forcePersistence-Eigenschaft ab. * */ public boolean isForcePersistence() { return forcePersistence; } /** * Legt den Wert der forcePersistence-Eigenschaft fest. * */ public void setForcePersistence(boolean value) { this.forcePersistence = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetAudioDecoderConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetAudioDecoderConfigurationResponse") public class SetAudioDecoderConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetAudioEncoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioEncoderConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration", "forcePersistence" }) @XmlRootElement(name = "SetAudioEncoderConfiguration") public class SetAudioEncoderConfiguration { @XmlElement(name = "Configuration", required = true) protected AudioEncoderConfiguration configuration; @XmlElement(name = "ForcePersistence") protected boolean forcePersistence; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link AudioEncoderConfiguration } * */ public AudioEncoderConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link AudioEncoderConfiguration } * */ public void setConfiguration(AudioEncoderConfiguration value) { this.configuration = value; } /** * Ruft den Wert der forcePersistence-Eigenschaft ab. * */ public boolean isForcePersistence() { return forcePersistence; } /** * Legt den Wert der forcePersistence-Eigenschaft fest. * */ public void setForcePersistence(boolean value) { this.forcePersistence = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetAudioEncoderConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetAudioEncoderConfigurationResponse") public class SetAudioEncoderConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetAudioOutputConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioOutputConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration", "forcePersistence" }) @XmlRootElement(name = "SetAudioOutputConfiguration") public class SetAudioOutputConfiguration { @XmlElement(name = "Configuration", required = true) protected AudioOutputConfiguration configuration; @XmlElement(name = "ForcePersistence") protected boolean forcePersistence; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link AudioOutputConfiguration } * */ public AudioOutputConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link AudioOutputConfiguration } * */ public void setConfiguration(AudioOutputConfiguration value) { this.configuration = value; } /** * Ruft den Wert der forcePersistence-Eigenschaft ab. * */ public boolean isForcePersistence() { return forcePersistence; } /** * Legt den Wert der forcePersistence-Eigenschaft fest. * */ public void setForcePersistence(boolean value) { this.forcePersistence = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetAudioOutputConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetAudioOutputConfigurationResponse") public class SetAudioOutputConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetAudioSourceConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioSourceConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration", "forcePersistence" }) @XmlRootElement(name = "SetAudioSourceConfiguration") public class SetAudioSourceConfiguration { @XmlElement(name = "Configuration", required = true) protected AudioSourceConfiguration configuration; @XmlElement(name = "ForcePersistence") protected boolean forcePersistence; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link AudioSourceConfiguration } * */ public AudioSourceConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link AudioSourceConfiguration } * */ public void setConfiguration(AudioSourceConfiguration value) { this.configuration = value; } /** * Ruft den Wert der forcePersistence-Eigenschaft ab. * */ public boolean isForcePersistence() { return forcePersistence; } /** * Legt den Wert der forcePersistence-Eigenschaft fest. * */ public void setForcePersistence(boolean value) { this.forcePersistence = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetAudioSourceConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetAudioSourceConfigurationResponse") public class SetAudioSourceConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetMetadataConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.MetadataConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration", "forcePersistence" }) @XmlRootElement(name = "SetMetadataConfiguration") public class SetMetadataConfiguration { @XmlElement(name = "Configuration", required = true) protected MetadataConfiguration configuration; @XmlElement(name = "ForcePersistence") protected boolean forcePersistence; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link MetadataConfiguration } * */ public MetadataConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link MetadataConfiguration } * */ public void setConfiguration(MetadataConfiguration value) { this.configuration = value; } /** * Ruft den Wert der forcePersistence-Eigenschaft ab. * */ public boolean isForcePersistence() { return forcePersistence; } /** * Legt den Wert der forcePersistence-Eigenschaft fest. * */ public void setForcePersistence(boolean value) { this.forcePersistence = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetMetadataConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetMetadataConfigurationResponse") public class SetMetadataConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetOSD.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.OSDConfiguration; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osd", "any" }) @XmlRootElement(name = "SetOSD") public class SetOSD { @XmlElement(name = "OSD", required = true) protected OSDConfiguration osd; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der osd-Eigenschaft ab. * * @return possible object is {@link OSDConfiguration } * */ public OSDConfiguration getOSD() { return osd; } /** * Legt den Wert der osd-Eigenschaft fest. * * @param value * allowed object is {@link OSDConfiguration } * */ public void setOSD(OSDConfiguration value) { this.osd = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetOSDResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) @XmlRootElement(name = "SetOSDResponse") public class SetOSDResponse { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetSynchronizationPoint.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "SetSynchronizationPoint") public class SetSynchronizationPoint { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetSynchronizationPointResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetSynchronizationPointResponse") public class SetSynchronizationPointResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetVideoAnalyticsConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoAnalyticsConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration", "forcePersistence" }) @XmlRootElement(name = "SetVideoAnalyticsConfiguration") public class SetVideoAnalyticsConfiguration { @XmlElement(name = "Configuration", required = true) protected VideoAnalyticsConfiguration configuration; @XmlElement(name = "ForcePersistence") protected boolean forcePersistence; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link VideoAnalyticsConfiguration } * */ public VideoAnalyticsConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link VideoAnalyticsConfiguration } * */ public void setConfiguration(VideoAnalyticsConfiguration value) { this.configuration = value; } /** * Ruft den Wert der forcePersistence-Eigenschaft ab. * */ public boolean isForcePersistence() { return forcePersistence; } /** * Legt den Wert der forcePersistence-Eigenschaft fest. * */ public void setForcePersistence(boolean value) { this.forcePersistence = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetVideoAnalyticsConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetVideoAnalyticsConfigurationResponse") public class SetVideoAnalyticsConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetVideoEncoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoEncoderConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration", "forcePersistence" }) @XmlRootElement(name = "SetVideoEncoderConfiguration") public class SetVideoEncoderConfiguration { @XmlElement(name = "Configuration", required = true) protected VideoEncoderConfiguration configuration; @XmlElement(name = "ForcePersistence") protected boolean forcePersistence; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link VideoEncoderConfiguration } * */ public VideoEncoderConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link VideoEncoderConfiguration } * */ public void setConfiguration(VideoEncoderConfiguration value) { this.configuration = value; } /** * Ruft den Wert der forcePersistence-Eigenschaft ab. * */ public boolean isForcePersistence() { return forcePersistence; } /** * Legt den Wert der forcePersistence-Eigenschaft fest. * */ public void setForcePersistence(boolean value) { this.forcePersistence = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetVideoEncoderConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetVideoEncoderConfigurationResponse") public class SetVideoEncoderConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetVideoSourceConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoSourceConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration", "forcePersistence" }) @XmlRootElement(name = "SetVideoSourceConfiguration") public class SetVideoSourceConfiguration { @XmlElement(name = "Configuration", required = true) protected VideoSourceConfiguration configuration; @XmlElement(name = "ForcePersistence") protected boolean forcePersistence; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link VideoSourceConfiguration } * */ public VideoSourceConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link VideoSourceConfiguration } * */ public void setConfiguration(VideoSourceConfiguration value) { this.configuration = value; } /** * Ruft den Wert der forcePersistence-Eigenschaft ab. * */ public boolean isForcePersistence() { return forcePersistence; } /** * Legt den Wert der forcePersistence-Eigenschaft fest. * */ public void setForcePersistence(boolean value) { this.forcePersistence = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetVideoSourceConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetVideoSourceConfigurationResponse") public class SetVideoSourceConfigurationResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetVideoSourceMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "videoSourceToken", "videoSourceModeToken" }) @XmlRootElement(name = "SetVideoSourceMode") public class SetVideoSourceMode { @XmlElement(name = "VideoSourceToken", required = true) protected String videoSourceToken; @XmlElement(name = "VideoSourceModeToken", required = true) protected String videoSourceModeToken; /** * Ruft den Wert der videoSourceToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getVideoSourceToken() { return videoSourceToken; } /** * Legt den Wert der videoSourceToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setVideoSourceToken(String value) { this.videoSourceToken = value; } /** * Ruft den Wert der videoSourceModeToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getVideoSourceModeToken() { return videoSourceModeToken; } /** * Legt den Wert der videoSourceModeToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setVideoSourceModeToken(String value) { this.videoSourceModeToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/SetVideoSourceModeResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "reboot" }) @XmlRootElement(name = "SetVideoSourceModeResponse") public class SetVideoSourceModeResponse { @XmlElement(name = "Reboot") protected boolean reboot; /** * Ruft den Wert der reboot-Eigenschaft ab. * */ public boolean isReboot() { return reboot; } /** * Legt den Wert der reboot-Eigenschaft fest. * */ public void setReboot(boolean value) { this.reboot = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/StartMulticastStreaming.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "StartMulticastStreaming") public class StartMulticastStreaming { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/StartMulticastStreamingResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "StartMulticastStreamingResponse") public class StartMulticastStreamingResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/StopMulticastStreaming.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "StopMulticastStreaming") public class StopMulticastStreaming { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/StopMulticastStreamingResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "StopMulticastStreamingResponse") public class StopMulticastStreamingResponse { } ================================================ FILE: src/org/onvif/ver10/media/wsdl/StreamingCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r StreamingCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StreamingCapabilities", propOrder = { "any" }) public class StreamingCapabilities { @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "RTPMulticast") protected Boolean rtpMulticast; @XmlAttribute(name = "RTP_TCP") protected Boolean rtptcp; @XmlAttribute(name = "RTP_RTSP_TCP") protected Boolean rtprtsptcp; @XmlAttribute(name = "NonAggregateControl") protected Boolean nonAggregateControl; @XmlAttribute(name = "NoRTSPStreaming") protected Boolean noRTSPStreaming; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der rtpMulticast-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isRTPMulticast() { return rtpMulticast; } /** * Legt den Wert der rtpMulticast-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setRTPMulticast(Boolean value) { this.rtpMulticast = value; } /** * Ruft den Wert der rtptcp-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isRTPTCP() { return rtptcp; } /** * Legt den Wert der rtptcp-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setRTPTCP(Boolean value) { this.rtptcp = value; } /** * Ruft den Wert der rtprtsptcp-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isRTPRTSPTCP() { return rtprtsptcp; } /** * Legt den Wert der rtprtsptcp-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setRTPRTSPTCP(Boolean value) { this.rtprtsptcp = value; } /** * Ruft den Wert der nonAggregateControl-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isNonAggregateControl() { return nonAggregateControl; } /** * Legt den Wert der nonAggregateControl-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setNonAggregateControl(Boolean value) { this.nonAggregateControl = value; } /** * Ruft den Wert der noRTSPStreaming-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isNoRTSPStreaming() { return noRTSPStreaming; } /** * Legt den Wert der noRTSPStreaming-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setNoRTSPStreaming(Boolean value) { this.noRTSPStreaming = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/VideoSourceMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlList; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.onvif.ver10.schema.VideoResolution; /** *

* Java-Klasse f�r VideoSourceMode complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoSourceMode", propOrder = { "maxFramerate", "maxResolution", "encodings", "reboot", "description", "extension" }) public class VideoSourceMode { @XmlElement(name = "MaxFramerate") protected float maxFramerate; @XmlElement(name = "MaxResolution", required = true) protected VideoResolution maxResolution; @XmlList @XmlElement(name = "Encodings", required = true) protected List encodings; @XmlElement(name = "Reboot") protected boolean reboot; @XmlElement(name = "Description") protected String description; @XmlElement(name = "Extension") protected VideoSourceModeExtension extension; @XmlAttribute(name = "token", required = true) protected String token; @XmlAttribute(name = "Enabled") protected Boolean enabled; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der maxFramerate-Eigenschaft ab. * */ public float getMaxFramerate() { return maxFramerate; } /** * Legt den Wert der maxFramerate-Eigenschaft fest. * */ public void setMaxFramerate(float value) { this.maxFramerate = value; } /** * Ruft den Wert der maxResolution-Eigenschaft ab. * * @return possible object is {@link VideoResolution } * */ public VideoResolution getMaxResolution() { return maxResolution; } /** * Legt den Wert der maxResolution-Eigenschaft fest. * * @param value * allowed object is {@link VideoResolution } * */ public void setMaxResolution(VideoResolution value) { this.maxResolution = value; } /** * Gets the value of the encodings property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the encodings property. * *

* For example, to add a new item, do as follows: * *

	 * getEncodings().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getEncodings() { if (encodings == null) { encodings = new ArrayList(); } return this.encodings; } /** * Ruft den Wert der reboot-Eigenschaft ab. * */ public boolean isReboot() { return reboot; } /** * Legt den Wert der reboot-Eigenschaft fest. * */ public void setReboot(boolean value) { this.reboot = value; } /** * Ruft den Wert der description-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDescription() { return description; } /** * Legt den Wert der description-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link VideoSourceModeExtension } * */ public VideoSourceModeExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link VideoSourceModeExtension } * */ public void setExtension(VideoSourceModeExtension value) { this.extension = value; } /** * Ruft den Wert der token-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setToken(String value) { this.token = value; } /** * Ruft den Wert der enabled-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isEnabled() { return enabled; } /** * Legt den Wert der enabled-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setEnabled(Boolean value) { this.enabled = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/VideoSourceModeExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // package org.onvif.ver10.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoSourceModeExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoSourceModeExtension", propOrder = { "any" }) public class VideoSourceModeExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/media/wsdl/package-info.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.19 um 02:35:56 PM CET // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/media/wsdl", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) package org.onvif.ver10.media.wsdl; ================================================ FILE: src/org/onvif/ver10/schema/AACDecOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AACDecOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AACDecOptions", propOrder = { "bitrate", "sampleRateRange", "any" }) public class AACDecOptions { @XmlElement(name = "Bitrate", required = true) protected IntList bitrate; @XmlElement(name = "SampleRateRange", required = true) protected IntList sampleRateRange; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der bitrate-Eigenschaft ab. * * @return possible object is {@link IntList } * */ public IntList getBitrate() { return bitrate; } /** * Legt den Wert der bitrate-Eigenschaft fest. * * @param value * allowed object is {@link IntList } * */ public void setBitrate(IntList value) { this.bitrate = value; } /** * Ruft den Wert der sampleRateRange-Eigenschaft ab. * * @return possible object is {@link IntList } * */ public IntList getSampleRateRange() { return sampleRateRange; } /** * Legt den Wert der sampleRateRange-Eigenschaft fest. * * @param value * allowed object is {@link IntList } * */ public void setSampleRateRange(IntList value) { this.sampleRateRange = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AbsoluteFocus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r AbsoluteFocus complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbsoluteFocus", propOrder = { "position", "speed" }) public class AbsoluteFocus { @XmlElement(name = "Position") protected float position; @XmlElement(name = "Speed") protected Float speed; /** * Ruft den Wert der position-Eigenschaft ab. * */ public float getPosition() { return position; } /** * Legt den Wert der position-Eigenschaft fest. * */ public void setPosition(float value) { this.position = value; } /** * Ruft den Wert der speed-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getSpeed() { return speed; } /** * Legt den Wert der speed-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setSpeed(Float value) { this.speed = value; } } ================================================ FILE: src/org/onvif/ver10/schema/AbsoluteFocusOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r AbsoluteFocusOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbsoluteFocusOptions", propOrder = { "position", "speed" }) public class AbsoluteFocusOptions { @XmlElement(name = "Position", required = true) protected FloatRange position; @XmlElement(name = "Speed") protected FloatRange speed; /** * Ruft den Wert der position-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getPosition() { return position; } /** * Legt den Wert der position-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setPosition(FloatRange value) { this.position = value; } /** * Ruft den Wert der speed-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getSpeed() { return speed; } /** * Legt den Wert der speed-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setSpeed(FloatRange value) { this.speed = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ActionEngineEventPayload.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.xmlsoap.schemas.soap.envelope.Envelope; import org.xmlsoap.schemas.soap.envelope.Fault; /** * Action Engine Event Payload data structure contains the information about the ONVIF command invocations. Since this event could be generated by other or proprietary actions, the * command invocation specific fields are defined as optional and additional extension mechanism is provided for future or additional action definitions. * *

* Java-Klasse f�r ActionEngineEventPayload complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ActionEngineEventPayload", propOrder = { "requestInfo", "responseInfo", "fault", "extension" }) public class ActionEngineEventPayload { @XmlElement(name = "RequestInfo") protected Envelope requestInfo; @XmlElement(name = "ResponseInfo") protected Envelope responseInfo; @XmlElement(name = "Fault") protected Fault fault; @XmlElement(name = "Extension") protected ActionEngineEventPayloadExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der requestInfo-Eigenschaft ab. * * @return possible object is {@link Envelope } * */ public Envelope getRequestInfo() { return requestInfo; } /** * Legt den Wert der requestInfo-Eigenschaft fest. * * @param value * allowed object is {@link Envelope } * */ public void setRequestInfo(Envelope value) { this.requestInfo = value; } /** * Ruft den Wert der responseInfo-Eigenschaft ab. * * @return possible object is {@link Envelope } * */ public Envelope getResponseInfo() { return responseInfo; } /** * Legt den Wert der responseInfo-Eigenschaft fest. * * @param value * allowed object is {@link Envelope } * */ public void setResponseInfo(Envelope value) { this.responseInfo = value; } /** * Ruft den Wert der fault-Eigenschaft ab. * * @return possible object is {@link Fault } * */ public Fault getFault() { return fault; } /** * Legt den Wert der fault-Eigenschaft fest. * * @param value * allowed object is {@link Fault } * */ public void setFault(Fault value) { this.fault = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ActionEngineEventPayloadExtension } * */ public ActionEngineEventPayloadExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ActionEngineEventPayloadExtension } * */ public void setExtension(ActionEngineEventPayloadExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ActionEngineEventPayloadExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ActionEngineEventPayloadExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ActionEngineEventPayloadExtension", propOrder = { "any" }) public class ActionEngineEventPayloadExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AnalyticsCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AnalyticsCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnalyticsCapabilities", propOrder = { "xAddr", "ruleSupport", "analyticsModuleSupport", "any" }) public class AnalyticsCapabilities { @XmlElement(name = "XAddr", required = true) @XmlSchemaType(name = "anyURI") protected String xAddr; @XmlElement(name = "RuleSupport") protected boolean ruleSupport; @XmlElement(name = "AnalyticsModuleSupport") protected boolean analyticsModuleSupport; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der xAddr-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getXAddr() { return xAddr; } /** * Legt den Wert der xAddr-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setXAddr(String value) { this.xAddr = value; } /** * Ruft den Wert der ruleSupport-Eigenschaft ab. * */ public boolean isRuleSupport() { return ruleSupport; } /** * Legt den Wert der ruleSupport-Eigenschaft fest. * */ public void setRuleSupport(boolean value) { this.ruleSupport = value; } /** * Ruft den Wert der analyticsModuleSupport-Eigenschaft ab. * */ public boolean isAnalyticsModuleSupport() { return analyticsModuleSupport; } /** * Legt den Wert der analyticsModuleSupport-Eigenschaft fest. * */ public void setAnalyticsModuleSupport(boolean value) { this.analyticsModuleSupport = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AnalyticsDeviceCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r AnalyticsDeviceCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnalyticsDeviceCapabilities", propOrder = { "xAddr", "ruleSupport", "extension" }) public class AnalyticsDeviceCapabilities { @XmlElement(name = "XAddr", required = true) @XmlSchemaType(name = "anyURI") protected String xAddr; @XmlElement(name = "RuleSupport") protected Boolean ruleSupport; @XmlElement(name = "Extension") protected AnalyticsDeviceExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der xAddr-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getXAddr() { return xAddr; } /** * Legt den Wert der xAddr-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setXAddr(String value) { this.xAddr = value; } /** * Ruft den Wert der ruleSupport-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isRuleSupport() { return ruleSupport; } /** * Legt den Wert der ruleSupport-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setRuleSupport(Boolean value) { this.ruleSupport = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link AnalyticsDeviceExtension } * */ public AnalyticsDeviceExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link AnalyticsDeviceExtension } * */ public void setExtension(AnalyticsDeviceExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AnalyticsDeviceEngineConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r AnalyticsDeviceEngineConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnalyticsDeviceEngineConfiguration", propOrder = { "engineConfiguration", "extension" }) public class AnalyticsDeviceEngineConfiguration { @XmlElement(name = "EngineConfiguration", required = true) protected List engineConfiguration; @XmlElement(name = "Extension") protected AnalyticsDeviceEngineConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the engineConfiguration property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the engineConfiguration property. * *

* For example, to add a new item, do as follows: * *

	 * getEngineConfiguration().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link EngineConfiguration } * * */ public List getEngineConfiguration() { if (engineConfiguration == null) { engineConfiguration = new ArrayList(); } return this.engineConfiguration; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link AnalyticsDeviceEngineConfigurationExtension } * */ public AnalyticsDeviceEngineConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link AnalyticsDeviceEngineConfigurationExtension } * */ public void setExtension(AnalyticsDeviceEngineConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AnalyticsDeviceEngineConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AnalyticsDeviceEngineConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnalyticsDeviceEngineConfigurationExtension", propOrder = { "any" }) public class AnalyticsDeviceEngineConfigurationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/AnalyticsDeviceExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AnalyticsDeviceExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnalyticsDeviceExtension", propOrder = { "any" }) public class AnalyticsDeviceExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/AnalyticsEngine.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AnalyticsEngine complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnalyticsEngine", propOrder = { "analyticsEngineConfiguration", "any" }) public class AnalyticsEngine extends ConfigurationEntity { @XmlElement(name = "AnalyticsEngineConfiguration", required = true) protected AnalyticsDeviceEngineConfiguration analyticsEngineConfiguration; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der analyticsEngineConfiguration-Eigenschaft ab. * * @return possible object is {@link AnalyticsDeviceEngineConfiguration } * */ public AnalyticsDeviceEngineConfiguration getAnalyticsEngineConfiguration() { return analyticsEngineConfiguration; } /** * Legt den Wert der analyticsEngineConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link AnalyticsDeviceEngineConfiguration } * */ public void setAnalyticsEngineConfiguration(AnalyticsDeviceEngineConfiguration value) { this.analyticsEngineConfiguration = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AnalyticsEngineConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r AnalyticsEngineConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnalyticsEngineConfiguration", propOrder = { "analyticsModule", "extension" }) public class AnalyticsEngineConfiguration { @XmlElement(name = "AnalyticsModule") protected List analyticsModule; @XmlElement(name = "Extension") protected AnalyticsEngineConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the analyticsModule property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the analyticsModule property. * *

* For example, to add a new item, do as follows: * *

	 * getAnalyticsModule().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Config } * * */ public List getAnalyticsModule() { if (analyticsModule == null) { analyticsModule = new ArrayList(); } return this.analyticsModule; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link AnalyticsEngineConfigurationExtension } * */ public AnalyticsEngineConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link AnalyticsEngineConfigurationExtension } * */ public void setExtension(AnalyticsEngineConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AnalyticsEngineConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AnalyticsEngineConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnalyticsEngineConfigurationExtension", propOrder = { "any" }) public class AnalyticsEngineConfigurationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/AnalyticsEngineControl.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AnalyticsEngineControl complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnalyticsEngineControl", propOrder = { "engineToken", "engineConfigToken", "inputToken", "receiverToken", "multicast", "subscription", "mode", "any" }) public class AnalyticsEngineControl extends ConfigurationEntity { @XmlElement(name = "EngineToken", required = true) protected String engineToken; @XmlElement(name = "EngineConfigToken", required = true) protected String engineConfigToken; @XmlElement(name = "InputToken", required = true) protected List inputToken; @XmlElement(name = "ReceiverToken", required = true) protected List receiverToken; @XmlElement(name = "Multicast") protected MulticastConfiguration multicast; @XmlElement(name = "Subscription", required = true) protected Config subscription; @XmlElement(name = "Mode", required = true) protected ModeOfOperation mode; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der engineToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getEngineToken() { return engineToken; } /** * Legt den Wert der engineToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setEngineToken(String value) { this.engineToken = value; } /** * Ruft den Wert der engineConfigToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getEngineConfigToken() { return engineConfigToken; } /** * Legt den Wert der engineConfigToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setEngineConfigToken(String value) { this.engineConfigToken = value; } /** * Gets the value of the inputToken property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the inputToken property. * *

* For example, to add a new item, do as follows: * *

	 * getInputToken().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getInputToken() { if (inputToken == null) { inputToken = new ArrayList(); } return this.inputToken; } /** * Gets the value of the receiverToken property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the receiverToken property. * *

* For example, to add a new item, do as follows: * *

	 * getReceiverToken().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getReceiverToken() { if (receiverToken == null) { receiverToken = new ArrayList(); } return this.receiverToken; } /** * Ruft den Wert der multicast-Eigenschaft ab. * * @return possible object is {@link MulticastConfiguration } * */ public MulticastConfiguration getMulticast() { return multicast; } /** * Legt den Wert der multicast-Eigenschaft fest. * * @param value * allowed object is {@link MulticastConfiguration } * */ public void setMulticast(MulticastConfiguration value) { this.multicast = value; } /** * Ruft den Wert der subscription-Eigenschaft ab. * * @return possible object is {@link Config } * */ public Config getSubscription() { return subscription; } /** * Legt den Wert der subscription-Eigenschaft fest. * * @param value * allowed object is {@link Config } * */ public void setSubscription(Config value) { this.subscription = value; } /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link ModeOfOperation } * */ public ModeOfOperation getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link ModeOfOperation } * */ public void setMode(ModeOfOperation value) { this.mode = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AnalyticsEngineInput.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AnalyticsEngineInput complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnalyticsEngineInput", propOrder = { "sourceIdentification", "videoInput", "metadataInput", "any" }) public class AnalyticsEngineInput extends ConfigurationEntity { @XmlElement(name = "SourceIdentification", required = true) protected SourceIdentification sourceIdentification; @XmlElement(name = "VideoInput", required = true) protected VideoEncoderConfiguration videoInput; @XmlElement(name = "MetadataInput", required = true) protected MetadataInput metadataInput; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der sourceIdentification-Eigenschaft ab. * * @return possible object is {@link SourceIdentification } * */ public SourceIdentification getSourceIdentification() { return sourceIdentification; } /** * Legt den Wert der sourceIdentification-Eigenschaft fest. * * @param value * allowed object is {@link SourceIdentification } * */ public void setSourceIdentification(SourceIdentification value) { this.sourceIdentification = value; } /** * Ruft den Wert der videoInput-Eigenschaft ab. * * @return possible object is {@link VideoEncoderConfiguration } * */ public VideoEncoderConfiguration getVideoInput() { return videoInput; } /** * Legt den Wert der videoInput-Eigenschaft fest. * * @param value * allowed object is {@link VideoEncoderConfiguration } * */ public void setVideoInput(VideoEncoderConfiguration value) { this.videoInput = value; } /** * Ruft den Wert der metadataInput-Eigenschaft ab. * * @return possible object is {@link MetadataInput } * */ public MetadataInput getMetadataInput() { return metadataInput; } /** * Legt den Wert der metadataInput-Eigenschaft fest. * * @param value * allowed object is {@link MetadataInput } * */ public void setMetadataInput(MetadataInput value) { this.metadataInput = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AnalyticsEngineInputInfo.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r AnalyticsEngineInputInfo complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnalyticsEngineInputInfo", propOrder = { "inputInfo", "extension" }) public class AnalyticsEngineInputInfo { @XmlElement(name = "InputInfo") protected Config inputInfo; @XmlElement(name = "Extension") protected AnalyticsEngineInputInfoExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der inputInfo-Eigenschaft ab. * * @return possible object is {@link Config } * */ public Config getInputInfo() { return inputInfo; } /** * Legt den Wert der inputInfo-Eigenschaft fest. * * @param value * allowed object is {@link Config } * */ public void setInputInfo(Config value) { this.inputInfo = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link AnalyticsEngineInputInfoExtension } * */ public AnalyticsEngineInputInfoExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link AnalyticsEngineInputInfoExtension } * */ public void setExtension(AnalyticsEngineInputInfoExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AnalyticsEngineInputInfoExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AnalyticsEngineInputInfoExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnalyticsEngineInputInfoExtension", propOrder = { "any" }) public class AnalyticsEngineInputInfoExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/AnalyticsState.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AnalyticsState complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnalyticsState", propOrder = { "error", "state", "any" }) public class AnalyticsState { @XmlElement(name = "Error") protected String error; @XmlElement(name = "State", required = true) protected String state; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der error-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getError() { return error; } /** * Legt den Wert der error-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setError(String value) { this.error = value; } /** * Ruft den Wert der state-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getState() { return state; } /** * Legt den Wert der state-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setState(String value) { this.state = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AnalyticsStateInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AnalyticsStateInformation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnalyticsStateInformation", propOrder = { "analyticsEngineControlToken", "state", "any" }) public class AnalyticsStateInformation { @XmlElement(name = "AnalyticsEngineControlToken", required = true) protected String analyticsEngineControlToken; @XmlElement(name = "State", required = true) protected AnalyticsState state; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der analyticsEngineControlToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getAnalyticsEngineControlToken() { return analyticsEngineControlToken; } /** * Legt den Wert der analyticsEngineControlToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setAnalyticsEngineControlToken(String value) { this.analyticsEngineControlToken = value; } /** * Ruft den Wert der state-Eigenschaft ab. * * @return possible object is {@link AnalyticsState } * */ public AnalyticsState getState() { return state; } /** * Legt den Wert der state-Eigenschaft fest. * * @param value * allowed object is {@link AnalyticsState } * */ public void setState(AnalyticsState value) { this.state = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AnyHolder.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AnyHolder complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnyHolder", propOrder = { "any" }) public class AnyHolder { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Appearance.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r Appearance complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Appearance", propOrder = { "transformation", "shape", "color", "clazz", "extension" }) public class Appearance { @XmlElement(name = "Transformation") protected Transformation transformation; @XmlElement(name = "Shape") protected ShapeDescriptor shape; @XmlElement(name = "Color") protected ColorDescriptor color; @XmlElement(name = "Class") protected ClassDescriptor clazz; @XmlElement(name = "Extension") protected AppearanceExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der transformation-Eigenschaft ab. * * @return possible object is {@link Transformation } * */ public Transformation getTransformation() { return transformation; } /** * Legt den Wert der transformation-Eigenschaft fest. * * @param value * allowed object is {@link Transformation } * */ public void setTransformation(Transformation value) { this.transformation = value; } /** * Ruft den Wert der shape-Eigenschaft ab. * * @return possible object is {@link ShapeDescriptor } * */ public ShapeDescriptor getShape() { return shape; } /** * Legt den Wert der shape-Eigenschaft fest. * * @param value * allowed object is {@link ShapeDescriptor } * */ public void setShape(ShapeDescriptor value) { this.shape = value; } /** * Ruft den Wert der color-Eigenschaft ab. * * @return possible object is {@link ColorDescriptor } * */ public ColorDescriptor getColor() { return color; } /** * Legt den Wert der color-Eigenschaft fest. * * @param value * allowed object is {@link ColorDescriptor } * */ public void setColor(ColorDescriptor value) { this.color = value; } /** * Ruft den Wert der clazz-Eigenschaft ab. * * @return possible object is {@link ClassDescriptor } * */ public ClassDescriptor getClazz() { return clazz; } /** * Legt den Wert der clazz-Eigenschaft fest. * * @param value * allowed object is {@link ClassDescriptor } * */ public void setClazz(ClassDescriptor value) { this.clazz = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link AppearanceExtension } * */ public AppearanceExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link AppearanceExtension } * */ public void setExtension(AppearanceExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AppearanceExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AppearanceExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AppearanceExtension", propOrder = { "any" }) public class AppearanceExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/ArrayOfFileProgress.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

Java-Klasse fr ArrayOfFileProgress complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="ArrayOfFileProgress">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="FileProgress" type="{http://www.onvif.org/ver10/schema}FileProgress" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Extension" type="{http://www.onvif.org/ver10/schema}ArrayOfFileProgressExtension" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ArrayOfFileProgress", propOrder = { "fileProgress", "extension" }) public class ArrayOfFileProgress { @XmlElement(name = "FileProgress") protected List fileProgress; @XmlElement(name = "Extension") protected ArrayOfFileProgressExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the fileProgress property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the fileProgress property. * *

* For example, to add a new item, do as follows: *

     *    getFileProgress().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FileProgress } * * */ public List getFileProgress() { if (fileProgress == null) { fileProgress = new ArrayList(); } return this.fileProgress; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return * possible object is * {@link ArrayOfFileProgressExtension } * */ public ArrayOfFileProgressExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is * {@link ArrayOfFileProgressExtension } * */ public void setExtension(ArrayOfFileProgressExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ArrayOfFileProgressExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr ArrayOfFileProgressExtension complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="ArrayOfFileProgressExtension">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ArrayOfFileProgressExtension", propOrder = { "any" }) public class ArrayOfFileProgressExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AttachmentData.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3._2004._08.xop.include.Include; /** *

* Java-Klasse f�r AttachmentData complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AttachmentData", propOrder = { "include" }) public class AttachmentData { @XmlElement(name = "Include", namespace = "http://www.w3.org/2004/08/xop/include", required = true) protected Include include; @XmlAttribute(name = "contentType", namespace = "http://www.w3.org/2005/05/xmlmime") protected String contentType; /** * Ruft den Wert der include-Eigenschaft ab. * * @return possible object is {@link Include } * */ public Include getInclude() { return include; } /** * Legt den Wert der include-Eigenschaft fest. * * @param value * allowed object is {@link Include } * */ public void setInclude(Include value) { this.include = value; } /** * Ruft den Wert der contentType-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getContentType() { return contentType; } /** * Legt den Wert der contentType-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setContentType(String value) { this.contentType = value; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioAnalyticsStream.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r AudioAnalyticsStream complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioAnalyticsStream", propOrder = { "audioDescriptor", "extension" }) public class AudioAnalyticsStream { @XmlElement(name = "AudioDescriptor") protected List audioDescriptor; @XmlElement(name = "Extension") protected AudioAnalyticsStreamExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the audioDescriptor property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the audioDescriptor property. * *

* For example, to add a new item, do as follows: * *

	 * getAudioDescriptor().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AudioDescriptor } * * */ public List getAudioDescriptor() { if (audioDescriptor == null) { audioDescriptor = new ArrayList(); } return this.audioDescriptor; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link AudioAnalyticsStreamExtension } * */ public AudioAnalyticsStreamExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link AudioAnalyticsStreamExtension } * */ public void setExtension(AudioAnalyticsStreamExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioAnalyticsStreamExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AudioAnalyticsStreamExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioAnalyticsStreamExtension", propOrder = { "any" }) public class AudioAnalyticsStreamExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioAttributes.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AudioAttributes complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioAttributes", propOrder = { "bitrate", "encoding", "samplerate", "any" }) public class AudioAttributes { @XmlElement(name = "Bitrate") protected Integer bitrate; @XmlElement(name = "Encoding", required = true) protected AudioEncoding encoding; @XmlElement(name = "Samplerate") protected int samplerate; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der bitrate-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getBitrate() { return bitrate; } /** * Legt den Wert der bitrate-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setBitrate(Integer value) { this.bitrate = value; } /** * Ruft den Wert der encoding-Eigenschaft ab. * * @return possible object is {@link AudioEncoding } * */ public AudioEncoding getEncoding() { return encoding; } /** * Legt den Wert der encoding-Eigenschaft fest. * * @param value * allowed object is {@link AudioEncoding } * */ public void setEncoding(AudioEncoding value) { this.encoding = value; } /** * Ruft den Wert der samplerate-Eigenschaft ab. * */ public int getSamplerate() { return samplerate; } /** * Legt den Wert der samplerate-Eigenschaft fest. * */ public void setSamplerate(int value) { this.samplerate = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioClassCandidate.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AudioClassCandidate complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioClassCandidate", propOrder = { "type", "likelihood", "any" }) public class AudioClassCandidate { @XmlElement(name = "Type", required = true) protected String type; @XmlElement(name = "Likelihood") protected float likelihood; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setType(String value) { this.type = value; } /** * Ruft den Wert der likelihood-Eigenschaft ab. * */ public float getLikelihood() { return likelihood; } /** * Legt den Wert der likelihood-Eigenschaft fest. * */ public void setLikelihood(float value) { this.likelihood = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioClassDescriptor.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r AudioClassDescriptor complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioClassDescriptor", propOrder = { "classCandidate", "extension" }) public class AudioClassDescriptor { @XmlElement(name = "ClassCandidate") protected List classCandidate; @XmlElement(name = "Extension") protected AudioClassDescriptorExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the classCandidate property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the classCandidate property. * *

* For example, to add a new item, do as follows: * *

	 * getClassCandidate().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AudioClassCandidate } * * */ public List getClassCandidate() { if (classCandidate == null) { classCandidate = new ArrayList(); } return this.classCandidate; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link AudioClassDescriptorExtension } * */ public AudioClassDescriptorExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link AudioClassDescriptorExtension } * */ public void setExtension(AudioClassDescriptorExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioClassDescriptorExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AudioClassDescriptorExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioClassDescriptorExtension", propOrder = { "any" }) public class AudioClassDescriptorExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioDecoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** * The Audio Decoder Configuration does not contain any that parameter to configure the decoding .A decoder shall decode every data it receives (according to its capabilities). * *

* Java-Klasse f�r AudioDecoderConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioDecoderConfiguration", propOrder = { "any" }) public class AudioDecoderConfiguration extends ConfigurationEntity { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioDecoderConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r AudioDecoderConfigurationOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioDecoderConfigurationOptions", propOrder = { "aacDecOptions", "g711DecOptions", "g726DecOptions", "extension" }) public class AudioDecoderConfigurationOptions { @XmlElement(name = "AACDecOptions") protected AACDecOptions aacDecOptions; @XmlElement(name = "G711DecOptions") protected G711DecOptions g711DecOptions; @XmlElement(name = "G726DecOptions") protected G726DecOptions g726DecOptions; @XmlElement(name = "Extension") protected AudioDecoderConfigurationOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der aacDecOptions-Eigenschaft ab. * * @return possible object is {@link AACDecOptions } * */ public AACDecOptions getAACDecOptions() { return aacDecOptions; } /** * Legt den Wert der aacDecOptions-Eigenschaft fest. * * @param value * allowed object is {@link AACDecOptions } * */ public void setAACDecOptions(AACDecOptions value) { this.aacDecOptions = value; } /** * Ruft den Wert der g711DecOptions-Eigenschaft ab. * * @return possible object is {@link G711DecOptions } * */ public G711DecOptions getG711DecOptions() { return g711DecOptions; } /** * Legt den Wert der g711DecOptions-Eigenschaft fest. * * @param value * allowed object is {@link G711DecOptions } * */ public void setG711DecOptions(G711DecOptions value) { this.g711DecOptions = value; } /** * Ruft den Wert der g726DecOptions-Eigenschaft ab. * * @return possible object is {@link G726DecOptions } * */ public G726DecOptions getG726DecOptions() { return g726DecOptions; } /** * Legt den Wert der g726DecOptions-Eigenschaft fest. * * @param value * allowed object is {@link G726DecOptions } * */ public void setG726DecOptions(G726DecOptions value) { this.g726DecOptions = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link AudioDecoderConfigurationOptionsExtension } * */ public AudioDecoderConfigurationOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link AudioDecoderConfigurationOptionsExtension } * */ public void setExtension(AudioDecoderConfigurationOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioDecoderConfigurationOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AudioDecoderConfigurationOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioDecoderConfigurationOptionsExtension", propOrder = { "any" }) public class AudioDecoderConfigurationOptionsExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioDescriptor.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AudioDescriptor complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioDescriptor", propOrder = { "any" }) public class AudioDescriptor { @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "UtcTime", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar utcTime; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der utcTime-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getUtcTime() { return utcTime; } /** * Legt den Wert der utcTime-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setUtcTime(XMLGregorianCalendar value) { this.utcTime = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioEncoder2Configuration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr AudioEncoder2Configuration complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="AudioEncoder2Configuration">
 *   <complexContent>
 *     <extension base="{http://www.onvif.org/ver10/schema}ConfigurationEntity">
 *       <sequence>
 *         <element name="Encoding" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Multicast" type="{http://www.onvif.org/ver10/schema}MulticastConfiguration" minOccurs="0"/>
 *         <element name="Bitrate" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="SampleRate" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioEncoder2Configuration", propOrder = { "encoding", "multicast", "bitrate", "sampleRate", "any" }) public class AudioEncoder2Configuration extends ConfigurationEntity { @XmlElement(name = "Encoding", required = true) protected String encoding; @XmlElement(name = "Multicast") protected MulticastConfiguration multicast; @XmlElement(name = "Bitrate") protected int bitrate; @XmlElement(name = "SampleRate") protected int sampleRate; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der encoding-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getEncoding() { return encoding; } /** * Legt den Wert der encoding-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setEncoding(String value) { this.encoding = value; } /** * Ruft den Wert der multicast-Eigenschaft ab. * * @return * possible object is * {@link MulticastConfiguration } * */ public MulticastConfiguration getMulticast() { return multicast; } /** * Legt den Wert der multicast-Eigenschaft fest. * * @param value * allowed object is * {@link MulticastConfiguration } * */ public void setMulticast(MulticastConfiguration value) { this.multicast = value; } /** * Ruft den Wert der bitrate-Eigenschaft ab. * */ public int getBitrate() { return bitrate; } /** * Legt den Wert der bitrate-Eigenschaft fest. * */ public void setBitrate(int value) { this.bitrate = value; } /** * Ruft den Wert der sampleRate-Eigenschaft ab. * */ public int getSampleRate() { return sampleRate; } /** * Legt den Wert der sampleRate-Eigenschaft fest. * */ public void setSampleRate(int value) { this.sampleRate = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioEncoder2ConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr AudioEncoder2ConfigurationOptions complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="AudioEncoder2ConfigurationOptions">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Encoding" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="BitrateList" type="{http://www.onvif.org/ver10/schema}IntList"/>
 *         <element name="SampleRateList" type="{http://www.onvif.org/ver10/schema}IntList"/>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioEncoder2ConfigurationOptions", propOrder = { "encoding", "bitrateList", "sampleRateList", "any" }) public class AudioEncoder2ConfigurationOptions { @XmlElement(name = "Encoding", required = true) protected String encoding; @XmlElement(name = "BitrateList", required = true) protected IntList bitrateList; @XmlElement(name = "SampleRateList", required = true) protected IntList sampleRateList; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der encoding-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getEncoding() { return encoding; } /** * Legt den Wert der encoding-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setEncoding(String value) { this.encoding = value; } /** * Ruft den Wert der bitrateList-Eigenschaft ab. * * @return * possible object is * {@link IntList } * */ public IntList getBitrateList() { return bitrateList; } /** * Legt den Wert der bitrateList-Eigenschaft fest. * * @param value * allowed object is * {@link IntList } * */ public void setBitrateList(IntList value) { this.bitrateList = value; } /** * Ruft den Wert der sampleRateList-Eigenschaft ab. * * @return * possible object is * {@link IntList } * */ public IntList getSampleRateList() { return sampleRateList; } /** * Legt den Wert der sampleRateList-Eigenschaft fest. * * @param value * allowed object is * {@link IntList } * */ public void setSampleRateList(IntList value) { this.sampleRateList = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioEncoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AudioEncoderConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioEncoderConfiguration", propOrder = { "encoding", "bitrate", "sampleRate", "multicast", "sessionTimeout", "any" }) public class AudioEncoderConfiguration extends ConfigurationEntity { @XmlElement(name = "Encoding", required = true) protected AudioEncoding encoding; @XmlElement(name = "Bitrate") protected int bitrate; @XmlElement(name = "SampleRate") protected int sampleRate; @XmlElement(name = "Multicast", required = true) protected MulticastConfiguration multicast; @XmlElement(name = "SessionTimeout", required = true) protected Duration sessionTimeout; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der encoding-Eigenschaft ab. * * @return possible object is {@link AudioEncoding } * */ public AudioEncoding getEncoding() { return encoding; } /** * Legt den Wert der encoding-Eigenschaft fest. * * @param value * allowed object is {@link AudioEncoding } * */ public void setEncoding(AudioEncoding value) { this.encoding = value; } /** * Ruft den Wert der bitrate-Eigenschaft ab. * */ public int getBitrate() { return bitrate; } /** * Legt den Wert der bitrate-Eigenschaft fest. * */ public void setBitrate(int value) { this.bitrate = value; } /** * Ruft den Wert der sampleRate-Eigenschaft ab. * */ public int getSampleRate() { return sampleRate; } /** * Legt den Wert der sampleRate-Eigenschaft fest. * */ public void setSampleRate(int value) { this.sampleRate = value; } /** * Ruft den Wert der multicast-Eigenschaft ab. * * @return possible object is {@link MulticastConfiguration } * */ public MulticastConfiguration getMulticast() { return multicast; } /** * Legt den Wert der multicast-Eigenschaft fest. * * @param value * allowed object is {@link MulticastConfiguration } * */ public void setMulticast(MulticastConfiguration value) { this.multicast = value; } /** * Ruft den Wert der sessionTimeout-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getSessionTimeout() { return sessionTimeout; } /** * Legt den Wert der sessionTimeout-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setSessionTimeout(Duration value) { this.sessionTimeout = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioEncoderConfigurationOption.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AudioEncoderConfigurationOption complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioEncoderConfigurationOption", propOrder = { "encoding", "bitrateList", "sampleRateList", "any" }) public class AudioEncoderConfigurationOption { @XmlElement(name = "Encoding", required = true) protected AudioEncoding encoding; @XmlElement(name = "BitrateList", required = true) protected IntList bitrateList; @XmlElement(name = "SampleRateList", required = true) protected IntList sampleRateList; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der encoding-Eigenschaft ab. * * @return possible object is {@link AudioEncoding } * */ public AudioEncoding getEncoding() { return encoding; } /** * Legt den Wert der encoding-Eigenschaft fest. * * @param value * allowed object is {@link AudioEncoding } * */ public void setEncoding(AudioEncoding value) { this.encoding = value; } /** * Ruft den Wert der bitrateList-Eigenschaft ab. * * @return possible object is {@link IntList } * */ public IntList getBitrateList() { return bitrateList; } /** * Legt den Wert der bitrateList-Eigenschaft fest. * * @param value * allowed object is {@link IntList } * */ public void setBitrateList(IntList value) { this.bitrateList = value; } /** * Ruft den Wert der sampleRateList-Eigenschaft ab. * * @return possible object is {@link IntList } * */ public IntList getSampleRateList() { return sampleRateList; } /** * Legt den Wert der sampleRateList-Eigenschaft fest. * * @param value * allowed object is {@link IntList } * */ public void setSampleRateList(IntList value) { this.sampleRateList = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioEncoderConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r AudioEncoderConfigurationOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioEncoderConfigurationOptions", propOrder = { "options" }) public class AudioEncoderConfigurationOptions { @XmlElement(name = "Options") protected List options; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the options property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the options property. * *

* For example, to add a new item, do as follows: * *

	 * getOptions().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AudioEncoderConfigurationOption } * * */ public List getOptions() { if (options == null) { options = new ArrayList(); } return this.options; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioEncoding.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r AudioEncoding. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "AudioEncoding") @XmlEnum public enum AudioEncoding { @XmlEnumValue("G711") G_711("G711"), @XmlEnumValue("G726") G_726("G726"), AAC("AAC"); private final String value; AudioEncoding(String v) { value = v; } public String value() { return value; } public static AudioEncoding fromValue(String v) { for (AudioEncoding c : AudioEncoding.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/AudioEncodingMimeNames.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr AudioEncodingMimeNames. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

*

 * <simpleType name="AudioEncodingMimeNames">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="PCMU"/>
 *     <enumeration value="G726"/>
 *     <enumeration value="MP4A-LATM"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "AudioEncodingMimeNames") @XmlEnum public enum AudioEncodingMimeNames { PCMU("PCMU"), @XmlEnumValue("G726") G_726("G726"), @XmlEnumValue("MP4A-LATM") MP_4_A_LATM("MP4A-LATM"); private final String value; AudioEncodingMimeNames(String v) { value = v; } public String value() { return value; } public static AudioEncodingMimeNames fromValue(String v) { for (AudioEncodingMimeNames c: AudioEncodingMimeNames.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/AudioOutput.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** * Representation of a physical audio outputs. * *

* Java-Klasse f�r AudioOutput complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioOutput", propOrder = { "any" }) public class AudioOutput extends DeviceEntity { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioOutputConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AudioOutputConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioOutputConfiguration", propOrder = { "outputToken", "sendPrimacy", "outputLevel", "any" }) public class AudioOutputConfiguration extends ConfigurationEntity { @XmlElement(name = "OutputToken", required = true) protected String outputToken; @XmlElement(name = "SendPrimacy") @XmlSchemaType(name = "anyURI") protected String sendPrimacy; @XmlElement(name = "OutputLevel") protected int outputLevel; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der outputToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getOutputToken() { return outputToken; } /** * Legt den Wert der outputToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setOutputToken(String value) { this.outputToken = value; } /** * Ruft den Wert der sendPrimacy-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSendPrimacy() { return sendPrimacy; } /** * Legt den Wert der sendPrimacy-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSendPrimacy(String value) { this.sendPrimacy = value; } /** * Ruft den Wert der outputLevel-Eigenschaft ab. * */ public int getOutputLevel() { return outputLevel; } /** * Legt den Wert der outputLevel-Eigenschaft fest. * */ public void setOutputLevel(int value) { this.outputLevel = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioOutputConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AudioOutputConfigurationOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioOutputConfigurationOptions", propOrder = { "outputTokensAvailable", "sendPrimacyOptions", "outputLevelRange", "any" }) public class AudioOutputConfigurationOptions { @XmlElement(name = "OutputTokensAvailable", required = true) protected List outputTokensAvailable; @XmlElement(name = "SendPrimacyOptions") @XmlSchemaType(name = "anyURI") protected List sendPrimacyOptions; @XmlElement(name = "OutputLevelRange", required = true) protected IntRange outputLevelRange; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the outputTokensAvailable property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the outputTokensAvailable property. * *

* For example, to add a new item, do as follows: * *

	 * getOutputTokensAvailable().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getOutputTokensAvailable() { if (outputTokensAvailable == null) { outputTokensAvailable = new ArrayList(); } return this.outputTokensAvailable; } /** * Gets the value of the sendPrimacyOptions property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the sendPrimacyOptions property. * *

* For example, to add a new item, do as follows: * *

	 * getSendPrimacyOptions().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getSendPrimacyOptions() { if (sendPrimacyOptions == null) { sendPrimacyOptions = new ArrayList(); } return this.sendPrimacyOptions; } /** * Ruft den Wert der outputLevelRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getOutputLevelRange() { return outputLevelRange; } /** * Legt den Wert der outputLevelRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setOutputLevelRange(IntRange value) { this.outputLevelRange = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioSource.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** * Representation of a physical audio input. * *

* Java-Klasse f�r AudioSource complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioSource", propOrder = { "channels", "any" }) public class AudioSource extends DeviceEntity { @XmlElement(name = "Channels") protected int channels; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der channels-Eigenschaft ab. * */ public int getChannels() { return channels; } /** * Legt den Wert der channels-Eigenschaft fest. * */ public void setChannels(int value) { this.channels = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioSourceConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AudioSourceConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioSourceConfiguration", propOrder = { "sourceToken", "any" }) public class AudioSourceConfiguration extends ConfigurationEntity { @XmlElement(name = "SourceToken", required = true) protected String sourceToken; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der sourceToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSourceToken() { return sourceToken; } /** * Legt den Wert der sourceToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSourceToken(String value) { this.sourceToken = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioSourceConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r AudioSourceConfigurationOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioSourceConfigurationOptions", propOrder = { "inputTokensAvailable", "extension" }) public class AudioSourceConfigurationOptions { @XmlElement(name = "InputTokensAvailable", required = true) protected List inputTokensAvailable; @XmlElement(name = "Extension") protected AudioSourceOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the inputTokensAvailable property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the inputTokensAvailable property. * *

* For example, to add a new item, do as follows: * *

	 * getInputTokensAvailable().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getInputTokensAvailable() { if (inputTokensAvailable == null) { inputTokensAvailable = new ArrayList(); } return this.inputTokensAvailable; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link AudioSourceOptionsExtension } * */ public AudioSourceOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link AudioSourceOptionsExtension } * */ public void setExtension(AudioSourceOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/AudioSourceOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AudioSourceOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioSourceOptionsExtension", propOrder = { "any" }) public class AudioSourceOptionsExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/AutoFocusMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r AutoFocusMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "AutoFocusMode") @XmlEnum public enum AutoFocusMode { AUTO, MANUAL; public String value() { return name(); } public static AutoFocusMode fromValue(String v) { return valueOf(v); } } ================================================ FILE: src/org/onvif/ver10/schema/BacklightCompensation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r BacklightCompensation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BacklightCompensation", propOrder = { "mode", "level" }) public class BacklightCompensation { @XmlElement(name = "Mode", required = true) protected BacklightCompensationMode mode; @XmlElement(name = "Level") protected float level; /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link BacklightCompensationMode } * */ public BacklightCompensationMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link BacklightCompensationMode } * */ public void setMode(BacklightCompensationMode value) { this.mode = value; } /** * Ruft den Wert der level-Eigenschaft ab. * */ public float getLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * */ public void setLevel(float value) { this.level = value; } } ================================================ FILE: src/org/onvif/ver10/schema/BacklightCompensation20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Type describing whether BLC mode is enabled or disabled (on/off). * *

* Java-Klasse f�r BacklightCompensation20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BacklightCompensation20", propOrder = { "mode", "level" }) public class BacklightCompensation20 { @XmlElement(name = "Mode", required = true) protected BacklightCompensationMode mode; @XmlElement(name = "Level") protected Float level; /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link BacklightCompensationMode } * */ public BacklightCompensationMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link BacklightCompensationMode } * */ public void setMode(BacklightCompensationMode value) { this.mode = value; } /** * Ruft den Wert der level-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setLevel(Float value) { this.level = value; } } ================================================ FILE: src/org/onvif/ver10/schema/BacklightCompensationMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r BacklightCompensationMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "BacklightCompensationMode") @XmlEnum public enum BacklightCompensationMode { /** * Backlight compensation is disabled. * */ OFF, /** * Backlight compensation is enabled. * */ ON; public String value() { return name(); } public static BacklightCompensationMode fromValue(String v) { return valueOf(v); } } ================================================ FILE: src/org/onvif/ver10/schema/BacklightCompensationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r BacklightCompensationOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BacklightCompensationOptions", propOrder = { "mode", "level" }) public class BacklightCompensationOptions { @XmlElement(name = "Mode", required = true) protected List mode; @XmlElement(name = "Level", required = true) protected FloatRange level; /** * Gets the value of the mode property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the mode property. * *

* For example, to add a new item, do as follows: * *

	 * getMode().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link WideDynamicMode } * * */ public List getMode() { if (mode == null) { mode = new ArrayList(); } return this.mode; } /** * Ruft den Wert der level-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setLevel(FloatRange value) { this.level = value; } } ================================================ FILE: src/org/onvif/ver10/schema/BacklightCompensationOptions20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r BacklightCompensationOptions20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BacklightCompensationOptions20", propOrder = { "mode", "level" }) public class BacklightCompensationOptions20 { @XmlElement(name = "Mode", required = true) protected List mode; @XmlElement(name = "Level") protected FloatRange level; /** * Gets the value of the mode property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the mode property. * *

* For example, to add a new item, do as follows: * *

	 * getMode().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link BacklightCompensationMode } * * */ public List getMode() { if (mode == null) { mode = new ArrayList(); } return this.mode; } /** * Ruft den Wert der level-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setLevel(FloatRange value) { this.level = value; } } ================================================ FILE: src/org/onvif/ver10/schema/BackupFile.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r BackupFile complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BackupFile", propOrder = { "name", "data" }) public class BackupFile { @XmlElement(name = "Name", required = true) protected String name; @XmlElement(name = "Data", required = true) protected AttachmentData data; /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der data-Eigenschaft ab. * * @return possible object is {@link AttachmentData } * */ public AttachmentData getData() { return data; } /** * Legt den Wert der data-Eigenschaft fest. * * @param value * allowed object is {@link AttachmentData } * */ public void setData(AttachmentData value) { this.data = value; } } ================================================ FILE: src/org/onvif/ver10/schema/Behaviour.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r Behaviour complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *               
 *             
 *           
 *         
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *               
 *             
 *           
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Behaviour", propOrder = { "removed", "idle", "extension" }) public class Behaviour { @XmlElement(name = "Removed") protected Behaviour.Removed removed; @XmlElement(name = "Idle") protected Behaviour.Idle idle; @XmlElement(name = "Extension") protected BehaviourExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der removed-Eigenschaft ab. * * @return possible object is {@link Behaviour.Removed } * */ public Behaviour.Removed getRemoved() { return removed; } /** * Legt den Wert der removed-Eigenschaft fest. * * @param value * allowed object is {@link Behaviour.Removed } * */ public void setRemoved(Behaviour.Removed value) { this.removed = value; } /** * Ruft den Wert der idle-Eigenschaft ab. * * @return possible object is {@link Behaviour.Idle } * */ public Behaviour.Idle getIdle() { return idle; } /** * Legt den Wert der idle-Eigenschaft fest. * * @param value * allowed object is {@link Behaviour.Idle } * */ public void setIdle(Behaviour.Idle value) { this.idle = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link BehaviourExtension } * */ public BehaviourExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link BehaviourExtension } * */ public void setExtension(BehaviourExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *         
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) public static class Idle { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB * object. This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

		 * getAny().add(newItem);
		 * 
* * *

* Objects of the following type(s) are allowed in the list {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *         
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) public static class Removed { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB * object. This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

		 * getAny().add(newItem);
		 * 
* * *

* Objects of the following type(s) are allowed in the list {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } } ================================================ FILE: src/org/onvif/ver10/schema/BehaviourExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r BehaviourExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BehaviourExtension", propOrder = { "any" }) public class BehaviourExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/BinaryData.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r BinaryData complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BinaryData", propOrder = { "data" }) public class BinaryData { @XmlElement(name = "Data", required = true) protected byte[] data; @XmlAttribute(name = "contentType", namespace = "http://www.w3.org/2005/05/xmlmime") protected String contentType; /** * Ruft den Wert der data-Eigenschaft ab. * * @return possible object is byte[] */ public byte[] getData() { return data; } /** * Legt den Wert der data-Eigenschaft fest. * * @param value * allowed object is byte[] */ public void setData(byte[] value) { this.data = value; } /** * Ruft den Wert der contentType-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getContentType() { return contentType; } /** * Legt den Wert der contentType-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setContentType(String value) { this.contentType = value; } } ================================================ FILE: src/org/onvif/ver10/schema/Capabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r Capabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Capabilities", propOrder = { "analytics", "device", "events", "imaging", "media", "ptz", "extension" }) public class Capabilities { @XmlElement(name = "Analytics") protected AnalyticsCapabilities analytics; @XmlElement(name = "Device") protected DeviceCapabilities device; @XmlElement(name = "Events") protected EventCapabilities events; @XmlElement(name = "Imaging") protected ImagingCapabilities imaging; @XmlElement(name = "Media") protected MediaCapabilities media; @XmlElement(name = "PTZ") protected PTZCapabilities ptz; @XmlElement(name = "Extension") protected CapabilitiesExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der analytics-Eigenschaft ab. * * @return possible object is {@link AnalyticsCapabilities } * */ public AnalyticsCapabilities getAnalytics() { return analytics; } /** * Legt den Wert der analytics-Eigenschaft fest. * * @param value * allowed object is {@link AnalyticsCapabilities } * */ public void setAnalytics(AnalyticsCapabilities value) { this.analytics = value; } /** * Ruft den Wert der device-Eigenschaft ab. * * @return possible object is {@link DeviceCapabilities } * */ public DeviceCapabilities getDevice() { return device; } /** * Legt den Wert der device-Eigenschaft fest. * * @param value * allowed object is {@link DeviceCapabilities } * */ public void setDevice(DeviceCapabilities value) { this.device = value; } /** * Ruft den Wert der events-Eigenschaft ab. * * @return possible object is {@link EventCapabilities } * */ public EventCapabilities getEvents() { return events; } /** * Legt den Wert der events-Eigenschaft fest. * * @param value * allowed object is {@link EventCapabilities } * */ public void setEvents(EventCapabilities value) { this.events = value; } /** * Ruft den Wert der imaging-Eigenschaft ab. * * @return possible object is {@link ImagingCapabilities } * */ public ImagingCapabilities getImaging() { return imaging; } /** * Legt den Wert der imaging-Eigenschaft fest. * * @param value * allowed object is {@link ImagingCapabilities } * */ public void setImaging(ImagingCapabilities value) { this.imaging = value; } /** * Ruft den Wert der media-Eigenschaft ab. * * @return possible object is {@link MediaCapabilities } * */ public MediaCapabilities getMedia() { return media; } /** * Legt den Wert der media-Eigenschaft fest. * * @param value * allowed object is {@link MediaCapabilities } * */ public void setMedia(MediaCapabilities value) { this.media = value; } /** * Ruft den Wert der ptz-Eigenschaft ab. * * @return possible object is {@link PTZCapabilities } * */ public PTZCapabilities getPTZ() { return ptz; } /** * Legt den Wert der ptz-Eigenschaft fest. * * @param value * allowed object is {@link PTZCapabilities } * */ public void setPTZ(PTZCapabilities value) { this.ptz = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link CapabilitiesExtension } * */ public CapabilitiesExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link CapabilitiesExtension } * */ public void setExtension(CapabilitiesExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/CapabilitiesExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r CapabilitiesExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CapabilitiesExtension", propOrder = { "any", "deviceIO", "display", "recording", "search", "replay", "receiver", "analyticsDevice", "extensions" }) public class CapabilitiesExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "DeviceIO") protected DeviceIOCapabilities deviceIO; @XmlElement(name = "Display") protected DisplayCapabilities display; @XmlElement(name = "Recording") protected RecordingCapabilities recording; @XmlElement(name = "Search") protected SearchCapabilities search; @XmlElement(name = "Replay") protected ReplayCapabilities replay; @XmlElement(name = "Receiver") protected ReceiverCapabilities receiver; @XmlElement(name = "AnalyticsDevice") protected AnalyticsDeviceCapabilities analyticsDevice; @XmlElement(name = "Extensions") protected CapabilitiesExtension2 extensions; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der deviceIO-Eigenschaft ab. * * @return possible object is {@link DeviceIOCapabilities } * */ public DeviceIOCapabilities getDeviceIO() { return deviceIO; } /** * Legt den Wert der deviceIO-Eigenschaft fest. * * @param value * allowed object is {@link DeviceIOCapabilities } * */ public void setDeviceIO(DeviceIOCapabilities value) { this.deviceIO = value; } /** * Ruft den Wert der display-Eigenschaft ab. * * @return possible object is {@link DisplayCapabilities } * */ public DisplayCapabilities getDisplay() { return display; } /** * Legt den Wert der display-Eigenschaft fest. * * @param value * allowed object is {@link DisplayCapabilities } * */ public void setDisplay(DisplayCapabilities value) { this.display = value; } /** * Ruft den Wert der recording-Eigenschaft ab. * * @return possible object is {@link RecordingCapabilities } * */ public RecordingCapabilities getRecording() { return recording; } /** * Legt den Wert der recording-Eigenschaft fest. * * @param value * allowed object is {@link RecordingCapabilities } * */ public void setRecording(RecordingCapabilities value) { this.recording = value; } /** * Ruft den Wert der search-Eigenschaft ab. * * @return possible object is {@link SearchCapabilities } * */ public SearchCapabilities getSearch() { return search; } /** * Legt den Wert der search-Eigenschaft fest. * * @param value * allowed object is {@link SearchCapabilities } * */ public void setSearch(SearchCapabilities value) { this.search = value; } /** * Ruft den Wert der replay-Eigenschaft ab. * * @return possible object is {@link ReplayCapabilities } * */ public ReplayCapabilities getReplay() { return replay; } /** * Legt den Wert der replay-Eigenschaft fest. * * @param value * allowed object is {@link ReplayCapabilities } * */ public void setReplay(ReplayCapabilities value) { this.replay = value; } /** * Ruft den Wert der receiver-Eigenschaft ab. * * @return possible object is {@link ReceiverCapabilities } * */ public ReceiverCapabilities getReceiver() { return receiver; } /** * Legt den Wert der receiver-Eigenschaft fest. * * @param value * allowed object is {@link ReceiverCapabilities } * */ public void setReceiver(ReceiverCapabilities value) { this.receiver = value; } /** * Ruft den Wert der analyticsDevice-Eigenschaft ab. * * @return possible object is {@link AnalyticsDeviceCapabilities } * */ public AnalyticsDeviceCapabilities getAnalyticsDevice() { return analyticsDevice; } /** * Legt den Wert der analyticsDevice-Eigenschaft fest. * * @param value * allowed object is {@link AnalyticsDeviceCapabilities } * */ public void setAnalyticsDevice(AnalyticsDeviceCapabilities value) { this.analyticsDevice = value; } /** * Ruft den Wert der extensions-Eigenschaft ab. * * @return possible object is {@link CapabilitiesExtension2 } * */ public CapabilitiesExtension2 getExtensions() { return extensions; } /** * Legt den Wert der extensions-Eigenschaft fest. * * @param value * allowed object is {@link CapabilitiesExtension2 } * */ public void setExtensions(CapabilitiesExtension2 value) { this.extensions = value; } } ================================================ FILE: src/org/onvif/ver10/schema/CapabilitiesExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r CapabilitiesExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CapabilitiesExtension2", propOrder = { "any" }) public class CapabilitiesExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/CapabilityCategory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r CapabilityCategory. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "CapabilityCategory") @XmlEnum public enum CapabilityCategory { @XmlEnumValue("All") ALL("All"), @XmlEnumValue("Analytics") ANALYTICS("Analytics"), @XmlEnumValue("Device") DEVICE("Device"), @XmlEnumValue("Events") EVENTS("Events"), @XmlEnumValue("Imaging") IMAGING("Imaging"), @XmlEnumValue("Media") MEDIA("Media"), PTZ("PTZ"); private final String value; CapabilityCategory(String v) { value = v; } public String value() { return value; } public static CapabilityCategory fromValue(String v) { for (CapabilityCategory c : CapabilityCategory.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/CellLayout.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.math.BigInteger; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r CellLayout complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CellLayout", propOrder = { "transformation", "any" }) public class CellLayout { @XmlElement(name = "Transformation", required = true) protected Transformation transformation; @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "Columns", required = true) protected BigInteger columns; @XmlAttribute(name = "Rows", required = true) protected BigInteger rows; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der transformation-Eigenschaft ab. * * @return possible object is {@link Transformation } * */ public Transformation getTransformation() { return transformation; } /** * Legt den Wert der transformation-Eigenschaft fest. * * @param value * allowed object is {@link Transformation } * */ public void setTransformation(Transformation value) { this.transformation = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der columns-Eigenschaft ab. * * @return possible object is {@link BigInteger } * */ public BigInteger getColumns() { return columns; } /** * Legt den Wert der columns-Eigenschaft fest. * * @param value * allowed object is {@link BigInteger } * */ public void setColumns(BigInteger value) { this.columns = value; } /** * Ruft den Wert der rows-Eigenschaft ab. * * @return possible object is {@link BigInteger } * */ public BigInteger getRows() { return rows; } /** * Legt den Wert der rows-Eigenschaft fest. * * @param value * allowed object is {@link BigInteger } * */ public void setRows(BigInteger value) { this.rows = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Certificate.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

* Java-Klasse f�r Certificate complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Certificate", propOrder = { "certificateID", "certificate" }) public class Certificate { @XmlElement(name = "CertificateID", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String certificateID; @XmlElement(name = "Certificate", required = true) protected BinaryData certificate; /** * Ruft den Wert der certificateID-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getCertificateID() { return certificateID; } /** * Legt den Wert der certificateID-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setCertificateID(String value) { this.certificateID = value; } /** * Ruft den Wert der certificate-Eigenschaft ab. * * @return possible object is {@link BinaryData } * */ public BinaryData getCertificate() { return certificate; } /** * Legt den Wert der certificate-Eigenschaft fest. * * @param value * allowed object is {@link BinaryData } * */ public void setCertificate(BinaryData value) { this.certificate = value; } } ================================================ FILE: src/org/onvif/ver10/schema/CertificateGenerationParameters.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r CertificateGenerationParameters complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CertificateGenerationParameters", propOrder = { "certificateID", "subject", "validNotBefore", "validNotAfter", "extension" }) public class CertificateGenerationParameters { @XmlElement(name = "CertificateID") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String certificateID; @XmlElement(name = "Subject") protected String subject; @XmlElement(name = "ValidNotBefore") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String validNotBefore; @XmlElement(name = "ValidNotAfter") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String validNotAfter; @XmlElement(name = "Extension") protected CertificateGenerationParametersExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der certificateID-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getCertificateID() { return certificateID; } /** * Legt den Wert der certificateID-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setCertificateID(String value) { this.certificateID = value; } /** * Ruft den Wert der subject-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSubject() { return subject; } /** * Legt den Wert der subject-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSubject(String value) { this.subject = value; } /** * Ruft den Wert der validNotBefore-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getValidNotBefore() { return validNotBefore; } /** * Legt den Wert der validNotBefore-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setValidNotBefore(String value) { this.validNotBefore = value; } /** * Ruft den Wert der validNotAfter-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getValidNotAfter() { return validNotAfter; } /** * Legt den Wert der validNotAfter-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setValidNotAfter(String value) { this.validNotAfter = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link CertificateGenerationParametersExtension } * */ public CertificateGenerationParametersExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link CertificateGenerationParametersExtension } * */ public void setExtension(CertificateGenerationParametersExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/CertificateGenerationParametersExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r CertificateGenerationParametersExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CertificateGenerationParametersExtension", propOrder = { "any" }) public class CertificateGenerationParametersExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/CertificateInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r CertificateInformation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CertificateInformation", propOrder = { "certificateID", "issuerDN", "subjectDN", "keyUsage", "extendedKeyUsage", "keyLength", "version", "serialNum", "signatureAlgorithm", "validity", "extension" }) public class CertificateInformation { @XmlElement(name = "CertificateID", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String certificateID; @XmlElement(name = "IssuerDN") protected String issuerDN; @XmlElement(name = "SubjectDN") protected String subjectDN; @XmlElement(name = "KeyUsage") protected CertificateUsage keyUsage; @XmlElement(name = "ExtendedKeyUsage") protected CertificateUsage extendedKeyUsage; @XmlElement(name = "KeyLength") protected Integer keyLength; @XmlElement(name = "Version") protected String version; @XmlElement(name = "SerialNum") protected String serialNum; @XmlElement(name = "SignatureAlgorithm") protected String signatureAlgorithm; @XmlElement(name = "Validity") protected DateTimeRange validity; @XmlElement(name = "Extension") protected CertificateInformationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der certificateID-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getCertificateID() { return certificateID; } /** * Legt den Wert der certificateID-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setCertificateID(String value) { this.certificateID = value; } /** * Ruft den Wert der issuerDN-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getIssuerDN() { return issuerDN; } /** * Legt den Wert der issuerDN-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setIssuerDN(String value) { this.issuerDN = value; } /** * Ruft den Wert der subjectDN-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSubjectDN() { return subjectDN; } /** * Legt den Wert der subjectDN-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSubjectDN(String value) { this.subjectDN = value; } /** * Ruft den Wert der keyUsage-Eigenschaft ab. * * @return possible object is {@link CertificateUsage } * */ public CertificateUsage getKeyUsage() { return keyUsage; } /** * Legt den Wert der keyUsage-Eigenschaft fest. * * @param value * allowed object is {@link CertificateUsage } * */ public void setKeyUsage(CertificateUsage value) { this.keyUsage = value; } /** * Ruft den Wert der extendedKeyUsage-Eigenschaft ab. * * @return possible object is {@link CertificateUsage } * */ public CertificateUsage getExtendedKeyUsage() { return extendedKeyUsage; } /** * Legt den Wert der extendedKeyUsage-Eigenschaft fest. * * @param value * allowed object is {@link CertificateUsage } * */ public void setExtendedKeyUsage(CertificateUsage value) { this.extendedKeyUsage = value; } /** * Ruft den Wert der keyLength-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getKeyLength() { return keyLength; } /** * Legt den Wert der keyLength-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setKeyLength(Integer value) { this.keyLength = value; } /** * Ruft den Wert der version-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getVersion() { return version; } /** * Legt den Wert der version-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Ruft den Wert der serialNum-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSerialNum() { return serialNum; } /** * Legt den Wert der serialNum-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSerialNum(String value) { this.serialNum = value; } /** * Ruft den Wert der signatureAlgorithm-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSignatureAlgorithm() { return signatureAlgorithm; } /** * Legt den Wert der signatureAlgorithm-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSignatureAlgorithm(String value) { this.signatureAlgorithm = value; } /** * Ruft den Wert der validity-Eigenschaft ab. * * @return possible object is {@link DateTimeRange } * */ public DateTimeRange getValidity() { return validity; } /** * Legt den Wert der validity-Eigenschaft fest. * * @param value * allowed object is {@link DateTimeRange } * */ public void setValidity(DateTimeRange value) { this.validity = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link CertificateInformationExtension } * */ public CertificateInformationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link CertificateInformationExtension } * */ public void setExtension(CertificateInformationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/CertificateInformationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r CertificateInformationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CertificateInformationExtension", propOrder = { "any" }) public class CertificateInformationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/CertificateStatus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r CertificateStatus complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CertificateStatus", propOrder = { "certificateID", "status", "any" }) public class CertificateStatus { @XmlElement(name = "CertificateID", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String certificateID; @XmlElement(name = "Status") protected boolean status; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der certificateID-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getCertificateID() { return certificateID; } /** * Legt den Wert der certificateID-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setCertificateID(String value) { this.certificateID = value; } /** * Ruft den Wert der status-Eigenschaft ab. * */ public boolean isStatus() { return status; } /** * Legt den Wert der status-Eigenschaft fest. * */ public void setStatus(boolean value) { this.status = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/CertificateUsage.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** *

* Java-Klasse f�r CertificateUsage complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CertificateUsage", propOrder = { "value" }) public class CertificateUsage { @XmlValue protected String value; @XmlAttribute(name = "Critical", required = true) protected boolean critical; /** * Ruft den Wert der value-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getValue() { return value; } /** * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setValue(String value) { this.value = value; } /** * Ruft den Wert der critical-Eigenschaft ab. * */ public boolean isCritical() { return critical; } /** * Legt den Wert der critical-Eigenschaft fest. * */ public void setCritical(boolean value) { this.critical = value; } } ================================================ FILE: src/org/onvif/ver10/schema/CertificateWithPrivateKey.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r CertificateWithPrivateKey complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CertificateWithPrivateKey", propOrder = { "certificateID", "certificate", "privateKey", "any" }) public class CertificateWithPrivateKey { @XmlElement(name = "CertificateID") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String certificateID; @XmlElement(name = "Certificate", required = true) protected BinaryData certificate; @XmlElement(name = "PrivateKey", required = true) protected BinaryData privateKey; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der certificateID-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getCertificateID() { return certificateID; } /** * Legt den Wert der certificateID-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setCertificateID(String value) { this.certificateID = value; } /** * Ruft den Wert der certificate-Eigenschaft ab. * * @return possible object is {@link BinaryData } * */ public BinaryData getCertificate() { return certificate; } /** * Legt den Wert der certificate-Eigenschaft fest. * * @param value * allowed object is {@link BinaryData } * */ public void setCertificate(BinaryData value) { this.certificate = value; } /** * Ruft den Wert der privateKey-Eigenschaft ab. * * @return possible object is {@link BinaryData } * */ public BinaryData getPrivateKey() { return privateKey; } /** * Legt den Wert der privateKey-Eigenschaft fest. * * @param value * allowed object is {@link BinaryData } * */ public void setPrivateKey(BinaryData value) { this.privateKey = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ClassDescriptor.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ClassDescriptor complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                   
 *                 
 *               
 *             
 *           
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClassDescriptor", propOrder = { "classCandidate", "extension" }) public class ClassDescriptor { @XmlElement(name = "ClassCandidate") protected List classCandidate; @XmlElement(name = "Extension") protected ClassDescriptorExtension extension; /** * Gets the value of the classCandidate property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the classCandidate property. * *

* For example, to add a new item, do as follows: * *

	 * getClassCandidate().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ClassDescriptor.ClassCandidate } * * */ public List getClassCandidate() { if (classCandidate == null) { classCandidate = new ArrayList(); } return this.classCandidate; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ClassDescriptorExtension } * */ public ClassDescriptorExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ClassDescriptorExtension } * */ public void setExtension(ClassDescriptorExtension value) { this.extension = value; } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *         
	 *         
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "type", "likelihood" }) public static class ClassCandidate { @XmlElement(name = "Type", required = true) protected ClassType type; @XmlElement(name = "Likelihood") protected float likelihood; /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link ClassType } * */ public ClassType getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link ClassType } * */ public void setType(ClassType value) { this.type = value; } /** * Ruft den Wert der likelihood-Eigenschaft ab. * */ public float getLikelihood() { return likelihood; } /** * Legt den Wert der likelihood-Eigenschaft fest. * */ public void setLikelihood(float value) { this.likelihood = value; } } } ================================================ FILE: src/org/onvif/ver10/schema/ClassDescriptorExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ClassDescriptorExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClassDescriptorExtension", propOrder = { "any", "otherTypes", "extension" }) public class ClassDescriptorExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "OtherTypes", required = true) protected List otherTypes; @XmlElement(name = "Extension") protected ClassDescriptorExtension2 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets the value of the otherTypes property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the otherTypes property. * *

* For example, to add a new item, do as follows: * *

	 * getOtherTypes().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link OtherType } * * */ public List getOtherTypes() { if (otherTypes == null) { otherTypes = new ArrayList(); } return this.otherTypes; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ClassDescriptorExtension2 } * */ public ClassDescriptorExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ClassDescriptorExtension2 } * */ public void setExtension(ClassDescriptorExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ClassDescriptorExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ClassDescriptorExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClassDescriptorExtension2", propOrder = { "any" }) public class ClassDescriptorExtension2 { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ClassType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ClassType. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "ClassType") @XmlEnum public enum ClassType { @XmlEnumValue("Animal") ANIMAL("Animal"), @XmlEnumValue("Face") FACE("Face"), @XmlEnumValue("Human") HUMAN("Human"), @XmlEnumValue("Vehical") VEHICAL("Vehical"), @XmlEnumValue("Other") OTHER("Other"); private final String value; ClassType(String v) { value = v; } public String value() { return value; } public static ClassType fromValue(String v) { for (ClassType c : ClassType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/CodingCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** * This type contains the Audio and Video coding capabilities of a display service. * *

* Java-Klasse f�r CodingCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CodingCapabilities", propOrder = { "audioEncodingCapabilities", "audioDecodingCapabilities", "videoDecodingCapabilities", "any" }) public class CodingCapabilities { @XmlElement(name = "AudioEncodingCapabilities") protected AudioEncoderConfigurationOptions audioEncodingCapabilities; @XmlElement(name = "AudioDecodingCapabilities") protected AudioDecoderConfigurationOptions audioDecodingCapabilities; @XmlElement(name = "VideoDecodingCapabilities", required = true) protected VideoDecoderConfigurationOptions videoDecodingCapabilities; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der audioEncodingCapabilities-Eigenschaft ab. * * @return possible object is {@link AudioEncoderConfigurationOptions } * */ public AudioEncoderConfigurationOptions getAudioEncodingCapabilities() { return audioEncodingCapabilities; } /** * Legt den Wert der audioEncodingCapabilities-Eigenschaft fest. * * @param value * allowed object is {@link AudioEncoderConfigurationOptions } * */ public void setAudioEncodingCapabilities(AudioEncoderConfigurationOptions value) { this.audioEncodingCapabilities = value; } /** * Ruft den Wert der audioDecodingCapabilities-Eigenschaft ab. * * @return possible object is {@link AudioDecoderConfigurationOptions } * */ public AudioDecoderConfigurationOptions getAudioDecodingCapabilities() { return audioDecodingCapabilities; } /** * Legt den Wert der audioDecodingCapabilities-Eigenschaft fest. * * @param value * allowed object is {@link AudioDecoderConfigurationOptions } * */ public void setAudioDecodingCapabilities(AudioDecoderConfigurationOptions value) { this.audioDecodingCapabilities = value; } /** * Ruft den Wert der videoDecodingCapabilities-Eigenschaft ab. * * @return possible object is {@link VideoDecoderConfigurationOptions } * */ public VideoDecoderConfigurationOptions getVideoDecodingCapabilities() { return videoDecodingCapabilities; } /** * Legt den Wert der videoDecodingCapabilities-Eigenschaft fest. * * @param value * allowed object is {@link VideoDecoderConfigurationOptions } * */ public void setVideoDecodingCapabilities(VideoDecoderConfigurationOptions value) { this.videoDecodingCapabilities = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Color.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Color complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Color") public class Color { @XmlAttribute(name = "X", required = true) protected float x; @XmlAttribute(name = "Y", required = true) protected float y; @XmlAttribute(name = "Z", required = true) protected float z; @XmlAttribute(name = "Colorspace") @XmlSchemaType(name = "anyURI") protected String colorspace; /** * Ruft den Wert der x-Eigenschaft ab. * */ public float getX() { return x; } /** * Legt den Wert der x-Eigenschaft fest. * */ public void setX(float value) { this.x = value; } /** * Ruft den Wert der y-Eigenschaft ab. * */ public float getY() { return y; } /** * Legt den Wert der y-Eigenschaft fest. * */ public void setY(float value) { this.y = value; } /** * Ruft den Wert der z-Eigenschaft ab. * */ public float getZ() { return z; } /** * Legt den Wert der z-Eigenschaft fest. * */ public void setZ(float value) { this.z = value; } /** * Ruft den Wert der colorspace-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getColorspace() { return colorspace; } /** * Legt den Wert der colorspace-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setColorspace(String value) { this.colorspace = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ColorCovariance.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ColorCovariance complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ColorCovariance") public class ColorCovariance { @XmlAttribute(name = "XX", required = true) protected float xx; @XmlAttribute(name = "YY", required = true) protected float yy; @XmlAttribute(name = "ZZ", required = true) protected float zz; @XmlAttribute(name = "XY") protected Float xy; @XmlAttribute(name = "XZ") protected Float xz; @XmlAttribute(name = "YZ") protected Float yz; @XmlAttribute(name = "Colorspace") @XmlSchemaType(name = "anyURI") protected String colorspace; /** * Ruft den Wert der xx-Eigenschaft ab. * */ public float getXX() { return xx; } /** * Legt den Wert der xx-Eigenschaft fest. * */ public void setXX(float value) { this.xx = value; } /** * Ruft den Wert der yy-Eigenschaft ab. * */ public float getYY() { return yy; } /** * Legt den Wert der yy-Eigenschaft fest. * */ public void setYY(float value) { this.yy = value; } /** * Ruft den Wert der zz-Eigenschaft ab. * */ public float getZZ() { return zz; } /** * Legt den Wert der zz-Eigenschaft fest. * */ public void setZZ(float value) { this.zz = value; } /** * Ruft den Wert der xy-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getXY() { return xy; } /** * Legt den Wert der xy-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setXY(Float value) { this.xy = value; } /** * Ruft den Wert der xz-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getXZ() { return xz; } /** * Legt den Wert der xz-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setXZ(Float value) { this.xz = value; } /** * Ruft den Wert der yz-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getYZ() { return yz; } /** * Legt den Wert der yz-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setYZ(Float value) { this.yz = value; } /** * Ruft den Wert der colorspace-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getColorspace() { return colorspace; } /** * Legt den Wert der colorspace-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setColorspace(String value) { this.colorspace = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ColorDescriptor.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r ColorDescriptor complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                   
 *                   
 *                 
 *               
 *             
 *           
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ColorDescriptor", propOrder = { "colorCluster", "extension" }) public class ColorDescriptor { @XmlElement(name = "ColorCluster") protected List colorCluster; @XmlElement(name = "Extension") protected ColorDescriptorExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the colorCluster property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the colorCluster property. * *

* For example, to add a new item, do as follows: * *

	 * getColorCluster().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ColorDescriptor.ColorCluster } * * */ public List getColorCluster() { if (colorCluster == null) { colorCluster = new ArrayList(); } return this.colorCluster; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ColorDescriptorExtension } * */ public ColorDescriptorExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ColorDescriptorExtension } * */ public void setExtension(ColorDescriptorExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *         
	 *         
	 *         
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "color", "weight", "covariance" }) public static class ColorCluster { @XmlElement(name = "Color", required = true) protected Color color; @XmlElement(name = "Weight") protected Float weight; @XmlElement(name = "Covariance") protected ColorCovariance covariance; /** * Ruft den Wert der color-Eigenschaft ab. * * @return possible object is {@link Color } * */ public Color getColor() { return color; } /** * Legt den Wert der color-Eigenschaft fest. * * @param value * allowed object is {@link Color } * */ public void setColor(Color value) { this.color = value; } /** * Ruft den Wert der weight-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getWeight() { return weight; } /** * Legt den Wert der weight-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setWeight(Float value) { this.weight = value; } /** * Ruft den Wert der covariance-Eigenschaft ab. * * @return possible object is {@link ColorCovariance } * */ public ColorCovariance getCovariance() { return covariance; } /** * Legt den Wert der covariance-Eigenschaft fest. * * @param value * allowed object is {@link ColorCovariance } * */ public void setCovariance(ColorCovariance value) { this.covariance = value; } } } ================================================ FILE: src/org/onvif/ver10/schema/ColorDescriptorExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ColorDescriptorExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ColorDescriptorExtension", propOrder = { "any" }) public class ColorDescriptorExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/ColorOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * Describe the option of the color supported. Either list each color or define the range of color value. The following values are acceptable for Colourspace attribute. * *

 * 
 * 
 * 
 * 

* Java-Klasse f�r ColorOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *           
 *           
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ColorOptions", propOrder = { "colorList", "colorspaceRange" }) public class ColorOptions { @XmlElement(name = "ColorList") protected List colorList; @XmlElement(name = "ColorspaceRange") protected List colorspaceRange; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the colorList property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the colorList property. * *

* For example, to add a new item, do as follows: * *

	 * getColorList().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Color } * * */ public List getColorList() { if (colorList == null) { colorList = new ArrayList(); } return this.colorList; } /** * Gets the value of the colorspaceRange property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the colorspaceRange property. * *

* For example, to add a new item, do as follows: * *

	 * getColorspaceRange().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ColorspaceRange } * * */ public List getColorspaceRange() { if (colorspaceRange == null) { colorspaceRange = new ArrayList(); } return this.colorspaceRange; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ColorspaceRange.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r ColorspaceRange complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ColorspaceRange", propOrder = { "x", "y", "z", "colorspace" }) public class ColorspaceRange { @XmlElement(name = "X", required = true) protected FloatRange x; @XmlElement(name = "Y", required = true) protected FloatRange y; @XmlElement(name = "Z", required = true) protected FloatRange z; @XmlElement(name = "Colorspace", required = true) @XmlSchemaType(name = "anyURI") protected String colorspace; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der x-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getX() { return x; } /** * Legt den Wert der x-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setX(FloatRange value) { this.x = value; } /** * Ruft den Wert der y-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getY() { return y; } /** * Legt den Wert der y-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setY(FloatRange value) { this.y = value; } /** * Ruft den Wert der z-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getZ() { return z; } /** * Legt den Wert der z-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setZ(FloatRange value) { this.z = value; } /** * Ruft den Wert der colorspace-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getColorspace() { return colorspace; } /** * Legt den Wert der colorspace-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setColorspace(String value) { this.colorspace = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Config.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r Config complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Config", propOrder = { "parameters" }) public class Config { @XmlElement(name = "Parameters", required = true) protected ItemList parameters; @XmlAttribute(name = "Name", required = true) protected String name; @XmlAttribute(name = "Type", required = true) protected QName type; /** * Ruft den Wert der parameters-Eigenschaft ab. * * @return possible object is {@link ItemList } * */ public ItemList getParameters() { return parameters; } /** * Legt den Wert der parameters-Eigenschaft fest. * * @param value * allowed object is {@link ItemList } * */ public void setParameters(ItemList value) { this.parameters = value; } /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link QName } * */ public QName getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link QName } * */ public void setType(QName value) { this.type = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ConfigDescription.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r ConfigDescription complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *                 
 *               
 *             
 *           
 *         
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConfigDescription", propOrder = { "parameters", "messages", "extension" }) public class ConfigDescription { @XmlElement(name = "Parameters", required = true) protected ItemListDescription parameters; @XmlElement(name = "Messages") protected List messages; @XmlElement(name = "Extension") protected ConfigDescriptionExtension extension; @XmlAttribute(name = "Name", required = true) protected QName name; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der parameters-Eigenschaft ab. * * @return possible object is {@link ItemListDescription } * */ public ItemListDescription getParameters() { return parameters; } /** * Legt den Wert der parameters-Eigenschaft fest. * * @param value * allowed object is {@link ItemListDescription } * */ public void setParameters(ItemListDescription value) { this.parameters = value; } /** * Gets the value of the messages property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the messages property. * *

* For example, to add a new item, do as follows: * *

	 * getMessages().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ConfigDescription.Messages } * * */ public List getMessages() { if (messages == null) { messages = new ArrayList(); } return this.messages; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ConfigDescriptionExtension } * */ public ConfigDescriptionExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ConfigDescriptionExtension } * */ public void setExtension(ConfigDescriptionExtension value) { this.extension = value; } /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link QName } * */ public QName getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link QName } * */ public void setName(QName value) { this.name = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *         
	 *       
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "parentTopic" }) public static class Messages extends MessageDescription { @XmlElement(name = "ParentTopic", required = true) protected String parentTopic; /** * Ruft den Wert der parentTopic-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getParentTopic() { return parentTopic; } /** * Legt den Wert der parentTopic-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setParentTopic(String value) { this.parentTopic = value; } } } ================================================ FILE: src/org/onvif/ver10/schema/ConfigDescriptionExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ConfigDescriptionExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConfigDescriptionExtension", propOrder = { "any" }) public class ConfigDescriptionExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/ConfigurationEntity.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * Base type defining the common properties of a configuration. * *

* Java-Klasse f�r ConfigurationEntity complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConfigurationEntity", propOrder = { "name", "useCount" }) @XmlSeeAlso({ AudioSourceConfiguration.class, PTZConfiguration.class, VideoSourceConfiguration.class, AudioEncoderConfiguration.class, VideoEncoderConfiguration.class, AudioDecoderConfiguration.class, VideoAnalyticsConfiguration.class, AudioOutputConfiguration.class, MetadataConfiguration.class, AnalyticsEngineInput.class, AnalyticsEngineControl.class, AnalyticsEngine.class, VideoOutputConfiguration.class }) public class ConfigurationEntity { @XmlElement(name = "Name", required = true) protected String name; @XmlElement(name = "UseCount") protected int useCount; @XmlAttribute(name = "token", required = true) protected String token; /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der useCount-Eigenschaft ab. * */ public int getUseCount() { return useCount; } /** * Legt den Wert der useCount-Eigenschaft fest. * */ public void setUseCount(int value) { this.useCount = value; } /** * Ruft den Wert der token-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setToken(String value) { this.token = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ContinuousFocus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ContinuousFocus complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ContinuousFocus", propOrder = { "speed" }) public class ContinuousFocus { @XmlElement(name = "Speed") protected float speed; /** * Ruft den Wert der speed-Eigenschaft ab. * */ public float getSpeed() { return speed; } /** * Legt den Wert der speed-Eigenschaft fest. * */ public void setSpeed(float value) { this.speed = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ContinuousFocusOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ContinuousFocusOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ContinuousFocusOptions", propOrder = { "speed" }) public class ContinuousFocusOptions { @XmlElement(name = "Speed", required = true) protected FloatRange speed; /** * Ruft den Wert der speed-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getSpeed() { return speed; } /** * Legt den Wert der speed-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setSpeed(FloatRange value) { this.speed = value; } } ================================================ FILE: src/org/onvif/ver10/schema/DNSInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r DNSInformation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DNSInformation", propOrder = { "fromDHCP", "searchDomain", "dnsFromDHCP", "dnsManual", "extension" }) public class DNSInformation { @XmlElement(name = "FromDHCP") protected boolean fromDHCP; @XmlElement(name = "SearchDomain") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected List searchDomain; @XmlElement(name = "DNSFromDHCP") protected List dnsFromDHCP; @XmlElement(name = "DNSManual") protected List dnsManual; @XmlElement(name = "Extension") protected DNSInformationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der fromDHCP-Eigenschaft ab. * */ public boolean isFromDHCP() { return fromDHCP; } /** * Legt den Wert der fromDHCP-Eigenschaft fest. * */ public void setFromDHCP(boolean value) { this.fromDHCP = value; } /** * Gets the value of the searchDomain property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the searchDomain property. * *

* For example, to add a new item, do as follows: * *

	 * getSearchDomain().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getSearchDomain() { if (searchDomain == null) { searchDomain = new ArrayList(); } return this.searchDomain; } /** * Gets the value of the dnsFromDHCP property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the dnsFromDHCP property. * *

* For example, to add a new item, do as follows: * *

	 * getDNSFromDHCP().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link IPAddress } * * */ public List getDNSFromDHCP() { if (dnsFromDHCP == null) { dnsFromDHCP = new ArrayList(); } return this.dnsFromDHCP; } /** * Gets the value of the dnsManual property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the dnsManual property. * *

* For example, to add a new item, do as follows: * *

	 * getDNSManual().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link IPAddress } * * */ public List getDNSManual() { if (dnsManual == null) { dnsManual = new ArrayList(); } return this.dnsManual; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link DNSInformationExtension } * */ public DNSInformationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link DNSInformationExtension } * */ public void setExtension(DNSInformationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/DNSInformationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r DNSInformationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DNSInformationExtension", propOrder = { "any" }) public class DNSInformationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/Date.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Date complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Date", propOrder = { "year", "month", "day" }) public class Date { @XmlElement(name = "Year") protected int year; @XmlElement(name = "Month") protected int month; @XmlElement(name = "Day") protected int day; /** * Ruft den Wert der year-Eigenschaft ab. * */ public int getYear() { return year; } /** * Legt den Wert der year-Eigenschaft fest. * */ public void setYear(int value) { this.year = value; } /** * Ruft den Wert der month-Eigenschaft ab. * */ public int getMonth() { return month; } /** * Legt den Wert der month-Eigenschaft fest. * */ public void setMonth(int value) { this.month = value; } /** * Ruft den Wert der day-Eigenschaft ab. * */ public int getDay() { return day; } /** * Legt den Wert der day-Eigenschaft fest. * */ public void setDay(int value) { this.day = value; } } ================================================ FILE: src/org/onvif/ver10/schema/DateTime.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r DateTime complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DateTime", propOrder = { "time", "date" }) public class DateTime { @XmlElement(name = "Time", required = true) protected Time time; @XmlElement(name = "Date", required = true) protected Date date; /** * Ruft den Wert der time-Eigenschaft ab. * * @return possible object is {@link Time } * */ public Time getTime() { return time; } /** * Legt den Wert der time-Eigenschaft fest. * * @param value * allowed object is {@link Time } * */ public void setTime(Time value) { this.time = value; } /** * Ruft den Wert der date-Eigenschaft ab. * * @return possible object is {@link Date } * */ public Date getDate() { return date; } /** * Legt den Wert der date-Eigenschaft fest. * * @param value * allowed object is {@link Date } * */ public void setDate(Date value) { this.date = value; } } ================================================ FILE: src/org/onvif/ver10/schema/DateTimeRange.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r DateTimeRange complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DateTimeRange", propOrder = { "from", "until", "any" }) public class DateTimeRange { @XmlElement(name = "From", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar from; @XmlElement(name = "Until", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar until; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der from-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getFrom() { return from; } /** * Legt den Wert der from-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setFrom(XMLGregorianCalendar value) { this.from = value; } /** * Ruft den Wert der until-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getUntil() { return until; } /** * Legt den Wert der until-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setUntil(XMLGregorianCalendar value) { this.until = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Defogging.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

Java-Klasse fr Defogging complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="Defogging">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Mode" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Level" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
 *         <element name="Extension" type="{http://www.onvif.org/ver10/schema}DefoggingExtension" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Defogging", propOrder = { "mode", "level", "extension" }) public class Defogging { @XmlElement(name = "Mode", required = true) protected String mode; @XmlElement(name = "Level") protected Float level; @XmlElement(name = "Extension") protected DefoggingExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der mode-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setMode(String value) { this.mode = value; } /** * Ruft den Wert der level-Eigenschaft ab. * * @return * possible object is * {@link Float } * */ public Float getLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * * @param value * allowed object is * {@link Float } * */ public void setLevel(Float value) { this.level = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return * possible object is * {@link DefoggingExtension } * */ public DefoggingExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is * {@link DefoggingExtension } * */ public void setExtension(DefoggingExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/DefoggingExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

Java-Klasse fr DefoggingExtension complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="DefoggingExtension">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DefoggingExtension", propOrder = { "any" }) public class DefoggingExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/DefoggingMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr DefoggingMode. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

*

 * <simpleType name="DefoggingMode">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="OFF"/>
 *     <enumeration value="ON"/>
 *     <enumeration value="AUTO"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "DefoggingMode") @XmlEnum public enum DefoggingMode { OFF, ON, AUTO; public String value() { return name(); } public static DefoggingMode fromValue(String v) { return valueOf(v); } } ================================================ FILE: src/org/onvif/ver10/schema/DefoggingOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr DefoggingOptions complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="DefoggingOptions">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Mode" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
 *         <element name="Level" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DefoggingOptions", propOrder = { "mode", "level", "any" }) public class DefoggingOptions { @XmlElement(name = "Mode", required = true) protected List mode; @XmlElement(name = "Level") protected boolean level; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the mode property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the mode property. * *

* For example, to add a new item, do as follows: *

     *    getMode().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getMode() { if (mode == null) { mode = new ArrayList(); } return this.mode; } /** * Ruft den Wert der level-Eigenschaft ab. * */ public boolean isLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * */ public void setLevel(boolean value) { this.level = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/DeviceCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r DeviceCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeviceCapabilities", propOrder = { "xAddr", "network", "system", "io", "security", "extension" }) public class DeviceCapabilities { @XmlElement(name = "XAddr", required = true) @XmlSchemaType(name = "anyURI") protected String xAddr; @XmlElement(name = "Network") protected NetworkCapabilities network; @XmlElement(name = "System") protected SystemCapabilities system; @XmlElement(name = "IO") protected IOCapabilities io; @XmlElement(name = "Security") protected SecurityCapabilities security; @XmlElement(name = "Extension") protected DeviceCapabilitiesExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der xAddr-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getXAddr() { return xAddr; } /** * Legt den Wert der xAddr-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setXAddr(String value) { this.xAddr = value; } /** * Ruft den Wert der network-Eigenschaft ab. * * @return possible object is {@link NetworkCapabilities } * */ public NetworkCapabilities getNetwork() { return network; } /** * Legt den Wert der network-Eigenschaft fest. * * @param value * allowed object is {@link NetworkCapabilities } * */ public void setNetwork(NetworkCapabilities value) { this.network = value; } /** * Ruft den Wert der system-Eigenschaft ab. * * @return possible object is {@link SystemCapabilities } * */ public SystemCapabilities getSystem() { return system; } /** * Legt den Wert der system-Eigenschaft fest. * * @param value * allowed object is {@link SystemCapabilities } * */ public void setSystem(SystemCapabilities value) { this.system = value; } /** * Ruft den Wert der io-Eigenschaft ab. * * @return possible object is {@link IOCapabilities } * */ public IOCapabilities getIO() { return io; } /** * Legt den Wert der io-Eigenschaft fest. * * @param value * allowed object is {@link IOCapabilities } * */ public void setIO(IOCapabilities value) { this.io = value; } /** * Ruft den Wert der security-Eigenschaft ab. * * @return possible object is {@link SecurityCapabilities } * */ public SecurityCapabilities getSecurity() { return security; } /** * Legt den Wert der security-Eigenschaft fest. * * @param value * allowed object is {@link SecurityCapabilities } * */ public void setSecurity(SecurityCapabilities value) { this.security = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link DeviceCapabilitiesExtension } * */ public DeviceCapabilitiesExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link DeviceCapabilitiesExtension } * */ public void setExtension(DeviceCapabilitiesExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/DeviceCapabilitiesExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r DeviceCapabilitiesExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeviceCapabilitiesExtension", propOrder = { "any" }) public class DeviceCapabilitiesExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/DeviceEntity.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * Base class for physical entities like inputs and outputs. * *

* Java-Klasse f�r DeviceEntity complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeviceEntity") @XmlSeeAlso({ RelayOutput.class, NetworkInterface.class, VideoOutput.class, AudioSource.class, OSDConfiguration.class, AudioOutput.class, VideoSource.class, DigitalInput.class, PTZNode.class }) public class DeviceEntity { @XmlAttribute(name = "token", required = true) protected String token; /** * Ruft den Wert der token-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setToken(String value) { this.token = value; } } ================================================ FILE: src/org/onvif/ver10/schema/DeviceIOCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r DeviceIOCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeviceIOCapabilities", propOrder = { "xAddr", "videoSources", "videoOutputs", "audioSources", "audioOutputs", "relayOutputs", "any" }) public class DeviceIOCapabilities { @XmlElement(name = "XAddr", required = true) @XmlSchemaType(name = "anyURI") protected String xAddr; @XmlElement(name = "VideoSources") protected int videoSources; @XmlElement(name = "VideoOutputs") protected int videoOutputs; @XmlElement(name = "AudioSources") protected int audioSources; @XmlElement(name = "AudioOutputs") protected int audioOutputs; @XmlElement(name = "RelayOutputs") protected int relayOutputs; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der xAddr-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getXAddr() { return xAddr; } /** * Legt den Wert der xAddr-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setXAddr(String value) { this.xAddr = value; } /** * Ruft den Wert der videoSources-Eigenschaft ab. * */ public int getVideoSources() { return videoSources; } /** * Legt den Wert der videoSources-Eigenschaft fest. * */ public void setVideoSources(int value) { this.videoSources = value; } /** * Ruft den Wert der videoOutputs-Eigenschaft ab. * */ public int getVideoOutputs() { return videoOutputs; } /** * Legt den Wert der videoOutputs-Eigenschaft fest. * */ public void setVideoOutputs(int value) { this.videoOutputs = value; } /** * Ruft den Wert der audioSources-Eigenschaft ab. * */ public int getAudioSources() { return audioSources; } /** * Legt den Wert der audioSources-Eigenschaft fest. * */ public void setAudioSources(int value) { this.audioSources = value; } /** * Ruft den Wert der audioOutputs-Eigenschaft ab. * */ public int getAudioOutputs() { return audioOutputs; } /** * Legt den Wert der audioOutputs-Eigenschaft fest. * */ public void setAudioOutputs(int value) { this.audioOutputs = value; } /** * Ruft den Wert der relayOutputs-Eigenschaft ab. * */ public int getRelayOutputs() { return relayOutputs; } /** * Legt den Wert der relayOutputs-Eigenschaft fest. * */ public void setRelayOutputs(int value) { this.relayOutputs = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/DigitalIdleState.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr DigitalIdleState. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

*

 * <simpleType name="DigitalIdleState">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="closed"/>
 *     <enumeration value="open"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "DigitalIdleState") @XmlEnum public enum DigitalIdleState { @XmlEnumValue("closed") CLOSED("closed"), @XmlEnumValue("open") OPEN("open"); private final String value; DigitalIdleState(String v) { value = v; } public String value() { return value; } public static DigitalIdleState fromValue(String v) { for (DigitalIdleState c: DigitalIdleState.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/DigitalInput.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r DigitalInput complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DigitalInput", propOrder = { "any" }) public class DigitalInput extends DeviceEntity { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Direction.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Direction. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "Direction") @XmlEnum public enum Direction { @XmlEnumValue("Left") LEFT("Left"), @XmlEnumValue("Right") RIGHT("Right"), @XmlEnumValue("Any") ANY("Any"); private final String value; Direction(String v) { value = v; } public String value() { return value; } public static Direction fromValue(String v) { for (Direction c : Direction.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/DiscoveryMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r DiscoveryMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "DiscoveryMode") @XmlEnum public enum DiscoveryMode { @XmlEnumValue("Discoverable") DISCOVERABLE("Discoverable"), @XmlEnumValue("NonDiscoverable") NON_DISCOVERABLE("NonDiscoverable"); private final String value; DiscoveryMode(String v) { value = v; } public String value() { return value; } public static DiscoveryMode fromValue(String v) { for (DiscoveryMode c : DiscoveryMode.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/DisplayCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r DisplayCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DisplayCapabilities", propOrder = { "xAddr", "fixedLayout", "any" }) public class DisplayCapabilities { @XmlElement(name = "XAddr", required = true) @XmlSchemaType(name = "anyURI") protected String xAddr; @XmlElement(name = "FixedLayout") protected boolean fixedLayout; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der xAddr-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getXAddr() { return xAddr; } /** * Legt den Wert der xAddr-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setXAddr(String value) { this.xAddr = value; } /** * Ruft den Wert der fixedLayout-Eigenschaft ab. * */ public boolean isFixedLayout() { return fixedLayout; } /** * Legt den Wert der fixedLayout-Eigenschaft fest. * */ public void setFixedLayout(boolean value) { this.fixedLayout = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Dot11AuthAndMangementSuite.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Dot11AuthAndMangementSuite. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "Dot11AuthAndMangementSuite") @XmlEnum public enum Dot11AuthAndMangementSuite { @XmlEnumValue("None") NONE("None"), @XmlEnumValue("Dot1X") DOT_1_X("Dot1X"), PSK("PSK"), @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; Dot11AuthAndMangementSuite(String v) { value = v; } public String value() { return value; } public static Dot11AuthAndMangementSuite fromValue(String v) { for (Dot11AuthAndMangementSuite c : Dot11AuthAndMangementSuite.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/Dot11AvailableNetworks.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.HexBinaryAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r Dot11AvailableNetworks complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Dot11AvailableNetworks", propOrder = { "ssid", "bssid", "authAndMangementSuite", "pairCipher", "groupCipher", "signalStrength", "extension" }) public class Dot11AvailableNetworks { @XmlElement(name = "SSID", required = true, type = String.class) @XmlJavaTypeAdapter(HexBinaryAdapter.class) protected byte[] ssid; @XmlElement(name = "BSSID") protected String bssid; @XmlElement(name = "AuthAndMangementSuite") protected List authAndMangementSuite; @XmlElement(name = "PairCipher") protected List pairCipher; @XmlElement(name = "GroupCipher") protected List groupCipher; @XmlElement(name = "SignalStrength") protected Dot11SignalStrength signalStrength; @XmlElement(name = "Extension") protected Dot11AvailableNetworksExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der ssid-Eigenschaft ab. * * @return possible object is {@link String } * */ public byte[] getSSID() { return ssid; } /** * Legt den Wert der ssid-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSSID(byte[] value) { this.ssid = value; } /** * Ruft den Wert der bssid-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getBSSID() { return bssid; } /** * Legt den Wert der bssid-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setBSSID(String value) { this.bssid = value; } /** * Gets the value of the authAndMangementSuite property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the authAndMangementSuite property. * *

* For example, to add a new item, do as follows: * *

	 * getAuthAndMangementSuite().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Dot11AuthAndMangementSuite } * * */ public List getAuthAndMangementSuite() { if (authAndMangementSuite == null) { authAndMangementSuite = new ArrayList(); } return this.authAndMangementSuite; } /** * Gets the value of the pairCipher property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the pairCipher property. * *

* For example, to add a new item, do as follows: * *

	 * getPairCipher().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Dot11Cipher } * * */ public List getPairCipher() { if (pairCipher == null) { pairCipher = new ArrayList(); } return this.pairCipher; } /** * Gets the value of the groupCipher property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the groupCipher property. * *

* For example, to add a new item, do as follows: * *

	 * getGroupCipher().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Dot11Cipher } * * */ public List getGroupCipher() { if (groupCipher == null) { groupCipher = new ArrayList(); } return this.groupCipher; } /** * Ruft den Wert der signalStrength-Eigenschaft ab. * * @return possible object is {@link Dot11SignalStrength } * */ public Dot11SignalStrength getSignalStrength() { return signalStrength; } /** * Legt den Wert der signalStrength-Eigenschaft fest. * * @param value * allowed object is {@link Dot11SignalStrength } * */ public void setSignalStrength(Dot11SignalStrength value) { this.signalStrength = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link Dot11AvailableNetworksExtension } * */ public Dot11AvailableNetworksExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link Dot11AvailableNetworksExtension } * */ public void setExtension(Dot11AvailableNetworksExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Dot11AvailableNetworksExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Dot11AvailableNetworksExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Dot11AvailableNetworksExtension", propOrder = { "any" }) public class Dot11AvailableNetworksExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/Dot11Capabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Dot11Capabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Dot11Capabilities", propOrder = { "tkip", "scanAvailableNetworks", "multipleConfiguration", "adHocStationMode", "wep", "any" }) public class Dot11Capabilities { @XmlElement(name = "TKIP") protected boolean tkip; @XmlElement(name = "ScanAvailableNetworks") protected boolean scanAvailableNetworks; @XmlElement(name = "MultipleConfiguration") protected boolean multipleConfiguration; @XmlElement(name = "AdHocStationMode") protected boolean adHocStationMode; @XmlElement(name = "WEP") protected boolean wep; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der tkip-Eigenschaft ab. * */ public boolean isTKIP() { return tkip; } /** * Legt den Wert der tkip-Eigenschaft fest. * */ public void setTKIP(boolean value) { this.tkip = value; } /** * Ruft den Wert der scanAvailableNetworks-Eigenschaft ab. * */ public boolean isScanAvailableNetworks() { return scanAvailableNetworks; } /** * Legt den Wert der scanAvailableNetworks-Eigenschaft fest. * */ public void setScanAvailableNetworks(boolean value) { this.scanAvailableNetworks = value; } /** * Ruft den Wert der multipleConfiguration-Eigenschaft ab. * */ public boolean isMultipleConfiguration() { return multipleConfiguration; } /** * Legt den Wert der multipleConfiguration-Eigenschaft fest. * */ public void setMultipleConfiguration(boolean value) { this.multipleConfiguration = value; } /** * Ruft den Wert der adHocStationMode-Eigenschaft ab. * */ public boolean isAdHocStationMode() { return adHocStationMode; } /** * Legt den Wert der adHocStationMode-Eigenschaft fest. * */ public void setAdHocStationMode(boolean value) { this.adHocStationMode = value; } /** * Ruft den Wert der wep-Eigenschaft ab. * */ public boolean isWEP() { return wep; } /** * Legt den Wert der wep-Eigenschaft fest. * */ public void setWEP(boolean value) { this.wep = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Dot11Cipher.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Dot11Cipher. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "Dot11Cipher") @XmlEnum public enum Dot11Cipher { CCMP("CCMP"), TKIP("TKIP"), @XmlEnumValue("Any") ANY("Any"), @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; Dot11Cipher(String v) { value = v; } public String value() { return value; } public static Dot11Cipher fromValue(String v) { for (Dot11Cipher c : Dot11Cipher.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/Dot11Configuration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.HexBinaryAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Dot11Configuration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Dot11Configuration", propOrder = { "ssid", "mode", "alias", "priority", "security", "any" }) public class Dot11Configuration { @XmlElement(name = "SSID", required = true, type = String.class) @XmlJavaTypeAdapter(HexBinaryAdapter.class) protected byte[] ssid; @XmlElement(name = "Mode", required = true) protected Dot11StationMode mode; @XmlElement(name = "Alias", required = true) protected String alias; @XmlElement(name = "Priority") protected int priority; @XmlElement(name = "Security", required = true) protected Dot11SecurityConfiguration security; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der ssid-Eigenschaft ab. * * @return possible object is {@link String } * */ public byte[] getSSID() { return ssid; } /** * Legt den Wert der ssid-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSSID(byte[] value) { this.ssid = value; } /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link Dot11StationMode } * */ public Dot11StationMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link Dot11StationMode } * */ public void setMode(Dot11StationMode value) { this.mode = value; } /** * Ruft den Wert der alias-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getAlias() { return alias; } /** * Legt den Wert der alias-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setAlias(String value) { this.alias = value; } /** * Ruft den Wert der priority-Eigenschaft ab. * */ public int getPriority() { return priority; } /** * Legt den Wert der priority-Eigenschaft fest. * */ public void setPriority(int value) { this.priority = value; } /** * Ruft den Wert der security-Eigenschaft ab. * * @return possible object is {@link Dot11SecurityConfiguration } * */ public Dot11SecurityConfiguration getSecurity() { return security; } /** * Legt den Wert der security-Eigenschaft fest. * * @param value * allowed object is {@link Dot11SecurityConfiguration } * */ public void setSecurity(Dot11SecurityConfiguration value) { this.security = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Dot11PSKSet.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.HexBinaryAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r Dot11PSKSet complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Dot11PSKSet", propOrder = { "key", "passphrase", "extension" }) public class Dot11PSKSet { @XmlElement(name = "Key", type = String.class) @XmlJavaTypeAdapter(HexBinaryAdapter.class) protected byte[] key; @XmlElement(name = "Passphrase") protected String passphrase; @XmlElement(name = "Extension") protected Dot11PSKSetExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der key-Eigenschaft ab. * * @return possible object is {@link String } * */ public byte[] getKey() { return key; } /** * Legt den Wert der key-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setKey(byte[] value) { this.key = value; } /** * Ruft den Wert der passphrase-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPassphrase() { return passphrase; } /** * Legt den Wert der passphrase-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPassphrase(String value) { this.passphrase = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link Dot11PSKSetExtension } * */ public Dot11PSKSetExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link Dot11PSKSetExtension } * */ public void setExtension(Dot11PSKSetExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Dot11PSKSetExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Dot11PSKSetExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Dot11PSKSetExtension", propOrder = { "any" }) public class Dot11PSKSetExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/Dot11SecurityConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r Dot11SecurityConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Dot11SecurityConfiguration", propOrder = { "mode", "algorithm", "psk", "dot1X", "extension" }) public class Dot11SecurityConfiguration { @XmlElement(name = "Mode", required = true) protected Dot11SecurityMode mode; @XmlElement(name = "Algorithm") protected Dot11Cipher algorithm; @XmlElement(name = "PSK") protected Dot11PSKSet psk; @XmlElement(name = "Dot1X") protected String dot1X; @XmlElement(name = "Extension") protected Dot11SecurityConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link Dot11SecurityMode } * */ public Dot11SecurityMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link Dot11SecurityMode } * */ public void setMode(Dot11SecurityMode value) { this.mode = value; } /** * Ruft den Wert der algorithm-Eigenschaft ab. * * @return possible object is {@link Dot11Cipher } * */ public Dot11Cipher getAlgorithm() { return algorithm; } /** * Legt den Wert der algorithm-Eigenschaft fest. * * @param value * allowed object is {@link Dot11Cipher } * */ public void setAlgorithm(Dot11Cipher value) { this.algorithm = value; } /** * Ruft den Wert der psk-Eigenschaft ab. * * @return possible object is {@link Dot11PSKSet } * */ public Dot11PSKSet getPSK() { return psk; } /** * Legt den Wert der psk-Eigenschaft fest. * * @param value * allowed object is {@link Dot11PSKSet } * */ public void setPSK(Dot11PSKSet value) { this.psk = value; } /** * Ruft den Wert der dot1X-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDot1X() { return dot1X; } /** * Legt den Wert der dot1X-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDot1X(String value) { this.dot1X = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link Dot11SecurityConfigurationExtension } * */ public Dot11SecurityConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link Dot11SecurityConfigurationExtension } * */ public void setExtension(Dot11SecurityConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Dot11SecurityConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Dot11SecurityConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Dot11SecurityConfigurationExtension", propOrder = { "any" }) public class Dot11SecurityConfigurationExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Dot11SecurityMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Dot11SecurityMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "Dot11SecurityMode") @XmlEnum public enum Dot11SecurityMode { @XmlEnumValue("None") NONE("None"), WEP("WEP"), PSK("PSK"), @XmlEnumValue("Dot1X") DOT_1_X("Dot1X"), @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; Dot11SecurityMode(String v) { value = v; } public String value() { return value; } public static Dot11SecurityMode fromValue(String v) { for (Dot11SecurityMode c : Dot11SecurityMode.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/Dot11SignalStrength.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Dot11SignalStrength. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "Dot11SignalStrength") @XmlEnum public enum Dot11SignalStrength { @XmlEnumValue("None") NONE("None"), @XmlEnumValue("Very Bad") VERY_BAD("Very Bad"), @XmlEnumValue("Bad") BAD("Bad"), @XmlEnumValue("Good") GOOD("Good"), @XmlEnumValue("Very Good") VERY_GOOD("Very Good"), @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; Dot11SignalStrength(String v) { value = v; } public String value() { return value; } public static Dot11SignalStrength fromValue(String v) { for (Dot11SignalStrength c : Dot11SignalStrength.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/Dot11StationMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Dot11StationMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "Dot11StationMode") @XmlEnum public enum Dot11StationMode { @XmlEnumValue("Ad-hoc") AD_HOC("Ad-hoc"), @XmlEnumValue("Infrastructure") INFRASTRUCTURE("Infrastructure"), @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; Dot11StationMode(String v) { value = v; } public String value() { return value; } public static Dot11StationMode fromValue(String v) { for (Dot11StationMode c : Dot11StationMode.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/Dot11Status.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.HexBinaryAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Dot11Status complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Dot11Status", propOrder = { "ssid", "bssid", "pairCipher", "groupCipher", "signalStrength", "activeConfigAlias", "any" }) public class Dot11Status { @XmlElement(name = "SSID", required = true, type = String.class) @XmlJavaTypeAdapter(HexBinaryAdapter.class) protected byte[] ssid; @XmlElement(name = "BSSID") protected String bssid; @XmlElement(name = "PairCipher") protected Dot11Cipher pairCipher; @XmlElement(name = "GroupCipher") protected Dot11Cipher groupCipher; @XmlElement(name = "SignalStrength") protected Dot11SignalStrength signalStrength; @XmlElement(name = "ActiveConfigAlias", required = true) protected String activeConfigAlias; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der ssid-Eigenschaft ab. * * @return possible object is {@link String } * */ public byte[] getSSID() { return ssid; } /** * Legt den Wert der ssid-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSSID(byte[] value) { this.ssid = value; } /** * Ruft den Wert der bssid-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getBSSID() { return bssid; } /** * Legt den Wert der bssid-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setBSSID(String value) { this.bssid = value; } /** * Ruft den Wert der pairCipher-Eigenschaft ab. * * @return possible object is {@link Dot11Cipher } * */ public Dot11Cipher getPairCipher() { return pairCipher; } /** * Legt den Wert der pairCipher-Eigenschaft fest. * * @param value * allowed object is {@link Dot11Cipher } * */ public void setPairCipher(Dot11Cipher value) { this.pairCipher = value; } /** * Ruft den Wert der groupCipher-Eigenschaft ab. * * @return possible object is {@link Dot11Cipher } * */ public Dot11Cipher getGroupCipher() { return groupCipher; } /** * Legt den Wert der groupCipher-Eigenschaft fest. * * @param value * allowed object is {@link Dot11Cipher } * */ public void setGroupCipher(Dot11Cipher value) { this.groupCipher = value; } /** * Ruft den Wert der signalStrength-Eigenschaft ab. * * @return possible object is {@link Dot11SignalStrength } * */ public Dot11SignalStrength getSignalStrength() { return signalStrength; } /** * Legt den Wert der signalStrength-Eigenschaft fest. * * @param value * allowed object is {@link Dot11SignalStrength } * */ public void setSignalStrength(Dot11SignalStrength value) { this.signalStrength = value; } /** * Ruft den Wert der activeConfigAlias-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getActiveConfigAlias() { return activeConfigAlias; } /** * Legt den Wert der activeConfigAlias-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setActiveConfigAlias(String value) { this.activeConfigAlias = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Dot1XConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r Dot1XConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Dot1XConfiguration", propOrder = { "dot1XConfigurationToken", "identity", "anonymousID", "eapMethod", "caCertificateID", "eapMethodConfiguration", "extension" }) public class Dot1XConfiguration { @XmlElement(name = "Dot1XConfigurationToken", required = true) protected String dot1XConfigurationToken; @XmlElement(name = "Identity", required = true) protected String identity; @XmlElement(name = "AnonymousID") protected String anonymousID; @XmlElement(name = "EAPMethod") protected int eapMethod; @XmlElement(name = "CACertificateID") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected List caCertificateID; @XmlElement(name = "EAPMethodConfiguration") protected EAPMethodConfiguration eapMethodConfiguration; @XmlElement(name = "Extension") protected Dot1XConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der dot1XConfigurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDot1XConfigurationToken() { return dot1XConfigurationToken; } /** * Legt den Wert der dot1XConfigurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDot1XConfigurationToken(String value) { this.dot1XConfigurationToken = value; } /** * Ruft den Wert der identity-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getIdentity() { return identity; } /** * Legt den Wert der identity-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setIdentity(String value) { this.identity = value; } /** * Ruft den Wert der anonymousID-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getAnonymousID() { return anonymousID; } /** * Legt den Wert der anonymousID-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setAnonymousID(String value) { this.anonymousID = value; } /** * Ruft den Wert der eapMethod-Eigenschaft ab. * */ public int getEAPMethod() { return eapMethod; } /** * Legt den Wert der eapMethod-Eigenschaft fest. * */ public void setEAPMethod(int value) { this.eapMethod = value; } /** * Gets the value of the caCertificateID property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the caCertificateID property. * *

* For example, to add a new item, do as follows: * *

	 * getCACertificateID().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getCACertificateID() { if (caCertificateID == null) { caCertificateID = new ArrayList(); } return this.caCertificateID; } /** * Ruft den Wert der eapMethodConfiguration-Eigenschaft ab. * * @return possible object is {@link EAPMethodConfiguration } * */ public EAPMethodConfiguration getEAPMethodConfiguration() { return eapMethodConfiguration; } /** * Legt den Wert der eapMethodConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link EAPMethodConfiguration } * */ public void setEAPMethodConfiguration(EAPMethodConfiguration value) { this.eapMethodConfiguration = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link Dot1XConfigurationExtension } * */ public Dot1XConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link Dot1XConfigurationExtension } * */ public void setExtension(Dot1XConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Dot1XConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Dot1XConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Dot1XConfigurationExtension", propOrder = { "any" }) public class Dot1XConfigurationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/Dot3Configuration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Dot3Configuration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Dot3Configuration", propOrder = { "any" }) public class Dot3Configuration { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Duplex.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Duplex. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "Duplex") @XmlEnum public enum Duplex { @XmlEnumValue("Full") FULL("Full"), @XmlEnumValue("Half") HALF("Half"); private final String value; Duplex(String v) { value = v; } public String value() { return value; } public static Duplex fromValue(String v) { for (Duplex c : Duplex.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/DurationRange.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; /** * Range of duration greater equal Min duration and less equal Max duration. * *

* Java-Klasse f�r DurationRange complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DurationRange", propOrder = { "min", "max" }) public class DurationRange { @XmlElement(name = "Min", required = true) protected Duration min; @XmlElement(name = "Max", required = true) protected Duration max; /** * Ruft den Wert der min-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getMin() { return min; } /** * Legt den Wert der min-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setMin(Duration value) { this.min = value; } /** * Ruft den Wert der max-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getMax() { return max; } /** * Legt den Wert der max-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setMax(Duration value) { this.max = value; } } ================================================ FILE: src/org/onvif/ver10/schema/DynamicDNSInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.Duration; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r DynamicDNSInformation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DynamicDNSInformation", propOrder = { "type", "name", "ttl", "extension" }) public class DynamicDNSInformation { @XmlElement(name = "Type", required = true) protected DynamicDNSType type; @XmlElement(name = "Name") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String name; @XmlElement(name = "TTL") protected Duration ttl; @XmlElement(name = "Extension") protected DynamicDNSInformationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link DynamicDNSType } * */ public DynamicDNSType getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link DynamicDNSType } * */ public void setType(DynamicDNSType value) { this.type = value; } /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der ttl-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getTTL() { return ttl; } /** * Legt den Wert der ttl-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setTTL(Duration value) { this.ttl = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link DynamicDNSInformationExtension } * */ public DynamicDNSInformationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link DynamicDNSInformationExtension } * */ public void setExtension(DynamicDNSInformationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/DynamicDNSInformationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r DynamicDNSInformationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DynamicDNSInformationExtension", propOrder = { "any" }) public class DynamicDNSInformationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/DynamicDNSType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r DynamicDNSType. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "DynamicDNSType") @XmlEnum public enum DynamicDNSType { @XmlEnumValue("NoUpdate") NO_UPDATE("NoUpdate"), @XmlEnumValue("ClientUpdates") CLIENT_UPDATES("ClientUpdates"), @XmlEnumValue("ServerUpdates") SERVER_UPDATES("ServerUpdates"); private final String value; DynamicDNSType(String v) { value = v; } public String value() { return value; } public static DynamicDNSType fromValue(String v) { for (DynamicDNSType c : DynamicDNSType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/EAPMethodConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r EAPMethodConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EAPMethodConfiguration", propOrder = { "tlsConfiguration", "password", "extension" }) public class EAPMethodConfiguration { @XmlElement(name = "TLSConfiguration") protected TLSConfiguration tlsConfiguration; @XmlElement(name = "Password") protected String password; @XmlElement(name = "Extension") protected EapMethodExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der tlsConfiguration-Eigenschaft ab. * * @return possible object is {@link TLSConfiguration } * */ public TLSConfiguration getTLSConfiguration() { return tlsConfiguration; } /** * Legt den Wert der tlsConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link TLSConfiguration } * */ public void setTLSConfiguration(TLSConfiguration value) { this.tlsConfiguration = value; } /** * Ruft den Wert der password-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPassword() { return password; } /** * Legt den Wert der password-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPassword(String value) { this.password = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link EapMethodExtension } * */ public EapMethodExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link EapMethodExtension } * */ public void setExtension(EapMethodExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/EFlip.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r EFlip complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EFlip", propOrder = { "mode", "any" }) public class EFlip { @XmlElement(name = "Mode", required = true) protected EFlipMode mode; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link EFlipMode } * */ public EFlipMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link EFlipMode } * */ public void setMode(EFlipMode value) { this.mode = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/EFlipMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r EFlipMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "EFlipMode") @XmlEnum public enum EFlipMode { OFF("OFF"), ON("ON"), @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; EFlipMode(String v) { value = v; } public String value() { return value; } public static EFlipMode fromValue(String v) { for (EFlipMode c : EFlipMode.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/EFlipOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r EFlipOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EFlipOptions", propOrder = { "mode", "extension" }) public class EFlipOptions { @XmlElement(name = "Mode") protected List mode; @XmlElement(name = "Extension") protected EFlipOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the mode property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the mode property. * *

* For example, to add a new item, do as follows: * *

	 * getMode().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link EFlipMode } * * */ public List getMode() { if (mode == null) { mode = new ArrayList(); } return this.mode; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link EFlipOptionsExtension } * */ public EFlipOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link EFlipOptionsExtension } * */ public void setExtension(EFlipOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/EFlipOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r EFlipOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EFlipOptionsExtension", propOrder = { "any" }) public class EFlipOptionsExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/EapMethodExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r EapMethodExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EapMethodExtension", propOrder = { "any" }) public class EapMethodExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/Enabled.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Enabled. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "Enabled") @XmlEnum public enum Enabled { ENABLED, DISABLED; public String value() { return name(); } public static Enabled fromValue(String v) { return valueOf(v); } } ================================================ FILE: src/org/onvif/ver10/schema/EngineConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r EngineConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EngineConfiguration", propOrder = { "videoAnalyticsConfiguration", "analyticsEngineInputInfo", "any" }) public class EngineConfiguration { @XmlElement(name = "VideoAnalyticsConfiguration", required = true) protected VideoAnalyticsConfiguration videoAnalyticsConfiguration; @XmlElement(name = "AnalyticsEngineInputInfo", required = true) protected AnalyticsEngineInputInfo analyticsEngineInputInfo; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der videoAnalyticsConfiguration-Eigenschaft ab. * * @return possible object is {@link VideoAnalyticsConfiguration } * */ public VideoAnalyticsConfiguration getVideoAnalyticsConfiguration() { return videoAnalyticsConfiguration; } /** * Legt den Wert der videoAnalyticsConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link VideoAnalyticsConfiguration } * */ public void setVideoAnalyticsConfiguration(VideoAnalyticsConfiguration value) { this.videoAnalyticsConfiguration = value; } /** * Ruft den Wert der analyticsEngineInputInfo-Eigenschaft ab. * * @return possible object is {@link AnalyticsEngineInputInfo } * */ public AnalyticsEngineInputInfo getAnalyticsEngineInputInfo() { return analyticsEngineInputInfo; } /** * Legt den Wert der analyticsEngineInputInfo-Eigenschaft fest. * * @param value * allowed object is {@link AnalyticsEngineInputInfo } * */ public void setAnalyticsEngineInputInfo(AnalyticsEngineInputInfo value) { this.analyticsEngineInputInfo = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/EventCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r EventCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EventCapabilities", propOrder = { "xAddr", "wsSubscriptionPolicySupport", "wsPullPointSupport", "wsPausableSubscriptionManagerInterfaceSupport", "any" }) public class EventCapabilities { @XmlElement(name = "XAddr", required = true) @XmlSchemaType(name = "anyURI") protected String xAddr; @XmlElement(name = "WSSubscriptionPolicySupport") protected boolean wsSubscriptionPolicySupport; @XmlElement(name = "WSPullPointSupport") protected boolean wsPullPointSupport; @XmlElement(name = "WSPausableSubscriptionManagerInterfaceSupport") protected boolean wsPausableSubscriptionManagerInterfaceSupport; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der xAddr-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getXAddr() { return xAddr; } /** * Legt den Wert der xAddr-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setXAddr(String value) { this.xAddr = value; } /** * Ruft den Wert der wsSubscriptionPolicySupport-Eigenschaft ab. * */ public boolean isWSSubscriptionPolicySupport() { return wsSubscriptionPolicySupport; } /** * Legt den Wert der wsSubscriptionPolicySupport-Eigenschaft fest. * */ public void setWSSubscriptionPolicySupport(boolean value) { this.wsSubscriptionPolicySupport = value; } /** * Ruft den Wert der wsPullPointSupport-Eigenschaft ab. * */ public boolean isWSPullPointSupport() { return wsPullPointSupport; } /** * Legt den Wert der wsPullPointSupport-Eigenschaft fest. * */ public void setWSPullPointSupport(boolean value) { this.wsPullPointSupport = value; } /** * Ruft den Wert der wsPausableSubscriptionManagerInterfaceSupport-Eigenschaft ab. * */ public boolean isWSPausableSubscriptionManagerInterfaceSupport() { return wsPausableSubscriptionManagerInterfaceSupport; } /** * Legt den Wert der wsPausableSubscriptionManagerInterfaceSupport-Eigenschaft fest. * */ public void setWSPausableSubscriptionManagerInterfaceSupport(boolean value) { this.wsPausableSubscriptionManagerInterfaceSupport = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/EventFilter.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.oasis_open.docs.wsn.b_2.FilterType; /** *

* Java-Klasse f�r EventFilter complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EventFilter") public class EventFilter extends FilterType { @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/EventStream.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElements; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsn.b_2.NotificationMessageHolderType; /** *

* Java-Klasse f�r EventStream complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EventStream", propOrder = { "notificationMessageOrExtension" }) public class EventStream { @XmlElements({ @XmlElement(name = "NotificationMessage", namespace = "http://docs.oasis-open.org/wsn/b-2", type = NotificationMessageHolderType.class), @XmlElement(name = "Extension", type = EventStreamExtension.class) }) protected List notificationMessageOrExtension; /** * Gets the value of the notificationMessageOrExtension property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the notificationMessageOrExtension property. * *

* For example, to add a new item, do as follows: * *

	 * getNotificationMessageOrExtension().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link NotificationMessageHolderType } {@link EventStreamExtension } * * */ public List getNotificationMessageOrExtension() { if (notificationMessageOrExtension == null) { notificationMessageOrExtension = new ArrayList(); } return this.notificationMessageOrExtension; } } ================================================ FILE: src/org/onvif/ver10/schema/EventStreamExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r EventStreamExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EventStreamExtension", propOrder = { "any" }) public class EventStreamExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/EventSubscription.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.oasis_open.docs.wsn.b_2.FilterType; import org.w3c.dom.Element; /** * Subcription handling in the same way as base notification subscription. * *

* Java-Klasse f�r EventSubscription complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *               
 *             
 *           
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EventSubscription", propOrder = { "filter", "subscriptionPolicy", "any" }) public class EventSubscription { @XmlElement(name = "Filter") protected FilterType filter; @XmlElement(name = "SubscriptionPolicy") protected EventSubscription.SubscriptionPolicy subscriptionPolicy; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der filter-Eigenschaft ab. * * @return possible object is {@link FilterType } * */ public FilterType getFilter() { return filter; } /** * Legt den Wert der filter-Eigenschaft fest. * * @param value * allowed object is {@link FilterType } * */ public void setFilter(FilterType value) { this.filter = value; } /** * Ruft den Wert der subscriptionPolicy-Eigenschaft ab. * * @return possible object is {@link EventSubscription.SubscriptionPolicy } * */ public EventSubscription.SubscriptionPolicy getSubscriptionPolicy() { return subscriptionPolicy; } /** * Legt den Wert der subscriptionPolicy-Eigenschaft fest. * * @param value * allowed object is {@link EventSubscription.SubscriptionPolicy } * */ public void setSubscriptionPolicy(EventSubscription.SubscriptionPolicy value) { this.subscriptionPolicy = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *         
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) public static class SubscriptionPolicy { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB * object. This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

		 * getAny().add(newItem);
		 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } } ================================================ FILE: src/org/onvif/ver10/schema/Exposure.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Exposure complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Exposure", propOrder = { "mode", "priority", "window", "minExposureTime", "maxExposureTime", "minGain", "maxGain", "minIris", "maxIris", "exposureTime", "gain", "iris" }) public class Exposure { @XmlElement(name = "Mode", required = true) protected ExposureMode mode; @XmlElement(name = "Priority", required = true) protected ExposurePriority priority; @XmlElement(name = "Window", required = true) protected Rectangle window; @XmlElement(name = "MinExposureTime") protected float minExposureTime; @XmlElement(name = "MaxExposureTime") protected float maxExposureTime; @XmlElement(name = "MinGain") protected float minGain; @XmlElement(name = "MaxGain") protected float maxGain; @XmlElement(name = "MinIris") protected float minIris; @XmlElement(name = "MaxIris") protected float maxIris; @XmlElement(name = "ExposureTime") protected float exposureTime; @XmlElement(name = "Gain") protected float gain; @XmlElement(name = "Iris") protected float iris; /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link ExposureMode } * */ public ExposureMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link ExposureMode } * */ public void setMode(ExposureMode value) { this.mode = value; } /** * Ruft den Wert der priority-Eigenschaft ab. * * @return possible object is {@link ExposurePriority } * */ public ExposurePriority getPriority() { return priority; } /** * Legt den Wert der priority-Eigenschaft fest. * * @param value * allowed object is {@link ExposurePriority } * */ public void setPriority(ExposurePriority value) { this.priority = value; } /** * Ruft den Wert der window-Eigenschaft ab. * * @return possible object is {@link Rectangle } * */ public Rectangle getWindow() { return window; } /** * Legt den Wert der window-Eigenschaft fest. * * @param value * allowed object is {@link Rectangle } * */ public void setWindow(Rectangle value) { this.window = value; } /** * Ruft den Wert der minExposureTime-Eigenschaft ab. * */ public float getMinExposureTime() { return minExposureTime; } /** * Legt den Wert der minExposureTime-Eigenschaft fest. * */ public void setMinExposureTime(float value) { this.minExposureTime = value; } /** * Ruft den Wert der maxExposureTime-Eigenschaft ab. * */ public float getMaxExposureTime() { return maxExposureTime; } /** * Legt den Wert der maxExposureTime-Eigenschaft fest. * */ public void setMaxExposureTime(float value) { this.maxExposureTime = value; } /** * Ruft den Wert der minGain-Eigenschaft ab. * */ public float getMinGain() { return minGain; } /** * Legt den Wert der minGain-Eigenschaft fest. * */ public void setMinGain(float value) { this.minGain = value; } /** * Ruft den Wert der maxGain-Eigenschaft ab. * */ public float getMaxGain() { return maxGain; } /** * Legt den Wert der maxGain-Eigenschaft fest. * */ public void setMaxGain(float value) { this.maxGain = value; } /** * Ruft den Wert der minIris-Eigenschaft ab. * */ public float getMinIris() { return minIris; } /** * Legt den Wert der minIris-Eigenschaft fest. * */ public void setMinIris(float value) { this.minIris = value; } /** * Ruft den Wert der maxIris-Eigenschaft ab. * */ public float getMaxIris() { return maxIris; } /** * Legt den Wert der maxIris-Eigenschaft fest. * */ public void setMaxIris(float value) { this.maxIris = value; } /** * Ruft den Wert der exposureTime-Eigenschaft ab. * */ public float getExposureTime() { return exposureTime; } /** * Legt den Wert der exposureTime-Eigenschaft fest. * */ public void setExposureTime(float value) { this.exposureTime = value; } /** * Ruft den Wert der gain-Eigenschaft ab. * */ public float getGain() { return gain; } /** * Legt den Wert der gain-Eigenschaft fest. * */ public void setGain(float value) { this.gain = value; } /** * Ruft den Wert der iris-Eigenschaft ab. * */ public float getIris() { return iris; } /** * Legt den Wert der iris-Eigenschaft fest. * */ public void setIris(float value) { this.iris = value; } } ================================================ FILE: src/org/onvif/ver10/schema/Exposure20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Type describing the exposure settings. * *

* Java-Klasse f�r Exposure20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Exposure20", propOrder = { "mode", "priority", "window", "minExposureTime", "maxExposureTime", "minGain", "maxGain", "minIris", "maxIris", "exposureTime", "gain", "iris" }) public class Exposure20 { @XmlElement(name = "Mode", required = true) protected ExposureMode mode; @XmlElement(name = "Priority") protected ExposurePriority priority; @XmlElement(name = "Window") protected Rectangle window; @XmlElement(name = "MinExposureTime") protected Float minExposureTime; @XmlElement(name = "MaxExposureTime") protected Float maxExposureTime; @XmlElement(name = "MinGain") protected Float minGain; @XmlElement(name = "MaxGain") protected Float maxGain; @XmlElement(name = "MinIris") protected Float minIris; @XmlElement(name = "MaxIris") protected Float maxIris; @XmlElement(name = "ExposureTime") protected Float exposureTime; @XmlElement(name = "Gain") protected Float gain; @XmlElement(name = "Iris") protected Float iris; /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link ExposureMode } * */ public ExposureMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link ExposureMode } * */ public void setMode(ExposureMode value) { this.mode = value; } /** * Ruft den Wert der priority-Eigenschaft ab. * * @return possible object is {@link ExposurePriority } * */ public ExposurePriority getPriority() { return priority; } /** * Legt den Wert der priority-Eigenschaft fest. * * @param value * allowed object is {@link ExposurePriority } * */ public void setPriority(ExposurePriority value) { this.priority = value; } /** * Ruft den Wert der window-Eigenschaft ab. * * @return possible object is {@link Rectangle } * */ public Rectangle getWindow() { return window; } /** * Legt den Wert der window-Eigenschaft fest. * * @param value * allowed object is {@link Rectangle } * */ public void setWindow(Rectangle value) { this.window = value; } /** * Ruft den Wert der minExposureTime-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getMinExposureTime() { return minExposureTime; } /** * Legt den Wert der minExposureTime-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setMinExposureTime(Float value) { this.minExposureTime = value; } /** * Ruft den Wert der maxExposureTime-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getMaxExposureTime() { return maxExposureTime; } /** * Legt den Wert der maxExposureTime-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setMaxExposureTime(Float value) { this.maxExposureTime = value; } /** * Ruft den Wert der minGain-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getMinGain() { return minGain; } /** * Legt den Wert der minGain-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setMinGain(Float value) { this.minGain = value; } /** * Ruft den Wert der maxGain-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getMaxGain() { return maxGain; } /** * Legt den Wert der maxGain-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setMaxGain(Float value) { this.maxGain = value; } /** * Ruft den Wert der minIris-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getMinIris() { return minIris; } /** * Legt den Wert der minIris-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setMinIris(Float value) { this.minIris = value; } /** * Ruft den Wert der maxIris-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getMaxIris() { return maxIris; } /** * Legt den Wert der maxIris-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setMaxIris(Float value) { this.maxIris = value; } /** * Ruft den Wert der exposureTime-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getExposureTime() { return exposureTime; } /** * Legt den Wert der exposureTime-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setExposureTime(Float value) { this.exposureTime = value; } /** * Ruft den Wert der gain-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getGain() { return gain; } /** * Legt den Wert der gain-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setGain(Float value) { this.gain = value; } /** * Ruft den Wert der iris-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getIris() { return iris; } /** * Legt den Wert der iris-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setIris(Float value) { this.iris = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ExposureMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ExposureMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "ExposureMode") @XmlEnum public enum ExposureMode { AUTO, MANUAL; public String value() { return name(); } public static ExposureMode fromValue(String v) { return valueOf(v); } } ================================================ FILE: src/org/onvif/ver10/schema/ExposureOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ExposureOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ExposureOptions", propOrder = { "mode", "priority", "minExposureTime", "maxExposureTime", "minGain", "maxGain", "minIris", "maxIris", "exposureTime", "gain", "iris" }) public class ExposureOptions { @XmlElement(name = "Mode", required = true) protected List mode; @XmlElement(name = "Priority", required = true) protected List priority; @XmlElement(name = "MinExposureTime", required = true) protected FloatRange minExposureTime; @XmlElement(name = "MaxExposureTime", required = true) protected FloatRange maxExposureTime; @XmlElement(name = "MinGain", required = true) protected FloatRange minGain; @XmlElement(name = "MaxGain", required = true) protected FloatRange maxGain; @XmlElement(name = "MinIris", required = true) protected FloatRange minIris; @XmlElement(name = "MaxIris", required = true) protected FloatRange maxIris; @XmlElement(name = "ExposureTime", required = true) protected FloatRange exposureTime; @XmlElement(name = "Gain", required = true) protected FloatRange gain; @XmlElement(name = "Iris", required = true) protected FloatRange iris; /** * Gets the value of the mode property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the mode property. * *

* For example, to add a new item, do as follows: * *

	 * getMode().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ExposureMode } * * */ public List getMode() { if (mode == null) { mode = new ArrayList(); } return this.mode; } /** * Gets the value of the priority property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the priority property. * *

* For example, to add a new item, do as follows: * *

	 * getPriority().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ExposurePriority } * * */ public List getPriority() { if (priority == null) { priority = new ArrayList(); } return this.priority; } /** * Ruft den Wert der minExposureTime-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getMinExposureTime() { return minExposureTime; } /** * Legt den Wert der minExposureTime-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setMinExposureTime(FloatRange value) { this.minExposureTime = value; } /** * Ruft den Wert der maxExposureTime-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getMaxExposureTime() { return maxExposureTime; } /** * Legt den Wert der maxExposureTime-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setMaxExposureTime(FloatRange value) { this.maxExposureTime = value; } /** * Ruft den Wert der minGain-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getMinGain() { return minGain; } /** * Legt den Wert der minGain-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setMinGain(FloatRange value) { this.minGain = value; } /** * Ruft den Wert der maxGain-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getMaxGain() { return maxGain; } /** * Legt den Wert der maxGain-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setMaxGain(FloatRange value) { this.maxGain = value; } /** * Ruft den Wert der minIris-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getMinIris() { return minIris; } /** * Legt den Wert der minIris-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setMinIris(FloatRange value) { this.minIris = value; } /** * Ruft den Wert der maxIris-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getMaxIris() { return maxIris; } /** * Legt den Wert der maxIris-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setMaxIris(FloatRange value) { this.maxIris = value; } /** * Ruft den Wert der exposureTime-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getExposureTime() { return exposureTime; } /** * Legt den Wert der exposureTime-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setExposureTime(FloatRange value) { this.exposureTime = value; } /** * Ruft den Wert der gain-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getGain() { return gain; } /** * Legt den Wert der gain-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setGain(FloatRange value) { this.gain = value; } /** * Ruft den Wert der iris-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getIris() { return iris; } /** * Legt den Wert der iris-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setIris(FloatRange value) { this.iris = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ExposureOptions20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ExposureOptions20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ExposureOptions20", propOrder = { "mode", "priority", "minExposureTime", "maxExposureTime", "minGain", "maxGain", "minIris", "maxIris", "exposureTime", "gain", "iris" }) public class ExposureOptions20 { @XmlElement(name = "Mode", required = true) protected List mode; @XmlElement(name = "Priority") protected List priority; @XmlElement(name = "MinExposureTime") protected FloatRange minExposureTime; @XmlElement(name = "MaxExposureTime") protected FloatRange maxExposureTime; @XmlElement(name = "MinGain") protected FloatRange minGain; @XmlElement(name = "MaxGain") protected FloatRange maxGain; @XmlElement(name = "MinIris") protected FloatRange minIris; @XmlElement(name = "MaxIris") protected FloatRange maxIris; @XmlElement(name = "ExposureTime") protected FloatRange exposureTime; @XmlElement(name = "Gain") protected FloatRange gain; @XmlElement(name = "Iris") protected FloatRange iris; /** * Gets the value of the mode property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the mode property. * *

* For example, to add a new item, do as follows: * *

	 * getMode().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ExposureMode } * * */ public List getMode() { if (mode == null) { mode = new ArrayList(); } return this.mode; } /** * Gets the value of the priority property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the priority property. * *

* For example, to add a new item, do as follows: * *

	 * getPriority().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ExposurePriority } * * */ public List getPriority() { if (priority == null) { priority = new ArrayList(); } return this.priority; } /** * Ruft den Wert der minExposureTime-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getMinExposureTime() { return minExposureTime; } /** * Legt den Wert der minExposureTime-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setMinExposureTime(FloatRange value) { this.minExposureTime = value; } /** * Ruft den Wert der maxExposureTime-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getMaxExposureTime() { return maxExposureTime; } /** * Legt den Wert der maxExposureTime-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setMaxExposureTime(FloatRange value) { this.maxExposureTime = value; } /** * Ruft den Wert der minGain-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getMinGain() { return minGain; } /** * Legt den Wert der minGain-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setMinGain(FloatRange value) { this.minGain = value; } /** * Ruft den Wert der maxGain-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getMaxGain() { return maxGain; } /** * Legt den Wert der maxGain-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setMaxGain(FloatRange value) { this.maxGain = value; } /** * Ruft den Wert der minIris-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getMinIris() { return minIris; } /** * Legt den Wert der minIris-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setMinIris(FloatRange value) { this.minIris = value; } /** * Ruft den Wert der maxIris-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getMaxIris() { return maxIris; } /** * Legt den Wert der maxIris-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setMaxIris(FloatRange value) { this.maxIris = value; } /** * Ruft den Wert der exposureTime-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getExposureTime() { return exposureTime; } /** * Legt den Wert der exposureTime-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setExposureTime(FloatRange value) { this.exposureTime = value; } /** * Ruft den Wert der gain-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getGain() { return gain; } /** * Legt den Wert der gain-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setGain(FloatRange value) { this.gain = value; } /** * Ruft den Wert der iris-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getIris() { return iris; } /** * Legt den Wert der iris-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setIris(FloatRange value) { this.iris = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ExposurePriority.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ExposurePriority. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "ExposurePriority") @XmlEnum public enum ExposurePriority { @XmlEnumValue("LowNoise") LOW_NOISE("LowNoise"), @XmlEnumValue("FrameRate") FRAME_RATE("FrameRate"); private final String value; ExposurePriority(String v) { value = v; } public String value() { return value; } public static ExposurePriority fromValue(String v) { for (ExposurePriority c : ExposurePriority.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/FactoryDefaultType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r FactoryDefaultType. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "FactoryDefaultType") @XmlEnum public enum FactoryDefaultType { /** * Indicates that a hard factory default is requested. * */ @XmlEnumValue("Hard") HARD("Hard"), /** * Indicates that a soft factory default is requested. * */ @XmlEnumValue("Soft") SOFT("Soft"); private final String value; FactoryDefaultType(String v) { value = v; } public String value() { return value; } public static FactoryDefaultType fromValue(String v) { for (FactoryDefaultType c : FactoryDefaultType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/FileProgress.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr FileProgress complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="FileProgress">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="FileName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Progress" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FileProgress", propOrder = { "fileName", "progress", "any" }) public class FileProgress { @XmlElement(name = "FileName", required = true) protected String fileName; @XmlElement(name = "Progress") protected float progress; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der fileName-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getFileName() { return fileName; } /** * Legt den Wert der fileName-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setFileName(String value) { this.fileName = value; } /** * Ruft den Wert der progress-Eigenschaft ab. * */ public float getProgress() { return progress; } /** * Legt den Wert der progress-Eigenschaft fest. * */ public void setProgress(float value) { this.progress = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/FindEventResult.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; import org.oasis_open.docs.wsn.b_2.NotificationMessageHolderType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r FindEventResult complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FindEventResult", propOrder = { "recordingToken", "trackToken", "time", "event", "startStateEvent", "any" }) public class FindEventResult { @XmlElement(name = "RecordingToken", required = true) protected String recordingToken; @XmlElement(name = "TrackToken", required = true) protected String trackToken; @XmlElement(name = "Time", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar time; @XmlElement(name = "Event", required = true) protected NotificationMessageHolderType event; @XmlElement(name = "StartStateEvent") protected boolean startStateEvent; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der recordingToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getRecordingToken() { return recordingToken; } /** * Legt den Wert der recordingToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setRecordingToken(String value) { this.recordingToken = value; } /** * Ruft den Wert der trackToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getTrackToken() { return trackToken; } /** * Legt den Wert der trackToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setTrackToken(String value) { this.trackToken = value; } /** * Ruft den Wert der time-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTime() { return time; } /** * Legt den Wert der time-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setTime(XMLGregorianCalendar value) { this.time = value; } /** * Ruft den Wert der event-Eigenschaft ab. * * @return possible object is {@link NotificationMessageHolderType } * */ public NotificationMessageHolderType getEvent() { return event; } /** * Legt den Wert der event-Eigenschaft fest. * * @param value * allowed object is {@link NotificationMessageHolderType } * */ public void setEvent(NotificationMessageHolderType value) { this.event = value; } /** * Ruft den Wert der startStateEvent-Eigenschaft ab. * */ public boolean isStartStateEvent() { return startStateEvent; } /** * Legt den Wert der startStateEvent-Eigenschaft fest. * */ public void setStartStateEvent(boolean value) { this.startStateEvent = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/FindEventResultList.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r FindEventResultList complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FindEventResultList", propOrder = { "searchState", "result" }) public class FindEventResultList { @XmlElement(name = "SearchState", required = true) protected SearchState searchState; @XmlElement(name = "Result") protected List result; /** * Ruft den Wert der searchState-Eigenschaft ab. * * @return possible object is {@link SearchState } * */ public SearchState getSearchState() { return searchState; } /** * Legt den Wert der searchState-Eigenschaft fest. * * @param value * allowed object is {@link SearchState } * */ public void setSearchState(SearchState value) { this.searchState = value; } /** * Gets the value of the result property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the result property. * *

* For example, to add a new item, do as follows: * *

	 * getResult().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link FindEventResult } * * */ public List getResult() { if (result == null) { result = new ArrayList(); } return this.result; } } ================================================ FILE: src/org/onvif/ver10/schema/FindMetadataResult.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r FindMetadataResult complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FindMetadataResult", propOrder = { "recordingToken", "trackToken", "time", "any" }) public class FindMetadataResult { @XmlElement(name = "RecordingToken", required = true) protected String recordingToken; @XmlElement(name = "TrackToken", required = true) protected String trackToken; @XmlElement(name = "Time", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar time; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der recordingToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getRecordingToken() { return recordingToken; } /** * Legt den Wert der recordingToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setRecordingToken(String value) { this.recordingToken = value; } /** * Ruft den Wert der trackToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getTrackToken() { return trackToken; } /** * Legt den Wert der trackToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setTrackToken(String value) { this.trackToken = value; } /** * Ruft den Wert der time-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTime() { return time; } /** * Legt den Wert der time-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setTime(XMLGregorianCalendar value) { this.time = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/FindMetadataResultList.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r FindMetadataResultList complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FindMetadataResultList", propOrder = { "searchState", "result" }) public class FindMetadataResultList { @XmlElement(name = "SearchState", required = true) protected SearchState searchState; @XmlElement(name = "Result") protected List result; /** * Ruft den Wert der searchState-Eigenschaft ab. * * @return possible object is {@link SearchState } * */ public SearchState getSearchState() { return searchState; } /** * Legt den Wert der searchState-Eigenschaft fest. * * @param value * allowed object is {@link SearchState } * */ public void setSearchState(SearchState value) { this.searchState = value; } /** * Gets the value of the result property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the result property. * *

* For example, to add a new item, do as follows: * *

	 * getResult().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link FindMetadataResult } * * */ public List getResult() { if (result == null) { result = new ArrayList(); } return this.result; } } ================================================ FILE: src/org/onvif/ver10/schema/FindPTZPositionResult.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r FindPTZPositionResult complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FindPTZPositionResult", propOrder = { "recordingToken", "trackToken", "time", "position", "any" }) public class FindPTZPositionResult { @XmlElement(name = "RecordingToken", required = true) protected String recordingToken; @XmlElement(name = "TrackToken", required = true) protected String trackToken; @XmlElement(name = "Time", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar time; @XmlElement(name = "Position", required = true) protected PTZVector position; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der recordingToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getRecordingToken() { return recordingToken; } /** * Legt den Wert der recordingToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setRecordingToken(String value) { this.recordingToken = value; } /** * Ruft den Wert der trackToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getTrackToken() { return trackToken; } /** * Legt den Wert der trackToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setTrackToken(String value) { this.trackToken = value; } /** * Ruft den Wert der time-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTime() { return time; } /** * Legt den Wert der time-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setTime(XMLGregorianCalendar value) { this.time = value; } /** * Ruft den Wert der position-Eigenschaft ab. * * @return possible object is {@link PTZVector } * */ public PTZVector getPosition() { return position; } /** * Legt den Wert der position-Eigenschaft fest. * * @param value * allowed object is {@link PTZVector } * */ public void setPosition(PTZVector value) { this.position = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/FindPTZPositionResultList.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r FindPTZPositionResultList complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FindPTZPositionResultList", propOrder = { "searchState", "result" }) public class FindPTZPositionResultList { @XmlElement(name = "SearchState", required = true) protected SearchState searchState; @XmlElement(name = "Result") protected List result; /** * Ruft den Wert der searchState-Eigenschaft ab. * * @return possible object is {@link SearchState } * */ public SearchState getSearchState() { return searchState; } /** * Legt den Wert der searchState-Eigenschaft fest. * * @param value * allowed object is {@link SearchState } * */ public void setSearchState(SearchState value) { this.searchState = value; } /** * Gets the value of the result property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the result property. * *

* For example, to add a new item, do as follows: * *

	 * getResult().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link FindPTZPositionResult } * * */ public List getResult() { if (result == null) { result = new ArrayList(); } return this.result; } } ================================================ FILE: src/org/onvif/ver10/schema/FindRecordingResultList.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r FindRecordingResultList complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FindRecordingResultList", propOrder = { "searchState", "recordingInformation" }) public class FindRecordingResultList { @XmlElement(name = "SearchState", required = true) protected SearchState searchState; @XmlElement(name = "RecordingInformation") protected List recordingInformation; /** * Ruft den Wert der searchState-Eigenschaft ab. * * @return possible object is {@link SearchState } * */ public SearchState getSearchState() { return searchState; } /** * Legt den Wert der searchState-Eigenschaft fest. * * @param value * allowed object is {@link SearchState } * */ public void setSearchState(SearchState value) { this.searchState = value; } /** * Gets the value of the recordingInformation property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the recordingInformation property. * *

* For example, to add a new item, do as follows: * *

	 * getRecordingInformation().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link RecordingInformation } * * */ public List getRecordingInformation() { if (recordingInformation == null) { recordingInformation = new ArrayList(); } return this.recordingInformation; } } ================================================ FILE: src/org/onvif/ver10/schema/FloatList.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r FloatList complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FloatList", propOrder = { "items" }) public class FloatList { @XmlElement(name = "Items", type = Float.class) protected List items; /** * Gets the value of the items property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the items property. * *

* For example, to add a new item, do as follows: * *

	 * getItems().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Float } * * */ public List getItems() { if (items == null) { items = new ArrayList(); } return this.items; } } ================================================ FILE: src/org/onvif/ver10/schema/FloatRange.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Range of values greater equal Min value and less equal Max value. * *

* Java-Klasse f�r FloatRange complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FloatRange", propOrder = { "min", "max" }) public class FloatRange { @XmlElement(name = "Min") protected float min; @XmlElement(name = "Max") protected float max; /** * Ruft den Wert der min-Eigenschaft ab. * */ public float getMin() { return min; } /** * Legt den Wert der min-Eigenschaft fest. * */ public void setMin(float value) { this.min = value; } /** * Ruft den Wert der max-Eigenschaft ab. * */ public float getMax() { return max; } /** * Legt den Wert der max-Eigenschaft fest. * */ public void setMax(float value) { this.max = value; } } ================================================ FILE: src/org/onvif/ver10/schema/FocusConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r FocusConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FocusConfiguration", propOrder = { "autoFocusMode", "defaultSpeed", "nearLimit", "farLimit", "any" }) public class FocusConfiguration { @XmlElement(name = "AutoFocusMode", required = true) protected AutoFocusMode autoFocusMode; @XmlElement(name = "DefaultSpeed") protected float defaultSpeed; @XmlElement(name = "NearLimit") protected float nearLimit; @XmlElement(name = "FarLimit") protected float farLimit; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der autoFocusMode-Eigenschaft ab. * * @return possible object is {@link AutoFocusMode } * */ public AutoFocusMode getAutoFocusMode() { return autoFocusMode; } /** * Legt den Wert der autoFocusMode-Eigenschaft fest. * * @param value * allowed object is {@link AutoFocusMode } * */ public void setAutoFocusMode(AutoFocusMode value) { this.autoFocusMode = value; } /** * Ruft den Wert der defaultSpeed-Eigenschaft ab. * */ public float getDefaultSpeed() { return defaultSpeed; } /** * Legt den Wert der defaultSpeed-Eigenschaft fest. * */ public void setDefaultSpeed(float value) { this.defaultSpeed = value; } /** * Ruft den Wert der nearLimit-Eigenschaft ab. * */ public float getNearLimit() { return nearLimit; } /** * Legt den Wert der nearLimit-Eigenschaft fest. * */ public void setNearLimit(float value) { this.nearLimit = value; } /** * Ruft den Wert der farLimit-Eigenschaft ab. * */ public float getFarLimit() { return farLimit; } /** * Legt den Wert der farLimit-Eigenschaft fest. * */ public void setFarLimit(float value) { this.farLimit = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/FocusConfiguration20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r FocusConfiguration20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FocusConfiguration20", propOrder = { "autoFocusMode", "defaultSpeed", "nearLimit", "farLimit", "extension" }) public class FocusConfiguration20 { @XmlElement(name = "AutoFocusMode", required = true) protected AutoFocusMode autoFocusMode; @XmlElement(name = "DefaultSpeed") protected Float defaultSpeed; @XmlElement(name = "NearLimit") protected Float nearLimit; @XmlElement(name = "FarLimit") protected Float farLimit; @XmlElement(name = "Extension") protected FocusConfiguration20Extension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der autoFocusMode-Eigenschaft ab. * * @return possible object is {@link AutoFocusMode } * */ public AutoFocusMode getAutoFocusMode() { return autoFocusMode; } /** * Legt den Wert der autoFocusMode-Eigenschaft fest. * * @param value * allowed object is {@link AutoFocusMode } * */ public void setAutoFocusMode(AutoFocusMode value) { this.autoFocusMode = value; } /** * Ruft den Wert der defaultSpeed-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getDefaultSpeed() { return defaultSpeed; } /** * Legt den Wert der defaultSpeed-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setDefaultSpeed(Float value) { this.defaultSpeed = value; } /** * Ruft den Wert der nearLimit-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getNearLimit() { return nearLimit; } /** * Legt den Wert der nearLimit-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setNearLimit(Float value) { this.nearLimit = value; } /** * Ruft den Wert der farLimit-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getFarLimit() { return farLimit; } /** * Legt den Wert der farLimit-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setFarLimit(Float value) { this.farLimit = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link FocusConfiguration20Extension } * */ public FocusConfiguration20Extension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link FocusConfiguration20Extension } * */ public void setExtension(FocusConfiguration20Extension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/FocusConfiguration20Extension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r FocusConfiguration20Extension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FocusConfiguration20Extension", propOrder = { "any" }) public class FocusConfiguration20Extension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/FocusMove.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r FocusMove complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FocusMove", propOrder = { "absolute", "relative", "continuous" }) public class FocusMove { @XmlElement(name = "Absolute") protected AbsoluteFocus absolute; @XmlElement(name = "Relative") protected RelativeFocus relative; @XmlElement(name = "Continuous") protected ContinuousFocus continuous; /** * Ruft den Wert der absolute-Eigenschaft ab. * * @return possible object is {@link AbsoluteFocus } * */ public AbsoluteFocus getAbsolute() { return absolute; } /** * Legt den Wert der absolute-Eigenschaft fest. * * @param value * allowed object is {@link AbsoluteFocus } * */ public void setAbsolute(AbsoluteFocus value) { this.absolute = value; } /** * Ruft den Wert der relative-Eigenschaft ab. * * @return possible object is {@link RelativeFocus } * */ public RelativeFocus getRelative() { return relative; } /** * Legt den Wert der relative-Eigenschaft fest. * * @param value * allowed object is {@link RelativeFocus } * */ public void setRelative(RelativeFocus value) { this.relative = value; } /** * Ruft den Wert der continuous-Eigenschaft ab. * * @return possible object is {@link ContinuousFocus } * */ public ContinuousFocus getContinuous() { return continuous; } /** * Legt den Wert der continuous-Eigenschaft fest. * * @param value * allowed object is {@link ContinuousFocus } * */ public void setContinuous(ContinuousFocus value) { this.continuous = value; } } ================================================ FILE: src/org/onvif/ver10/schema/FocusOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r FocusOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FocusOptions", propOrder = { "autoFocusModes", "defaultSpeed", "nearLimit", "farLimit" }) public class FocusOptions { @XmlElement(name = "AutoFocusModes") protected List autoFocusModes; @XmlElement(name = "DefaultSpeed", required = true) protected FloatRange defaultSpeed; @XmlElement(name = "NearLimit", required = true) protected FloatRange nearLimit; @XmlElement(name = "FarLimit", required = true) protected FloatRange farLimit; /** * Gets the value of the autoFocusModes property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the autoFocusModes property. * *

* For example, to add a new item, do as follows: * *

	 * getAutoFocusModes().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AutoFocusMode } * * */ public List getAutoFocusModes() { if (autoFocusModes == null) { autoFocusModes = new ArrayList(); } return this.autoFocusModes; } /** * Ruft den Wert der defaultSpeed-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getDefaultSpeed() { return defaultSpeed; } /** * Legt den Wert der defaultSpeed-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setDefaultSpeed(FloatRange value) { this.defaultSpeed = value; } /** * Ruft den Wert der nearLimit-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getNearLimit() { return nearLimit; } /** * Legt den Wert der nearLimit-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setNearLimit(FloatRange value) { this.nearLimit = value; } /** * Ruft den Wert der farLimit-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getFarLimit() { return farLimit; } /** * Legt den Wert der farLimit-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setFarLimit(FloatRange value) { this.farLimit = value; } } ================================================ FILE: src/org/onvif/ver10/schema/FocusOptions20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r FocusOptions20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FocusOptions20", propOrder = { "autoFocusModes", "defaultSpeed", "nearLimit", "farLimit", "extension" }) public class FocusOptions20 { @XmlElement(name = "AutoFocusModes") protected List autoFocusModes; @XmlElement(name = "DefaultSpeed") protected FloatRange defaultSpeed; @XmlElement(name = "NearLimit") protected FloatRange nearLimit; @XmlElement(name = "FarLimit") protected FloatRange farLimit; @XmlElement(name = "Extension") protected FocusOptions20Extension extension; /** * Gets the value of the autoFocusModes property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the autoFocusModes property. * *

* For example, to add a new item, do as follows: * *

	 * getAutoFocusModes().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link AutoFocusMode } * * */ public List getAutoFocusModes() { if (autoFocusModes == null) { autoFocusModes = new ArrayList(); } return this.autoFocusModes; } /** * Ruft den Wert der defaultSpeed-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getDefaultSpeed() { return defaultSpeed; } /** * Legt den Wert der defaultSpeed-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setDefaultSpeed(FloatRange value) { this.defaultSpeed = value; } /** * Ruft den Wert der nearLimit-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getNearLimit() { return nearLimit; } /** * Legt den Wert der nearLimit-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setNearLimit(FloatRange value) { this.nearLimit = value; } /** * Ruft den Wert der farLimit-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getFarLimit() { return farLimit; } /** * Legt den Wert der farLimit-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setFarLimit(FloatRange value) { this.farLimit = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link FocusOptions20Extension } * */ public FocusOptions20Extension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link FocusOptions20Extension } * */ public void setExtension(FocusOptions20Extension value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/FocusOptions20Extension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r FocusOptions20Extension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FocusOptions20Extension", propOrder = { "any" }) public class FocusOptions20Extension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/FocusStatus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r FocusStatus complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FocusStatus", propOrder = { "position", "moveStatus", "error", "any" }) public class FocusStatus { @XmlElement(name = "Position") protected float position; @XmlElement(name = "MoveStatus", required = true) protected MoveStatus moveStatus; @XmlElement(name = "Error", required = true) protected String error; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der position-Eigenschaft ab. * */ public float getPosition() { return position; } /** * Legt den Wert der position-Eigenschaft fest. * */ public void setPosition(float value) { this.position = value; } /** * Ruft den Wert der moveStatus-Eigenschaft ab. * * @return possible object is {@link MoveStatus } * */ public MoveStatus getMoveStatus() { return moveStatus; } /** * Legt den Wert der moveStatus-Eigenschaft fest. * * @param value * allowed object is {@link MoveStatus } * */ public void setMoveStatus(MoveStatus value) { this.moveStatus = value; } /** * Ruft den Wert der error-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getError() { return error; } /** * Legt den Wert der error-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setError(String value) { this.error = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/FocusStatus20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r FocusStatus20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FocusStatus20", propOrder = { "position", "moveStatus", "error", "extension" }) public class FocusStatus20 { @XmlElement(name = "Position") protected float position; @XmlElement(name = "MoveStatus", required = true) protected MoveStatus moveStatus; @XmlElement(name = "Error") protected String error; @XmlElement(name = "Extension") protected FocusStatus20Extension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der position-Eigenschaft ab. * */ public float getPosition() { return position; } /** * Legt den Wert der position-Eigenschaft fest. * */ public void setPosition(float value) { this.position = value; } /** * Ruft den Wert der moveStatus-Eigenschaft ab. * * @return possible object is {@link MoveStatus } * */ public MoveStatus getMoveStatus() { return moveStatus; } /** * Legt den Wert der moveStatus-Eigenschaft fest. * * @param value * allowed object is {@link MoveStatus } * */ public void setMoveStatus(MoveStatus value) { this.moveStatus = value; } /** * Ruft den Wert der error-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getError() { return error; } /** * Legt den Wert der error-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setError(String value) { this.error = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link FocusStatus20Extension } * */ public FocusStatus20Extension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link FocusStatus20Extension } * */ public void setExtension(FocusStatus20Extension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/FocusStatus20Extension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r FocusStatus20Extension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FocusStatus20Extension", propOrder = { "any" }) public class FocusStatus20Extension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/Frame.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r Frame complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Frame", propOrder = { "ptzStatus", "transformation", "object", "objectTree", "extension" }) public class Frame { @XmlElement(name = "PTZStatus") protected PTZStatus ptzStatus; @XmlElement(name = "Transformation") protected Transformation transformation; @XmlElement(name = "Object") protected List object; @XmlElement(name = "ObjectTree") protected ObjectTree objectTree; @XmlElement(name = "Extension") protected FrameExtension extension; @XmlAttribute(name = "UtcTime", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar utcTime; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der ptzStatus-Eigenschaft ab. * * @return possible object is {@link PTZStatus } * */ public PTZStatus getPTZStatus() { return ptzStatus; } /** * Legt den Wert der ptzStatus-Eigenschaft fest. * * @param value * allowed object is {@link PTZStatus } * */ public void setPTZStatus(PTZStatus value) { this.ptzStatus = value; } /** * Ruft den Wert der transformation-Eigenschaft ab. * * @return possible object is {@link Transformation } * */ public Transformation getTransformation() { return transformation; } /** * Legt den Wert der transformation-Eigenschaft fest. * * @param value * allowed object is {@link Transformation } * */ public void setTransformation(Transformation value) { this.transformation = value; } /** * Gets the value of the object property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the object property. * *

* For example, to add a new item, do as follows: * *

	 * getObject().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } * * */ public List getObject() { if (object == null) { object = new ArrayList(); } return this.object; } /** * Ruft den Wert der objectTree-Eigenschaft ab. * * @return possible object is {@link ObjectTree } * */ public ObjectTree getObjectTree() { return objectTree; } /** * Legt den Wert der objectTree-Eigenschaft fest. * * @param value * allowed object is {@link ObjectTree } * */ public void setObjectTree(ObjectTree value) { this.objectTree = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link FrameExtension } * */ public FrameExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link FrameExtension } * */ public void setExtension(FrameExtension value) { this.extension = value; } /** * Ruft den Wert der utcTime-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getUtcTime() { return utcTime; } /** * Legt den Wert der utcTime-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setUtcTime(XMLGregorianCalendar value) { this.utcTime = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/FrameExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r FrameExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FrameExtension", propOrder = { "any", "motionInCells", "extension" }) public class FrameExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "MotionInCells") protected MotionInCells motionInCells; @XmlElement(name = "Extension") protected FrameExtension2 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der motionInCells-Eigenschaft ab. * * @return possible object is {@link MotionInCells } * */ public MotionInCells getMotionInCells() { return motionInCells; } /** * Legt den Wert der motionInCells-Eigenschaft fest. * * @param value * allowed object is {@link MotionInCells } * */ public void setMotionInCells(MotionInCells value) { this.motionInCells = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link FrameExtension2 } * */ public FrameExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link FrameExtension2 } * */ public void setExtension(FrameExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/FrameExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r FrameExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FrameExtension2", propOrder = { "any" }) public class FrameExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/G711DecOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r G711DecOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "G711DecOptions", propOrder = { "bitrate", "sampleRateRange", "any" }) public class G711DecOptions { @XmlElement(name = "Bitrate", required = true) protected IntList bitrate; @XmlElement(name = "SampleRateRange", required = true) protected IntList sampleRateRange; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der bitrate-Eigenschaft ab. * * @return possible object is {@link IntList } * */ public IntList getBitrate() { return bitrate; } /** * Legt den Wert der bitrate-Eigenschaft fest. * * @param value * allowed object is {@link IntList } * */ public void setBitrate(IntList value) { this.bitrate = value; } /** * Ruft den Wert der sampleRateRange-Eigenschaft ab. * * @return possible object is {@link IntList } * */ public IntList getSampleRateRange() { return sampleRateRange; } /** * Legt den Wert der sampleRateRange-Eigenschaft fest. * * @param value * allowed object is {@link IntList } * */ public void setSampleRateRange(IntList value) { this.sampleRateRange = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/G726DecOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r G726DecOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "G726DecOptions", propOrder = { "bitrate", "sampleRateRange", "any" }) public class G726DecOptions { @XmlElement(name = "Bitrate", required = true) protected IntList bitrate; @XmlElement(name = "SampleRateRange", required = true) protected IntList sampleRateRange; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der bitrate-Eigenschaft ab. * * @return possible object is {@link IntList } * */ public IntList getBitrate() { return bitrate; } /** * Legt den Wert der bitrate-Eigenschaft fest. * * @param value * allowed object is {@link IntList } * */ public void setBitrate(IntList value) { this.bitrate = value; } /** * Ruft den Wert der sampleRateRange-Eigenschaft ab. * * @return possible object is {@link IntList } * */ public IntList getSampleRateRange() { return sampleRateRange; } /** * Legt den Wert der sampleRateRange-Eigenschaft fest. * * @param value * allowed object is {@link IntList } * */ public void setSampleRateRange(IntList value) { this.sampleRateRange = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/GenericEapPwdConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r GenericEapPwdConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GenericEapPwdConfigurationExtension", propOrder = { "any" }) public class GenericEapPwdConfigurationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/GetRecordingJobsResponseItem.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r GetRecordingJobsResponseItem complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetRecordingJobsResponseItem", propOrder = { "jobToken", "jobConfiguration", "any" }) public class GetRecordingJobsResponseItem { @XmlElement(name = "JobToken", required = true) protected String jobToken; @XmlElement(name = "JobConfiguration", required = true) protected RecordingJobConfiguration jobConfiguration; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der jobToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getJobToken() { return jobToken; } /** * Legt den Wert der jobToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setJobToken(String value) { this.jobToken = value; } /** * Ruft den Wert der jobConfiguration-Eigenschaft ab. * * @return possible object is {@link RecordingJobConfiguration } * */ public RecordingJobConfiguration getJobConfiguration() { return jobConfiguration; } /** * Legt den Wert der jobConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link RecordingJobConfiguration } * */ public void setJobConfiguration(RecordingJobConfiguration value) { this.jobConfiguration = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/GetRecordingsResponseItem.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r GetRecordingsResponseItem complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetRecordingsResponseItem", propOrder = { "recordingToken", "configuration", "tracks", "any" }) public class GetRecordingsResponseItem { @XmlElement(name = "RecordingToken", required = true) protected String recordingToken; @XmlElement(name = "Configuration", required = true) protected RecordingConfiguration configuration; @XmlElement(name = "Tracks", required = true) protected GetTracksResponseList tracks; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der recordingToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getRecordingToken() { return recordingToken; } /** * Legt den Wert der recordingToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setRecordingToken(String value) { this.recordingToken = value; } /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link RecordingConfiguration } * */ public RecordingConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link RecordingConfiguration } * */ public void setConfiguration(RecordingConfiguration value) { this.configuration = value; } /** * Ruft den Wert der tracks-Eigenschaft ab. * * @return possible object is {@link GetTracksResponseList } * */ public GetTracksResponseList getTracks() { return tracks; } /** * Legt den Wert der tracks-Eigenschaft fest. * * @param value * allowed object is {@link GetTracksResponseList } * */ public void setTracks(GetTracksResponseList value) { this.tracks = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/GetTracksResponseItem.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r GetTracksResponseItem complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetTracksResponseItem", propOrder = { "trackToken", "configuration", "any" }) public class GetTracksResponseItem { @XmlElement(name = "TrackToken", required = true) protected String trackToken; @XmlElement(name = "Configuration", required = true) protected TrackConfiguration configuration; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der trackToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getTrackToken() { return trackToken; } /** * Legt den Wert der trackToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setTrackToken(String value) { this.trackToken = value; } /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link TrackConfiguration } * */ public TrackConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link TrackConfiguration } * */ public void setConfiguration(TrackConfiguration value) { this.configuration = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/GetTracksResponseList.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r GetTracksResponseList complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetTracksResponseList", propOrder = { "track" }) public class GetTracksResponseList { @XmlElement(name = "Track") protected List track; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the track property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the track property. * *

* For example, to add a new item, do as follows: * *

	 * getTrack().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link GetTracksResponseItem } * * */ public List getTrack() { if (track == null) { track = new ArrayList(); } return this.track; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/H264Configuration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r H264Configuration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "H264Configuration", propOrder = { "govLength", "h264Profile" }) public class H264Configuration { @XmlElement(name = "GovLength") protected int govLength; @XmlElement(name = "H264Profile", required = true) protected H264Profile h264Profile; /** * Ruft den Wert der govLength-Eigenschaft ab. * */ public int getGovLength() { return govLength; } /** * Legt den Wert der govLength-Eigenschaft fest. * */ public void setGovLength(int value) { this.govLength = value; } /** * Ruft den Wert der h264Profile-Eigenschaft ab. * * @return possible object is {@link H264Profile } * */ public H264Profile getH264Profile() { return h264Profile; } /** * Legt den Wert der h264Profile-Eigenschaft fest. * * @param value * allowed object is {@link H264Profile } * */ public void setH264Profile(H264Profile value) { this.h264Profile = value; } } ================================================ FILE: src/org/onvif/ver10/schema/H264DecOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r H264DecOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "H264DecOptions", propOrder = { "resolutionsAvailable", "supportedH264Profiles", "supportedInputBitrate", "supportedFrameRate", "any" }) public class H264DecOptions { @XmlElement(name = "ResolutionsAvailable", required = true) protected List resolutionsAvailable; @XmlElement(name = "SupportedH264Profiles", required = true) protected List supportedH264Profiles; @XmlElement(name = "SupportedInputBitrate", required = true) protected IntRange supportedInputBitrate; @XmlElement(name = "SupportedFrameRate", required = true) protected IntRange supportedFrameRate; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the resolutionsAvailable property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the resolutionsAvailable property. * *

* For example, to add a new item, do as follows: * *

	 * getResolutionsAvailable().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoResolution } * * */ public List getResolutionsAvailable() { if (resolutionsAvailable == null) { resolutionsAvailable = new ArrayList(); } return this.resolutionsAvailable; } /** * Gets the value of the supportedH264Profiles property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the supportedH264Profiles property. * *

* For example, to add a new item, do as follows: * *

	 * getSupportedH264Profiles().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link H264Profile } * * */ public List getSupportedH264Profiles() { if (supportedH264Profiles == null) { supportedH264Profiles = new ArrayList(); } return this.supportedH264Profiles; } /** * Ruft den Wert der supportedInputBitrate-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getSupportedInputBitrate() { return supportedInputBitrate; } /** * Legt den Wert der supportedInputBitrate-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setSupportedInputBitrate(IntRange value) { this.supportedInputBitrate = value; } /** * Ruft den Wert der supportedFrameRate-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getSupportedFrameRate() { return supportedFrameRate; } /** * Legt den Wert der supportedFrameRate-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setSupportedFrameRate(IntRange value) { this.supportedFrameRate = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/H264Options.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r H264Options complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "H264Options", propOrder = { "resolutionsAvailable", "govLengthRange", "frameRateRange", "encodingIntervalRange", "h264ProfilesSupported" }) @XmlSeeAlso({ H264Options2.class }) public class H264Options { @XmlElement(name = "ResolutionsAvailable", required = true) protected List resolutionsAvailable; @XmlElement(name = "GovLengthRange", required = true) protected IntRange govLengthRange; @XmlElement(name = "FrameRateRange", required = true) protected IntRange frameRateRange; @XmlElement(name = "EncodingIntervalRange", required = true) protected IntRange encodingIntervalRange; @XmlElement(name = "H264ProfilesSupported", required = true) protected List h264ProfilesSupported; /** * Gets the value of the resolutionsAvailable property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the resolutionsAvailable property. * *

* For example, to add a new item, do as follows: * *

	 * getResolutionsAvailable().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoResolution } * * */ public List getResolutionsAvailable() { if (resolutionsAvailable == null) { resolutionsAvailable = new ArrayList(); } return this.resolutionsAvailable; } /** * Ruft den Wert der govLengthRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getGovLengthRange() { return govLengthRange; } /** * Legt den Wert der govLengthRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setGovLengthRange(IntRange value) { this.govLengthRange = value; } /** * Ruft den Wert der frameRateRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getFrameRateRange() { return frameRateRange; } /** * Legt den Wert der frameRateRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setFrameRateRange(IntRange value) { this.frameRateRange = value; } /** * Ruft den Wert der encodingIntervalRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getEncodingIntervalRange() { return encodingIntervalRange; } /** * Legt den Wert der encodingIntervalRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setEncodingIntervalRange(IntRange value) { this.encodingIntervalRange = value; } /** * Gets the value of the h264ProfilesSupported property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the h264ProfilesSupported property. * *

* For example, to add a new item, do as follows: * *

	 * getH264ProfilesSupported().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link H264Profile } * * */ public List getH264ProfilesSupported() { if (h264ProfilesSupported == null) { h264ProfilesSupported = new ArrayList(); } return this.h264ProfilesSupported; } } ================================================ FILE: src/org/onvif/ver10/schema/H264Options2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r H264Options2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "H264Options2", propOrder = { "bitrateRange", "any" }) public class H264Options2 extends H264Options { @XmlElement(name = "BitrateRange", required = true) protected IntRange bitrateRange; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der bitrateRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getBitrateRange() { return bitrateRange; } /** * Legt den Wert der bitrateRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setBitrateRange(IntRange value) { this.bitrateRange = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/H264Profile.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r H264Profile. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "H264Profile") @XmlEnum public enum H264Profile { @XmlEnumValue("Baseline") BASELINE("Baseline"), @XmlEnumValue("Main") MAIN("Main"), @XmlEnumValue("Extended") EXTENDED("Extended"), @XmlEnumValue("High") HIGH("High"); private final String value; H264Profile(String v) { value = v; } public String value() { return value; } public static H264Profile fromValue(String v) { for (H264Profile c : H264Profile.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/HostnameInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r HostnameInformation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostnameInformation", propOrder = { "fromDHCP", "name", "extension" }) public class HostnameInformation { @XmlElement(name = "FromDHCP") protected boolean fromDHCP; @XmlElement(name = "Name") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String name; @XmlElement(name = "Extension") protected HostnameInformationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der fromDHCP-Eigenschaft ab. * */ public boolean isFromDHCP() { return fromDHCP; } /** * Legt den Wert der fromDHCP-Eigenschaft fest. * */ public void setFromDHCP(boolean value) { this.fromDHCP = value; } /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link HostnameInformationExtension } * */ public HostnameInformationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link HostnameInformationExtension } * */ public void setExtension(HostnameInformationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/HostnameInformationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r HostnameInformationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostnameInformationExtension", propOrder = { "any" }) public class HostnameInformationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/IOCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r IOCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IOCapabilities", propOrder = { "inputConnectors", "relayOutputs", "extension" }) public class IOCapabilities { @XmlElement(name = "InputConnectors") protected Integer inputConnectors; @XmlElement(name = "RelayOutputs") protected Integer relayOutputs; @XmlElement(name = "Extension") protected IOCapabilitiesExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der inputConnectors-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getInputConnectors() { return inputConnectors; } /** * Legt den Wert der inputConnectors-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setInputConnectors(Integer value) { this.inputConnectors = value; } /** * Ruft den Wert der relayOutputs-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getRelayOutputs() { return relayOutputs; } /** * Legt den Wert der relayOutputs-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setRelayOutputs(Integer value) { this.relayOutputs = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link IOCapabilitiesExtension } * */ public IOCapabilitiesExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link IOCapabilitiesExtension } * */ public void setExtension(IOCapabilitiesExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/IOCapabilitiesExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r IOCapabilitiesExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IOCapabilitiesExtension", propOrder = { "any", "auxiliary", "auxiliaryCommands", "extension" }) public class IOCapabilitiesExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "Auxiliary") protected Boolean auxiliary; @XmlElement(name = "AuxiliaryCommands") protected List auxiliaryCommands; @XmlElement(name = "Extension", required = true) protected IOCapabilitiesExtension2 extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der auxiliary-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isAuxiliary() { return auxiliary; } /** * Legt den Wert der auxiliary-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setAuxiliary(Boolean value) { this.auxiliary = value; } /** * Gets the value of the auxiliaryCommands property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the auxiliaryCommands property. * *

* For example, to add a new item, do as follows: * *

	 * getAuxiliaryCommands().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getAuxiliaryCommands() { if (auxiliaryCommands == null) { auxiliaryCommands = new ArrayList(); } return this.auxiliaryCommands; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link IOCapabilitiesExtension2 } * */ public IOCapabilitiesExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link IOCapabilitiesExtension2 } * */ public void setExtension(IOCapabilitiesExtension2 value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/IOCapabilitiesExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r IOCapabilitiesExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IOCapabilitiesExtension2", propOrder = { "any" }) public class IOCapabilitiesExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/IPAddress.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

* Java-Klasse f�r IPAddress complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IPAddress", propOrder = { "type", "iPv4Address", "iPv6Address" }) public class IPAddress { @XmlElement(name = "Type", required = true) protected IPType type; @XmlElement(name = "IPv4Address") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String iPv4Address; @XmlElement(name = "IPv6Address") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String iPv6Address; /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link IPType } * */ public IPType getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link IPType } * */ public void setType(IPType value) { this.type = value; } /** * Ruft den Wert der iPv4Address-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getIPv4Address() { return iPv4Address; } /** * Legt den Wert der iPv4Address-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setIPv4Address(String value) { this.iPv4Address = value; } /** * Ruft den Wert der iPv6Address-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getIPv6Address() { return iPv6Address; } /** * Legt den Wert der iPv6Address-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setIPv6Address(String value) { this.iPv6Address = value; } } ================================================ FILE: src/org/onvif/ver10/schema/IPAddressFilter.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r IPAddressFilter complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IPAddressFilter", propOrder = { "type", "iPv4Address", "iPv6Address", "extension" }) public class IPAddressFilter { @XmlElement(name = "Type", required = true) protected IPAddressFilterType type; @XmlElement(name = "IPv4Address") protected List iPv4Address; @XmlElement(name = "IPv6Address") protected List iPv6Address; @XmlElement(name = "Extension") protected IPAddressFilterExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link IPAddressFilterType } * */ public IPAddressFilterType getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link IPAddressFilterType } * */ public void setType(IPAddressFilterType value) { this.type = value; } /** * Gets the value of the iPv4Address property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the iPv4Address property. * *

* For example, to add a new item, do as follows: * *

	 * getIPv4Address().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PrefixedIPv4Address } * * */ public List getIPv4Address() { if (iPv4Address == null) { iPv4Address = new ArrayList(); } return this.iPv4Address; } /** * Gets the value of the iPv6Address property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the iPv6Address property. * *

* For example, to add a new item, do as follows: * *

	 * getIPv6Address().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PrefixedIPv6Address } * * */ public List getIPv6Address() { if (iPv6Address == null) { iPv6Address = new ArrayList(); } return this.iPv6Address; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link IPAddressFilterExtension } * */ public IPAddressFilterExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link IPAddressFilterExtension } * */ public void setExtension(IPAddressFilterExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/IPAddressFilterExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r IPAddressFilterExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IPAddressFilterExtension", propOrder = { "any" }) public class IPAddressFilterExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/IPAddressFilterType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r IPAddressFilterType. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "IPAddressFilterType") @XmlEnum public enum IPAddressFilterType { @XmlEnumValue("Allow") ALLOW("Allow"), @XmlEnumValue("Deny") DENY("Deny"); private final String value; IPAddressFilterType(String v) { value = v; } public String value() { return value; } public static IPAddressFilterType fromValue(String v) { for (IPAddressFilterType c : IPAddressFilterType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/IPType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r IPType. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "IPType") @XmlEnum public enum IPType { @XmlEnumValue("IPv4") I_PV_4("IPv4"), @XmlEnumValue("IPv6") I_PV_6("IPv6"); private final String value; IPType(String v) { value = v; } public String value() { return value; } public static IPType fromValue(String v) { for (IPType c : IPType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/IPv4Configuration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r IPv4Configuration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IPv4Configuration", propOrder = { "manual", "linkLocal", "fromDHCP", "dhcp", "any" }) public class IPv4Configuration { @XmlElement(name = "Manual") protected List manual; @XmlElement(name = "LinkLocal") protected PrefixedIPv4Address linkLocal; @XmlElement(name = "FromDHCP") protected PrefixedIPv4Address fromDHCP; @XmlElement(name = "DHCP") protected boolean dhcp; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the manual property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the manual property. * *

* For example, to add a new item, do as follows: * *

	 * getManual().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PrefixedIPv4Address } * * */ public List getManual() { if (manual == null) { manual = new ArrayList(); } return this.manual; } /** * Ruft den Wert der linkLocal-Eigenschaft ab. * * @return possible object is {@link PrefixedIPv4Address } * */ public PrefixedIPv4Address getLinkLocal() { return linkLocal; } /** * Legt den Wert der linkLocal-Eigenschaft fest. * * @param value * allowed object is {@link PrefixedIPv4Address } * */ public void setLinkLocal(PrefixedIPv4Address value) { this.linkLocal = value; } /** * Ruft den Wert der fromDHCP-Eigenschaft ab. * * @return possible object is {@link PrefixedIPv4Address } * */ public PrefixedIPv4Address getFromDHCP() { return fromDHCP; } /** * Legt den Wert der fromDHCP-Eigenschaft fest. * * @param value * allowed object is {@link PrefixedIPv4Address } * */ public void setFromDHCP(PrefixedIPv4Address value) { this.fromDHCP = value; } /** * Ruft den Wert der dhcp-Eigenschaft ab. * */ public boolean isDHCP() { return dhcp; } /** * Legt den Wert der dhcp-Eigenschaft fest. * */ public void setDHCP(boolean value) { this.dhcp = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/IPv4NetworkInterface.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r IPv4NetworkInterface complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IPv4NetworkInterface", propOrder = { "enabled", "config" }) public class IPv4NetworkInterface { @XmlElement(name = "Enabled") protected boolean enabled; @XmlElement(name = "Config", required = true) protected IPv4Configuration config; /** * Ruft den Wert der enabled-Eigenschaft ab. * */ public boolean isEnabled() { return enabled; } /** * Legt den Wert der enabled-Eigenschaft fest. * */ public void setEnabled(boolean value) { this.enabled = value; } /** * Ruft den Wert der config-Eigenschaft ab. * * @return possible object is {@link IPv4Configuration } * */ public IPv4Configuration getConfig() { return config; } /** * Legt den Wert der config-Eigenschaft fest. * * @param value * allowed object is {@link IPv4Configuration } * */ public void setConfig(IPv4Configuration value) { this.config = value; } } ================================================ FILE: src/org/onvif/ver10/schema/IPv4NetworkInterfaceSetConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r IPv4NetworkInterfaceSetConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IPv4NetworkInterfaceSetConfiguration", propOrder = { "enabled", "manual", "dhcp" }) public class IPv4NetworkInterfaceSetConfiguration { @XmlElement(name = "Enabled") protected Boolean enabled; @XmlElement(name = "Manual") protected List manual; @XmlElement(name = "DHCP") protected Boolean dhcp; /** * Ruft den Wert der enabled-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isEnabled() { return enabled; } /** * Legt den Wert der enabled-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setEnabled(Boolean value) { this.enabled = value; } /** * Gets the value of the manual property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the manual property. * *

* For example, to add a new item, do as follows: * *

	 * getManual().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PrefixedIPv4Address } * * */ public List getManual() { if (manual == null) { manual = new ArrayList(); } return this.manual; } /** * Ruft den Wert der dhcp-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isDHCP() { return dhcp; } /** * Legt den Wert der dhcp-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setDHCP(Boolean value) { this.dhcp = value; } } ================================================ FILE: src/org/onvif/ver10/schema/IPv6Configuration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r IPv6Configuration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IPv6Configuration", propOrder = { "acceptRouterAdvert", "dhcp", "manual", "linkLocal", "fromDHCP", "fromRA", "extension" }) public class IPv6Configuration { @XmlElement(name = "AcceptRouterAdvert") protected Boolean acceptRouterAdvert; @XmlElement(name = "DHCP", required = true) protected IPv6DHCPConfiguration dhcp; @XmlElement(name = "Manual") protected List manual; @XmlElement(name = "LinkLocal") protected List linkLocal; @XmlElement(name = "FromDHCP") protected List fromDHCP; @XmlElement(name = "FromRA") protected List fromRA; @XmlElement(name = "Extension") protected IPv6ConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der acceptRouterAdvert-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isAcceptRouterAdvert() { return acceptRouterAdvert; } /** * Legt den Wert der acceptRouterAdvert-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setAcceptRouterAdvert(Boolean value) { this.acceptRouterAdvert = value; } /** * Ruft den Wert der dhcp-Eigenschaft ab. * * @return possible object is {@link IPv6DHCPConfiguration } * */ public IPv6DHCPConfiguration getDHCP() { return dhcp; } /** * Legt den Wert der dhcp-Eigenschaft fest. * * @param value * allowed object is {@link IPv6DHCPConfiguration } * */ public void setDHCP(IPv6DHCPConfiguration value) { this.dhcp = value; } /** * Gets the value of the manual property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the manual property. * *

* For example, to add a new item, do as follows: * *

	 * getManual().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PrefixedIPv6Address } * * */ public List getManual() { if (manual == null) { manual = new ArrayList(); } return this.manual; } /** * Gets the value of the linkLocal property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the linkLocal property. * *

* For example, to add a new item, do as follows: * *

	 * getLinkLocal().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PrefixedIPv6Address } * * */ public List getLinkLocal() { if (linkLocal == null) { linkLocal = new ArrayList(); } return this.linkLocal; } /** * Gets the value of the fromDHCP property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the fromDHCP property. * *

* For example, to add a new item, do as follows: * *

	 * getFromDHCP().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PrefixedIPv6Address } * * */ public List getFromDHCP() { if (fromDHCP == null) { fromDHCP = new ArrayList(); } return this.fromDHCP; } /** * Gets the value of the fromRA property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the fromRA property. * *

* For example, to add a new item, do as follows: * *

	 * getFromRA().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PrefixedIPv6Address } * * */ public List getFromRA() { if (fromRA == null) { fromRA = new ArrayList(); } return this.fromRA; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link IPv6ConfigurationExtension } * */ public IPv6ConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link IPv6ConfigurationExtension } * */ public void setExtension(IPv6ConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/IPv6ConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r IPv6ConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IPv6ConfigurationExtension", propOrder = { "any" }) public class IPv6ConfigurationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/IPv6DHCPConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r IPv6DHCPConfiguration. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "IPv6DHCPConfiguration") @XmlEnum public enum IPv6DHCPConfiguration { @XmlEnumValue("Auto") AUTO("Auto"), @XmlEnumValue("Stateful") STATEFUL("Stateful"), @XmlEnumValue("Stateless") STATELESS("Stateless"), @XmlEnumValue("Off") OFF("Off"); private final String value; IPv6DHCPConfiguration(String v) { value = v; } public String value() { return value; } public static IPv6DHCPConfiguration fromValue(String v) { for (IPv6DHCPConfiguration c : IPv6DHCPConfiguration.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/IPv6NetworkInterface.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r IPv6NetworkInterface complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IPv6NetworkInterface", propOrder = { "enabled", "config" }) public class IPv6NetworkInterface { @XmlElement(name = "Enabled") protected boolean enabled; @XmlElement(name = "Config") protected IPv6Configuration config; /** * Ruft den Wert der enabled-Eigenschaft ab. * */ public boolean isEnabled() { return enabled; } /** * Legt den Wert der enabled-Eigenschaft fest. * */ public void setEnabled(boolean value) { this.enabled = value; } /** * Ruft den Wert der config-Eigenschaft ab. * * @return possible object is {@link IPv6Configuration } * */ public IPv6Configuration getConfig() { return config; } /** * Legt den Wert der config-Eigenschaft fest. * * @param value * allowed object is {@link IPv6Configuration } * */ public void setConfig(IPv6Configuration value) { this.config = value; } } ================================================ FILE: src/org/onvif/ver10/schema/IPv6NetworkInterfaceSetConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r IPv6NetworkInterfaceSetConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IPv6NetworkInterfaceSetConfiguration", propOrder = { "enabled", "acceptRouterAdvert", "manual", "dhcp" }) public class IPv6NetworkInterfaceSetConfiguration { @XmlElement(name = "Enabled") protected Boolean enabled; @XmlElement(name = "AcceptRouterAdvert") protected Boolean acceptRouterAdvert; @XmlElement(name = "Manual") protected List manual; @XmlElement(name = "DHCP") protected IPv6DHCPConfiguration dhcp; /** * Ruft den Wert der enabled-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isEnabled() { return enabled; } /** * Legt den Wert der enabled-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setEnabled(Boolean value) { this.enabled = value; } /** * Ruft den Wert der acceptRouterAdvert-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isAcceptRouterAdvert() { return acceptRouterAdvert; } /** * Legt den Wert der acceptRouterAdvert-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setAcceptRouterAdvert(Boolean value) { this.acceptRouterAdvert = value; } /** * Gets the value of the manual property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the manual property. * *

* For example, to add a new item, do as follows: * *

	 * getManual().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PrefixedIPv6Address } * * */ public List getManual() { if (manual == null) { manual = new ArrayList(); } return this.manual; } /** * Ruft den Wert der dhcp-Eigenschaft ab. * * @return possible object is {@link IPv6DHCPConfiguration } * */ public IPv6DHCPConfiguration getDHCP() { return dhcp; } /** * Legt den Wert der dhcp-Eigenschaft fest. * * @param value * allowed object is {@link IPv6DHCPConfiguration } * */ public void setDHCP(IPv6DHCPConfiguration value) { this.dhcp = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ImageStabilization.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r ImageStabilization complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImageStabilization", propOrder = { "mode", "level", "extension" }) public class ImageStabilization { @XmlElement(name = "Mode", required = true) protected ImageStabilizationMode mode; @XmlElement(name = "Level") protected Float level; @XmlElement(name = "Extension") protected ImageStabilizationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link ImageStabilizationMode } * */ public ImageStabilizationMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link ImageStabilizationMode } * */ public void setMode(ImageStabilizationMode value) { this.mode = value; } /** * Ruft den Wert der level-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setLevel(Float value) { this.level = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ImageStabilizationExtension } * */ public ImageStabilizationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ImageStabilizationExtension } * */ public void setExtension(ImageStabilizationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ImageStabilizationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ImageStabilizationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImageStabilizationExtension", propOrder = { "any" }) public class ImageStabilizationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/ImageStabilizationMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ImageStabilizationMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "ImageStabilizationMode") @XmlEnum public enum ImageStabilizationMode { OFF("OFF"), ON("ON"), AUTO("AUTO"), @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; ImageStabilizationMode(String v) { value = v; } public String value() { return value; } public static ImageStabilizationMode fromValue(String v) { for (ImageStabilizationMode c : ImageStabilizationMode.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/ImageStabilizationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r ImageStabilizationOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImageStabilizationOptions", propOrder = { "mode", "level", "extension" }) public class ImageStabilizationOptions { @XmlElement(name = "Mode", required = true) protected List mode; @XmlElement(name = "Level") protected FloatRange level; @XmlElement(name = "Extension") protected ImageStabilizationOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the mode property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the mode property. * *

* For example, to add a new item, do as follows: * *

	 * getMode().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ImageStabilizationMode } * * */ public List getMode() { if (mode == null) { mode = new ArrayList(); } return this.mode; } /** * Ruft den Wert der level-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setLevel(FloatRange value) { this.level = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ImageStabilizationOptionsExtension } * */ public ImageStabilizationOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ImageStabilizationOptionsExtension } * */ public void setExtension(ImageStabilizationOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ImageStabilizationOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ImageStabilizationOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImageStabilizationOptionsExtension", propOrder = { "any" }) public class ImageStabilizationOptionsExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r ImagingCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingCapabilities", propOrder = { "xAddr" }) public class ImagingCapabilities { @XmlElement(name = "XAddr", required = true) @XmlSchemaType(name = "anyURI") protected String xAddr; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der xAddr-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getXAddr() { return xAddr; } /** * Legt den Wert der xAddr-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setXAddr(String value) { this.xAddr = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ImagingOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingOptions", propOrder = { "backlightCompensation", "brightness", "colorSaturation", "contrast", "exposure", "focus", "irCutFilterModes", "sharpness", "wideDynamicRange", "whiteBalance", "any" }) public class ImagingOptions { @XmlElement(name = "BacklightCompensation", required = true) protected BacklightCompensationOptions backlightCompensation; @XmlElement(name = "Brightness", required = true) protected FloatRange brightness; @XmlElement(name = "ColorSaturation", required = true) protected FloatRange colorSaturation; @XmlElement(name = "Contrast", required = true) protected FloatRange contrast; @XmlElement(name = "Exposure", required = true) protected ExposureOptions exposure; @XmlElement(name = "Focus", required = true) protected FocusOptions focus; @XmlElement(name = "IrCutFilterModes", required = true) protected List irCutFilterModes; @XmlElement(name = "Sharpness", required = true) protected FloatRange sharpness; @XmlElement(name = "WideDynamicRange", required = true) protected WideDynamicRangeOptions wideDynamicRange; @XmlElement(name = "WhiteBalance", required = true) protected WhiteBalanceOptions whiteBalance; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der backlightCompensation-Eigenschaft ab. * * @return possible object is {@link BacklightCompensationOptions } * */ public BacklightCompensationOptions getBacklightCompensation() { return backlightCompensation; } /** * Legt den Wert der backlightCompensation-Eigenschaft fest. * * @param value * allowed object is {@link BacklightCompensationOptions } * */ public void setBacklightCompensation(BacklightCompensationOptions value) { this.backlightCompensation = value; } /** * Ruft den Wert der brightness-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getBrightness() { return brightness; } /** * Legt den Wert der brightness-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setBrightness(FloatRange value) { this.brightness = value; } /** * Ruft den Wert der colorSaturation-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getColorSaturation() { return colorSaturation; } /** * Legt den Wert der colorSaturation-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setColorSaturation(FloatRange value) { this.colorSaturation = value; } /** * Ruft den Wert der contrast-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getContrast() { return contrast; } /** * Legt den Wert der contrast-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setContrast(FloatRange value) { this.contrast = value; } /** * Ruft den Wert der exposure-Eigenschaft ab. * * @return possible object is {@link ExposureOptions } * */ public ExposureOptions getExposure() { return exposure; } /** * Legt den Wert der exposure-Eigenschaft fest. * * @param value * allowed object is {@link ExposureOptions } * */ public void setExposure(ExposureOptions value) { this.exposure = value; } /** * Ruft den Wert der focus-Eigenschaft ab. * * @return possible object is {@link FocusOptions } * */ public FocusOptions getFocus() { return focus; } /** * Legt den Wert der focus-Eigenschaft fest. * * @param value * allowed object is {@link FocusOptions } * */ public void setFocus(FocusOptions value) { this.focus = value; } /** * Gets the value of the irCutFilterModes property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the irCutFilterModes property. * *

* For example, to add a new item, do as follows: * *

	 * getIrCutFilterModes().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link IrCutFilterMode } * * */ public List getIrCutFilterModes() { if (irCutFilterModes == null) { irCutFilterModes = new ArrayList(); } return this.irCutFilterModes; } /** * Ruft den Wert der sharpness-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getSharpness() { return sharpness; } /** * Legt den Wert der sharpness-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setSharpness(FloatRange value) { this.sharpness = value; } /** * Ruft den Wert der wideDynamicRange-Eigenschaft ab. * * @return possible object is {@link WideDynamicRangeOptions } * */ public WideDynamicRangeOptions getWideDynamicRange() { return wideDynamicRange; } /** * Legt den Wert der wideDynamicRange-Eigenschaft fest. * * @param value * allowed object is {@link WideDynamicRangeOptions } * */ public void setWideDynamicRange(WideDynamicRangeOptions value) { this.wideDynamicRange = value; } /** * Ruft den Wert der whiteBalance-Eigenschaft ab. * * @return possible object is {@link WhiteBalanceOptions } * */ public WhiteBalanceOptions getWhiteBalance() { return whiteBalance; } /** * Legt den Wert der whiteBalance-Eigenschaft fest. * * @param value * allowed object is {@link WhiteBalanceOptions } * */ public void setWhiteBalance(WhiteBalanceOptions value) { this.whiteBalance = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingOptions20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r ImagingOptions20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingOptions20", propOrder = { "backlightCompensation", "brightness", "colorSaturation", "contrast", "exposure", "focus", "irCutFilterModes", "sharpness", "wideDynamicRange", "whiteBalance", "extension" }) public class ImagingOptions20 { @XmlElement(name = "BacklightCompensation") protected BacklightCompensationOptions20 backlightCompensation; @XmlElement(name = "Brightness") protected FloatRange brightness; @XmlElement(name = "ColorSaturation") protected FloatRange colorSaturation; @XmlElement(name = "Contrast") protected FloatRange contrast; @XmlElement(name = "Exposure") protected ExposureOptions20 exposure; @XmlElement(name = "Focus") protected FocusOptions20 focus; @XmlElement(name = "IrCutFilterModes") protected List irCutFilterModes; @XmlElement(name = "Sharpness") protected FloatRange sharpness; @XmlElement(name = "WideDynamicRange") protected WideDynamicRangeOptions20 wideDynamicRange; @XmlElement(name = "WhiteBalance") protected WhiteBalanceOptions20 whiteBalance; @XmlElement(name = "Extension") protected ImagingOptions20Extension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der backlightCompensation-Eigenschaft ab. * * @return possible object is {@link BacklightCompensationOptions20 } * */ public BacklightCompensationOptions20 getBacklightCompensation() { return backlightCompensation; } /** * Legt den Wert der backlightCompensation-Eigenschaft fest. * * @param value * allowed object is {@link BacklightCompensationOptions20 } * */ public void setBacklightCompensation(BacklightCompensationOptions20 value) { this.backlightCompensation = value; } /** * Ruft den Wert der brightness-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getBrightness() { return brightness; } /** * Legt den Wert der brightness-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setBrightness(FloatRange value) { this.brightness = value; } /** * Ruft den Wert der colorSaturation-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getColorSaturation() { return colorSaturation; } /** * Legt den Wert der colorSaturation-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setColorSaturation(FloatRange value) { this.colorSaturation = value; } /** * Ruft den Wert der contrast-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getContrast() { return contrast; } /** * Legt den Wert der contrast-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setContrast(FloatRange value) { this.contrast = value; } /** * Ruft den Wert der exposure-Eigenschaft ab. * * @return possible object is {@link ExposureOptions20 } * */ public ExposureOptions20 getExposure() { return exposure; } /** * Legt den Wert der exposure-Eigenschaft fest. * * @param value * allowed object is {@link ExposureOptions20 } * */ public void setExposure(ExposureOptions20 value) { this.exposure = value; } /** * Ruft den Wert der focus-Eigenschaft ab. * * @return possible object is {@link FocusOptions20 } * */ public FocusOptions20 getFocus() { return focus; } /** * Legt den Wert der focus-Eigenschaft fest. * * @param value * allowed object is {@link FocusOptions20 } * */ public void setFocus(FocusOptions20 value) { this.focus = value; } /** * Gets the value of the irCutFilterModes property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the irCutFilterModes property. * *

* For example, to add a new item, do as follows: * *

	 * getIrCutFilterModes().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link IrCutFilterMode } * * */ public List getIrCutFilterModes() { if (irCutFilterModes == null) { irCutFilterModes = new ArrayList(); } return this.irCutFilterModes; } /** * Ruft den Wert der sharpness-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getSharpness() { return sharpness; } /** * Legt den Wert der sharpness-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setSharpness(FloatRange value) { this.sharpness = value; } /** * Ruft den Wert der wideDynamicRange-Eigenschaft ab. * * @return possible object is {@link WideDynamicRangeOptions20 } * */ public WideDynamicRangeOptions20 getWideDynamicRange() { return wideDynamicRange; } /** * Legt den Wert der wideDynamicRange-Eigenschaft fest. * * @param value * allowed object is {@link WideDynamicRangeOptions20 } * */ public void setWideDynamicRange(WideDynamicRangeOptions20 value) { this.wideDynamicRange = value; } /** * Ruft den Wert der whiteBalance-Eigenschaft ab. * * @return possible object is {@link WhiteBalanceOptions20 } * */ public WhiteBalanceOptions20 getWhiteBalance() { return whiteBalance; } /** * Legt den Wert der whiteBalance-Eigenschaft fest. * * @param value * allowed object is {@link WhiteBalanceOptions20 } * */ public void setWhiteBalance(WhiteBalanceOptions20 value) { this.whiteBalance = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ImagingOptions20Extension } * */ public ImagingOptions20Extension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ImagingOptions20Extension } * */ public void setExtension(ImagingOptions20Extension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingOptions20Extension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ImagingOptions20Extension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingOptions20Extension", propOrder = { "any", "imageStabilization", "extension" }) public class ImagingOptions20Extension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "ImageStabilization") protected ImageStabilizationOptions imageStabilization; @XmlElement(name = "Extension") protected ImagingOptions20Extension2 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der imageStabilization-Eigenschaft ab. * * @return possible object is {@link ImageStabilizationOptions } * */ public ImageStabilizationOptions getImageStabilization() { return imageStabilization; } /** * Legt den Wert der imageStabilization-Eigenschaft fest. * * @param value * allowed object is {@link ImageStabilizationOptions } * */ public void setImageStabilization(ImageStabilizationOptions value) { this.imageStabilization = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ImagingOptions20Extension2 } * */ public ImagingOptions20Extension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ImagingOptions20Extension2 } * */ public void setExtension(ImagingOptions20Extension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingOptions20Extension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ImagingOptions20Extension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingOptions20Extension2", propOrder = { "irCutFilterAutoAdjustment", "extension" }) public class ImagingOptions20Extension2 { @XmlElement(name = "IrCutFilterAutoAdjustment") protected IrCutFilterAutoAdjustmentOptions irCutFilterAutoAdjustment; @XmlElement(name = "Extension") protected ImagingOptions20Extension3 extension; /** * Ruft den Wert der irCutFilterAutoAdjustment-Eigenschaft ab. * * @return possible object is {@link IrCutFilterAutoAdjustmentOptions } * */ public IrCutFilterAutoAdjustmentOptions getIrCutFilterAutoAdjustment() { return irCutFilterAutoAdjustment; } /** * Legt den Wert der irCutFilterAutoAdjustment-Eigenschaft fest. * * @param value * allowed object is {@link IrCutFilterAutoAdjustmentOptions } * */ public void setIrCutFilterAutoAdjustment(IrCutFilterAutoAdjustmentOptions value) { this.irCutFilterAutoAdjustment = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ImagingOptions20Extension3 } * */ public ImagingOptions20Extension3 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ImagingOptions20Extension3 } * */ public void setExtension(ImagingOptions20Extension3 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingOptions20Extension3.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ImagingOptions20Extension3 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingOptions20Extension3", propOrder = { "any" }) public class ImagingOptions20Extension3 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingOptions20Extension4.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

Java-Klasse fr ImagingOptions20Extension4 complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="ImagingOptions20Extension4">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <any processContents='lax' namespace='http://www.onvif.org/ver10/schema' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingOptions20Extension4", propOrder = { "any" }) public class ImagingOptions20Extension4 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingSettings.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r ImagingSettings complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingSettings", propOrder = { "backlightCompensation", "brightness", "colorSaturation", "contrast", "exposure", "focus", "irCutFilter", "sharpness", "wideDynamicRange", "whiteBalance", "extension" }) public class ImagingSettings { @XmlElement(name = "BacklightCompensation") protected BacklightCompensation backlightCompensation; @XmlElement(name = "Brightness") protected Float brightness; @XmlElement(name = "ColorSaturation") protected Float colorSaturation; @XmlElement(name = "Contrast") protected Float contrast; @XmlElement(name = "Exposure") protected Exposure exposure; @XmlElement(name = "Focus") protected FocusConfiguration focus; @XmlElement(name = "IrCutFilter") protected IrCutFilterMode irCutFilter; @XmlElement(name = "Sharpness") protected Float sharpness; @XmlElement(name = "WideDynamicRange") protected WideDynamicRange wideDynamicRange; @XmlElement(name = "WhiteBalance") protected WhiteBalance whiteBalance; @XmlElement(name = "Extension") protected ImagingSettingsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der backlightCompensation-Eigenschaft ab. * * @return possible object is {@link BacklightCompensation } * */ public BacklightCompensation getBacklightCompensation() { return backlightCompensation; } /** * Legt den Wert der backlightCompensation-Eigenschaft fest. * * @param value * allowed object is {@link BacklightCompensation } * */ public void setBacklightCompensation(BacklightCompensation value) { this.backlightCompensation = value; } /** * Ruft den Wert der brightness-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getBrightness() { return brightness; } /** * Legt den Wert der brightness-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setBrightness(Float value) { this.brightness = value; } /** * Ruft den Wert der colorSaturation-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getColorSaturation() { return colorSaturation; } /** * Legt den Wert der colorSaturation-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setColorSaturation(Float value) { this.colorSaturation = value; } /** * Ruft den Wert der contrast-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getContrast() { return contrast; } /** * Legt den Wert der contrast-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setContrast(Float value) { this.contrast = value; } /** * Ruft den Wert der exposure-Eigenschaft ab. * * @return possible object is {@link Exposure } * */ public Exposure getExposure() { return exposure; } /** * Legt den Wert der exposure-Eigenschaft fest. * * @param value * allowed object is {@link Exposure } * */ public void setExposure(Exposure value) { this.exposure = value; } /** * Ruft den Wert der focus-Eigenschaft ab. * * @return possible object is {@link FocusConfiguration } * */ public FocusConfiguration getFocus() { return focus; } /** * Legt den Wert der focus-Eigenschaft fest. * * @param value * allowed object is {@link FocusConfiguration } * */ public void setFocus(FocusConfiguration value) { this.focus = value; } /** * Ruft den Wert der irCutFilter-Eigenschaft ab. * * @return possible object is {@link IrCutFilterMode } * */ public IrCutFilterMode getIrCutFilter() { return irCutFilter; } /** * Legt den Wert der irCutFilter-Eigenschaft fest. * * @param value * allowed object is {@link IrCutFilterMode } * */ public void setIrCutFilter(IrCutFilterMode value) { this.irCutFilter = value; } /** * Ruft den Wert der sharpness-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getSharpness() { return sharpness; } /** * Legt den Wert der sharpness-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setSharpness(Float value) { this.sharpness = value; } /** * Ruft den Wert der wideDynamicRange-Eigenschaft ab. * * @return possible object is {@link WideDynamicRange } * */ public WideDynamicRange getWideDynamicRange() { return wideDynamicRange; } /** * Legt den Wert der wideDynamicRange-Eigenschaft fest. * * @param value * allowed object is {@link WideDynamicRange } * */ public void setWideDynamicRange(WideDynamicRange value) { this.wideDynamicRange = value; } /** * Ruft den Wert der whiteBalance-Eigenschaft ab. * * @return possible object is {@link WhiteBalance } * */ public WhiteBalance getWhiteBalance() { return whiteBalance; } /** * Legt den Wert der whiteBalance-Eigenschaft fest. * * @param value * allowed object is {@link WhiteBalance } * */ public void setWhiteBalance(WhiteBalance value) { this.whiteBalance = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ImagingSettingsExtension } * */ public ImagingSettingsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ImagingSettingsExtension } * */ public void setExtension(ImagingSettingsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingSettings20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * Type describing the ImagingSettings of a VideoSource. The supported options and ranges can be obtained via the GetOptions command. * *

* Java-Klasse f�r ImagingSettings20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingSettings20", propOrder = { "backlightCompensation", "brightness", "colorSaturation", "contrast", "exposure", "focus", "irCutFilter", "sharpness", "wideDynamicRange", "whiteBalance", "extension" }) public class ImagingSettings20 { @XmlElement(name = "BacklightCompensation") protected BacklightCompensation20 backlightCompensation; @XmlElement(name = "Brightness") protected Float brightness; @XmlElement(name = "ColorSaturation") protected Float colorSaturation; @XmlElement(name = "Contrast") protected Float contrast; @XmlElement(name = "Exposure") protected Exposure20 exposure; @XmlElement(name = "Focus") protected FocusConfiguration20 focus; @XmlElement(name = "IrCutFilter") protected IrCutFilterMode irCutFilter; @XmlElement(name = "Sharpness") protected Float sharpness; @XmlElement(name = "WideDynamicRange") protected WideDynamicRange20 wideDynamicRange; @XmlElement(name = "WhiteBalance") protected WhiteBalance20 whiteBalance; @XmlElement(name = "Extension") protected ImagingSettingsExtension20 extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der backlightCompensation-Eigenschaft ab. * * @return possible object is {@link BacklightCompensation20 } * */ public BacklightCompensation20 getBacklightCompensation() { return backlightCompensation; } /** * Legt den Wert der backlightCompensation-Eigenschaft fest. * * @param value * allowed object is {@link BacklightCompensation20 } * */ public void setBacklightCompensation(BacklightCompensation20 value) { this.backlightCompensation = value; } /** * Ruft den Wert der brightness-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getBrightness() { return brightness; } /** * Legt den Wert der brightness-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setBrightness(Float value) { this.brightness = value; } /** * Ruft den Wert der colorSaturation-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getColorSaturation() { return colorSaturation; } /** * Legt den Wert der colorSaturation-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setColorSaturation(Float value) { this.colorSaturation = value; } /** * Ruft den Wert der contrast-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getContrast() { return contrast; } /** * Legt den Wert der contrast-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setContrast(Float value) { this.contrast = value; } /** * Ruft den Wert der exposure-Eigenschaft ab. * * @return possible object is {@link Exposure20 } * */ public Exposure20 getExposure() { return exposure; } /** * Legt den Wert der exposure-Eigenschaft fest. * * @param value * allowed object is {@link Exposure20 } * */ public void setExposure(Exposure20 value) { this.exposure = value; } /** * Ruft den Wert der focus-Eigenschaft ab. * * @return possible object is {@link FocusConfiguration20 } * */ public FocusConfiguration20 getFocus() { return focus; } /** * Legt den Wert der focus-Eigenschaft fest. * * @param value * allowed object is {@link FocusConfiguration20 } * */ public void setFocus(FocusConfiguration20 value) { this.focus = value; } /** * Ruft den Wert der irCutFilter-Eigenschaft ab. * * @return possible object is {@link IrCutFilterMode } * */ public IrCutFilterMode getIrCutFilter() { return irCutFilter; } /** * Legt den Wert der irCutFilter-Eigenschaft fest. * * @param value * allowed object is {@link IrCutFilterMode } * */ public void setIrCutFilter(IrCutFilterMode value) { this.irCutFilter = value; } /** * Ruft den Wert der sharpness-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getSharpness() { return sharpness; } /** * Legt den Wert der sharpness-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setSharpness(Float value) { this.sharpness = value; } /** * Ruft den Wert der wideDynamicRange-Eigenschaft ab. * * @return possible object is {@link WideDynamicRange20 } * */ public WideDynamicRange20 getWideDynamicRange() { return wideDynamicRange; } /** * Legt den Wert der wideDynamicRange-Eigenschaft fest. * * @param value * allowed object is {@link WideDynamicRange20 } * */ public void setWideDynamicRange(WideDynamicRange20 value) { this.wideDynamicRange = value; } /** * Ruft den Wert der whiteBalance-Eigenschaft ab. * * @return possible object is {@link WhiteBalance20 } * */ public WhiteBalance20 getWhiteBalance() { return whiteBalance; } /** * Legt den Wert der whiteBalance-Eigenschaft fest. * * @param value * allowed object is {@link WhiteBalance20 } * */ public void setWhiteBalance(WhiteBalance20 value) { this.whiteBalance = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ImagingSettingsExtension20 } * */ public ImagingSettingsExtension20 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ImagingSettingsExtension20 } * */ public void setExtension(ImagingSettingsExtension20 value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingSettingsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ImagingSettingsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingSettingsExtension", propOrder = { "any" }) public class ImagingSettingsExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingSettingsExtension20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ImagingSettingsExtension20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingSettingsExtension20", propOrder = { "any", "imageStabilization", "extension" }) public class ImagingSettingsExtension20 { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "ImageStabilization") protected ImageStabilization imageStabilization; @XmlElement(name = "Extension") protected ImagingSettingsExtension202 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der imageStabilization-Eigenschaft ab. * * @return possible object is {@link ImageStabilization } * */ public ImageStabilization getImageStabilization() { return imageStabilization; } /** * Legt den Wert der imageStabilization-Eigenschaft fest. * * @param value * allowed object is {@link ImageStabilization } * */ public void setImageStabilization(ImageStabilization value) { this.imageStabilization = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ImagingSettingsExtension202 } * */ public ImagingSettingsExtension202 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ImagingSettingsExtension202 } * */ public void setExtension(ImagingSettingsExtension202 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingSettingsExtension202.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ImagingSettingsExtension202 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingSettingsExtension202", propOrder = { "irCutFilterAutoAdjustment", "extension" }) public class ImagingSettingsExtension202 { @XmlElement(name = "IrCutFilterAutoAdjustment") protected List irCutFilterAutoAdjustment; @XmlElement(name = "Extension") protected ImagingSettingsExtension203 extension; /** * Gets the value of the irCutFilterAutoAdjustment property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the irCutFilterAutoAdjustment property. * *

* For example, to add a new item, do as follows: * *

	 * getIrCutFilterAutoAdjustment().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link IrCutFilterAutoAdjustment } * * */ public List getIrCutFilterAutoAdjustment() { if (irCutFilterAutoAdjustment == null) { irCutFilterAutoAdjustment = new ArrayList(); } return this.irCutFilterAutoAdjustment; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ImagingSettingsExtension203 } * */ public ImagingSettingsExtension203 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ImagingSettingsExtension203 } * */ public void setExtension(ImagingSettingsExtension203 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingSettingsExtension203.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ImagingSettingsExtension203 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingSettingsExtension203", propOrder = { "any" }) public class ImagingSettingsExtension203 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingSettingsExtension204.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

Java-Klasse fr ImagingSettingsExtension204 complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="ImagingSettingsExtension204">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <any processContents='lax' namespace='http://www.onvif.org/ver10/schema' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingSettingsExtension204", propOrder = { "any" }) public class ImagingSettingsExtension204 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingStatus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ImagingStatus complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingStatus", propOrder = { "focusStatus", "any" }) public class ImagingStatus { @XmlElement(name = "FocusStatus", required = true) protected FocusStatus focusStatus; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der focusStatus-Eigenschaft ab. * * @return possible object is {@link FocusStatus } * */ public FocusStatus getFocusStatus() { return focusStatus; } /** * Legt den Wert der focusStatus-Eigenschaft fest. * * @param value * allowed object is {@link FocusStatus } * */ public void setFocusStatus(FocusStatus value) { this.focusStatus = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingStatus20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r ImagingStatus20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingStatus20", propOrder = { "focusStatus20", "extension" }) public class ImagingStatus20 { @XmlElement(name = "FocusStatus20") protected FocusStatus20 focusStatus20; @XmlElement(name = "Extension") protected ImagingStatus20Extension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der focusStatus20-Eigenschaft ab. * * @return possible object is {@link FocusStatus20 } * */ public FocusStatus20 getFocusStatus20() { return focusStatus20; } /** * Legt den Wert der focusStatus20-Eigenschaft fest. * * @param value * allowed object is {@link FocusStatus20 } * */ public void setFocusStatus20(FocusStatus20 value) { this.focusStatus20 = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ImagingStatus20Extension } * */ public ImagingStatus20Extension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ImagingStatus20Extension } * */ public void setExtension(ImagingStatus20Extension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ImagingStatus20Extension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ImagingStatus20Extension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImagingStatus20Extension", propOrder = { "any" }) public class ImagingStatus20Extension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/IntList.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * List of values. * *

* Java-Klasse f�r IntList complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IntList", propOrder = { "items" }) public class IntList { @XmlElement(name = "Items", type = Integer.class) protected List items; /** * Gets the value of the items property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the items property. * *

* For example, to add a new item, do as follows: * *

	 * getItems().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Integer } * * */ public List getItems() { if (items == null) { items = new ArrayList(); } return this.items; } } ================================================ FILE: src/org/onvif/ver10/schema/IntRange.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Range of values greater equal Min value and less equal Max value. * *

* Java-Klasse f�r IntRange complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IntRange", propOrder = { "min", "max" }) public class IntRange { @XmlElement(name = "Min") protected int min; @XmlElement(name = "Max") protected int max; /** * Ruft den Wert der min-Eigenschaft ab. * */ public int getMin() { return min; } /** * Legt den Wert der min-Eigenschaft fest. * */ public void setMin(int value) { this.min = value; } /** * Ruft den Wert der max-Eigenschaft ab. * */ public int getMax() { return max; } /** * Legt den Wert der max-Eigenschaft fest. * */ public void setMax(int value) { this.max = value; } } ================================================ FILE: src/org/onvif/ver10/schema/IntRectangle.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * Rectangle defined by lower left corner position and size. Units are pixel. * *

* Java-Klasse f�r IntRectangle complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IntRectangle") public class IntRectangle { @XmlAttribute(name = "x", required = true) protected int x; @XmlAttribute(name = "y", required = true) protected int y; @XmlAttribute(name = "width", required = true) protected int width; @XmlAttribute(name = "height", required = true) protected int height; /** * Ruft den Wert der x-Eigenschaft ab. * */ public int getX() { return x; } /** * Legt den Wert der x-Eigenschaft fest. * */ public void setX(int value) { this.x = value; } /** * Ruft den Wert der y-Eigenschaft ab. * */ public int getY() { return y; } /** * Legt den Wert der y-Eigenschaft fest. * */ public void setY(int value) { this.y = value; } /** * Ruft den Wert der width-Eigenschaft ab. * */ public int getWidth() { return width; } /** * Legt den Wert der width-Eigenschaft fest. * */ public void setWidth(int value) { this.width = value; } /** * Ruft den Wert der height-Eigenschaft ab. * */ public int getHeight() { return height; } /** * Legt den Wert der height-Eigenschaft fest. * */ public void setHeight(int value) { this.height = value; } } ================================================ FILE: src/org/onvif/ver10/schema/IntRectangleRange.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Range of a rectangle. The rectangle itself is defined by lower left corner position and size. Units are pixel. * *

* Java-Klasse f�r IntRectangleRange complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IntRectangleRange", propOrder = { "xRange", "yRange", "widthRange", "heightRange" }) public class IntRectangleRange { @XmlElement(name = "XRange", required = true) protected IntRange xRange; @XmlElement(name = "YRange", required = true) protected IntRange yRange; @XmlElement(name = "WidthRange", required = true) protected IntRange widthRange; @XmlElement(name = "HeightRange", required = true) protected IntRange heightRange; /** * Ruft den Wert der xRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getXRange() { return xRange; } /** * Legt den Wert der xRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setXRange(IntRange value) { this.xRange = value; } /** * Ruft den Wert der yRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getYRange() { return yRange; } /** * Legt den Wert der yRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setYRange(IntRange value) { this.yRange = value; } /** * Ruft den Wert der widthRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getWidthRange() { return widthRange; } /** * Legt den Wert der widthRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setWidthRange(IntRange value) { this.widthRange = value; } /** * Ruft den Wert der heightRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getHeightRange() { return heightRange; } /** * Legt den Wert der heightRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setHeightRange(IntRange value) { this.heightRange = value; } } ================================================ FILE: src/org/onvif/ver10/schema/IrCutFilterAutoAdjustment.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r IrCutFilterAutoAdjustment complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IrCutFilterAutoAdjustment", propOrder = { "boundaryType", "boundaryOffset", "responseTime", "extension" }) public class IrCutFilterAutoAdjustment { @XmlElement(name = "BoundaryType", required = true) protected String boundaryType; @XmlElement(name = "BoundaryOffset") protected Float boundaryOffset; @XmlElement(name = "ResponseTime") protected Duration responseTime; @XmlElement(name = "Extension") protected IrCutFilterAutoAdjustmentExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der boundaryType-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getBoundaryType() { return boundaryType; } /** * Legt den Wert der boundaryType-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setBoundaryType(String value) { this.boundaryType = value; } /** * Ruft den Wert der boundaryOffset-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getBoundaryOffset() { return boundaryOffset; } /** * Legt den Wert der boundaryOffset-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setBoundaryOffset(Float value) { this.boundaryOffset = value; } /** * Ruft den Wert der responseTime-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getResponseTime() { return responseTime; } /** * Legt den Wert der responseTime-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setResponseTime(Duration value) { this.responseTime = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link IrCutFilterAutoAdjustmentExtension } * */ public IrCutFilterAutoAdjustmentExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link IrCutFilterAutoAdjustmentExtension } * */ public void setExtension(IrCutFilterAutoAdjustmentExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/IrCutFilterAutoAdjustmentExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r IrCutFilterAutoAdjustmentExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IrCutFilterAutoAdjustmentExtension", propOrder = { "any" }) public class IrCutFilterAutoAdjustmentExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/IrCutFilterAutoAdjustmentOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r IrCutFilterAutoAdjustmentOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IrCutFilterAutoAdjustmentOptions", propOrder = { "boundaryType", "boundaryOffset", "responseTimeRange", "extension" }) public class IrCutFilterAutoAdjustmentOptions { @XmlElement(name = "BoundaryType", required = true) protected List boundaryType; @XmlElement(name = "BoundaryOffset") protected Boolean boundaryOffset; @XmlElement(name = "ResponseTimeRange") protected DurationRange responseTimeRange; @XmlElement(name = "Extension") protected IrCutFilterAutoAdjustmentOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the boundaryType property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the boundaryType property. * *

* For example, to add a new item, do as follows: * *

	 * getBoundaryType().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getBoundaryType() { if (boundaryType == null) { boundaryType = new ArrayList(); } return this.boundaryType; } /** * Ruft den Wert der boundaryOffset-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isBoundaryOffset() { return boundaryOffset; } /** * Legt den Wert der boundaryOffset-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setBoundaryOffset(Boolean value) { this.boundaryOffset = value; } /** * Ruft den Wert der responseTimeRange-Eigenschaft ab. * * @return possible object is {@link DurationRange } * */ public DurationRange getResponseTimeRange() { return responseTimeRange; } /** * Legt den Wert der responseTimeRange-Eigenschaft fest. * * @param value * allowed object is {@link DurationRange } * */ public void setResponseTimeRange(DurationRange value) { this.responseTimeRange = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link IrCutFilterAutoAdjustmentOptionsExtension } * */ public IrCutFilterAutoAdjustmentOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link IrCutFilterAutoAdjustmentOptionsExtension } * */ public void setExtension(IrCutFilterAutoAdjustmentOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/IrCutFilterAutoAdjustmentOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r IrCutFilterAutoAdjustmentOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IrCutFilterAutoAdjustmentOptionsExtension", propOrder = { "any" }) public class IrCutFilterAutoAdjustmentOptionsExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/IrCutFilterAutoBoundaryType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r IrCutFilterAutoBoundaryType. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "IrCutFilterAutoBoundaryType") @XmlEnum public enum IrCutFilterAutoBoundaryType { @XmlEnumValue("Common") COMMON("Common"), @XmlEnumValue("ToOn") TO_ON("ToOn"), @XmlEnumValue("ToOff") TO_OFF("ToOff"), @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; IrCutFilterAutoBoundaryType(String v) { value = v; } public String value() { return value; } public static IrCutFilterAutoBoundaryType fromValue(String v) { for (IrCutFilterAutoBoundaryType c : IrCutFilterAutoBoundaryType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/IrCutFilterMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r IrCutFilterMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "IrCutFilterMode") @XmlEnum public enum IrCutFilterMode { ON, OFF, AUTO; public String value() { return name(); } public static IrCutFilterMode fromValue(String v) { return valueOf(v); } } ================================================ FILE: src/org/onvif/ver10/schema/ItemList.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * * List of parameters according to the corresponding ItemListDescription. Each item in the list shall have a unique name. * * *

* Java-Klasse f�r ItemList complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *           
 *             
 *               
 *                 
 *                 
 *               
 *             
 *           
 *         
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *                 
 *               
 *             
 *           
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ItemList", propOrder = { "simpleItem", "elementItem", "extension" }) public class ItemList { @XmlElement(name = "SimpleItem") protected List simpleItem; @XmlElement(name = "ElementItem") protected List elementItem; @XmlElement(name = "Extension") protected ItemListExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the simpleItem property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the simpleItem property. * *

* For example, to add a new item, do as follows: * *

	 * getSimpleItem().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ItemList.SimpleItem } * * */ public List getSimpleItem() { if (simpleItem == null) { simpleItem = new ArrayList(); } return this.simpleItem; } /** * Gets the value of the elementItem property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the elementItem property. * *

* For example, to add a new item, do as follows: * *

	 * getElementItem().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ItemList.ElementItem } * * */ public List getElementItem() { if (elementItem == null) { elementItem = new ArrayList(); } return this.elementItem; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ItemListExtension } * */ public ItemListExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ItemListExtension } * */ public void setExtension(ItemListExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *         
	 *       
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) public static class ElementItem { @XmlAnyElement(lax = true) protected java.lang.Object any; @XmlAttribute(name = "Name", required = true) protected String name; /** * Ruft den Wert der any-Eigenschaft ab. * * @return possible object is {@link java.lang.Object } * */ public java.lang.Object getAny() { return any; } /** * Legt den Wert der any-Eigenschaft fest. * * @param value * allowed object is {@link java.lang.Object } * */ public void setAny(java.lang.Object value) { this.any = value; } /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class SimpleItem { @XmlAttribute(name = "Name", required = true) protected String name; @XmlAttribute(name = "Value", required = true) @XmlSchemaType(name = "anySimpleType") protected String value; /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der value-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getValue() { return value; } /** * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setValue(String value) { this.value = value; } } } ================================================ FILE: src/org/onvif/ver10/schema/ItemListDescription.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * * Describes a list of items. Each item in the list shall have a unique name. The list is designed as linear structure without optional or unbounded elements. Use ElementItems only * when complex structures are inevitable. * * *

* Java-Klasse f�r ItemListDescription complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *           
 *             
 *               
 *                 
 *                 
 *               
 *             
 *           
 *         
 *         
 *           
 *             
 *               
 *                 
 *                 
 *               
 *             
 *           
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ItemListDescription", propOrder = { "simpleItemDescription", "elementItemDescription", "extension" }) public class ItemListDescription { @XmlElement(name = "SimpleItemDescription") protected List simpleItemDescription; @XmlElement(name = "ElementItemDescription") protected List elementItemDescription; @XmlElement(name = "Extension") protected ItemListDescriptionExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the simpleItemDescription property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the simpleItemDescription property. * *

* For example, to add a new item, do as follows: * *

	 * getSimpleItemDescription().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ItemListDescription.SimpleItemDescription } * * */ public List getSimpleItemDescription() { if (simpleItemDescription == null) { simpleItemDescription = new ArrayList(); } return this.simpleItemDescription; } /** * Gets the value of the elementItemDescription property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the elementItemDescription property. * *

* For example, to add a new item, do as follows: * *

	 * getElementItemDescription().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ItemListDescription.ElementItemDescription } * * */ public List getElementItemDescription() { if (elementItemDescription == null) { elementItemDescription = new ArrayList(); } return this.elementItemDescription; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ItemListDescriptionExtension } * */ public ItemListDescriptionExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ItemListDescriptionExtension } * */ public void setExtension(ItemListDescriptionExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class ElementItemDescription { @XmlAttribute(name = "Name", required = true) protected String name; @XmlAttribute(name = "Type", required = true) protected QName type; /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link QName } * */ public QName getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link QName } * */ public void setType(QName value) { this.type = value; } } /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

	 * 
	 *   
	 *     
	 *       
	 *       
	 *     
	 *   
	 * 
	 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class SimpleItemDescription { @XmlAttribute(name = "Name", required = true) protected String name; @XmlAttribute(name = "Type", required = true) protected QName type; /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link QName } * */ public QName getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link QName } * */ public void setType(QName value) { this.type = value; } } } ================================================ FILE: src/org/onvif/ver10/schema/ItemListDescriptionExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ItemListDescriptionExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ItemListDescriptionExtension", propOrder = { "any" }) public class ItemListDescriptionExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/ItemListExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ItemListExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ItemListExtension", propOrder = { "any" }) public class ItemListExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/JpegDecOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r JpegDecOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "JpegDecOptions", propOrder = { "resolutionsAvailable", "supportedInputBitrate", "supportedFrameRate", "any" }) public class JpegDecOptions { @XmlElement(name = "ResolutionsAvailable", required = true) protected List resolutionsAvailable; @XmlElement(name = "SupportedInputBitrate", required = true) protected IntRange supportedInputBitrate; @XmlElement(name = "SupportedFrameRate", required = true) protected IntRange supportedFrameRate; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the resolutionsAvailable property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the resolutionsAvailable property. * *

* For example, to add a new item, do as follows: * *

	 * getResolutionsAvailable().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoResolution } * * */ public List getResolutionsAvailable() { if (resolutionsAvailable == null) { resolutionsAvailable = new ArrayList(); } return this.resolutionsAvailable; } /** * Ruft den Wert der supportedInputBitrate-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getSupportedInputBitrate() { return supportedInputBitrate; } /** * Legt den Wert der supportedInputBitrate-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setSupportedInputBitrate(IntRange value) { this.supportedInputBitrate = value; } /** * Ruft den Wert der supportedFrameRate-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getSupportedFrameRate() { return supportedFrameRate; } /** * Legt den Wert der supportedFrameRate-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setSupportedFrameRate(IntRange value) { this.supportedFrameRate = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/JpegOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r JpegOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "JpegOptions", propOrder = { "resolutionsAvailable", "frameRateRange", "encodingIntervalRange" }) @XmlSeeAlso({ JpegOptions2.class }) public class JpegOptions { @XmlElement(name = "ResolutionsAvailable", required = true) protected List resolutionsAvailable; @XmlElement(name = "FrameRateRange", required = true) protected IntRange frameRateRange; @XmlElement(name = "EncodingIntervalRange", required = true) protected IntRange encodingIntervalRange; /** * Gets the value of the resolutionsAvailable property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the resolutionsAvailable property. * *

* For example, to add a new item, do as follows: * *

	 * getResolutionsAvailable().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoResolution } * * */ public List getResolutionsAvailable() { if (resolutionsAvailable == null) { resolutionsAvailable = new ArrayList(); } return this.resolutionsAvailable; } /** * Ruft den Wert der frameRateRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getFrameRateRange() { return frameRateRange; } /** * Legt den Wert der frameRateRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setFrameRateRange(IntRange value) { this.frameRateRange = value; } /** * Ruft den Wert der encodingIntervalRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getEncodingIntervalRange() { return encodingIntervalRange; } /** * Legt den Wert der encodingIntervalRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setEncodingIntervalRange(IntRange value) { this.encodingIntervalRange = value; } } ================================================ FILE: src/org/onvif/ver10/schema/JpegOptions2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r JpegOptions2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "JpegOptions2", propOrder = { "bitrateRange", "any" }) public class JpegOptions2 extends JpegOptions { @XmlElement(name = "BitrateRange", required = true) protected IntRange bitrateRange; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der bitrateRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getBitrateRange() { return bitrateRange; } /** * Legt den Wert der bitrateRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setBitrateRange(IntRange value) { this.bitrateRange = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Layout.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * A layout describes a set of Video windows that are displayed simultaniously on a display. * *

* Java-Klasse f�r Layout complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Layout", propOrder = { "paneLayout", "extension" }) public class Layout { @XmlElement(name = "PaneLayout", required = true) protected List paneLayout; @XmlElement(name = "Extension") protected LayoutExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the paneLayout property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the paneLayout property. * *

* For example, to add a new item, do as follows: * *

	 * getPaneLayout().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PaneLayout } * * */ public List getPaneLayout() { if (paneLayout == null) { paneLayout = new ArrayList(); } return this.paneLayout; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link LayoutExtension } * */ public LayoutExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link LayoutExtension } * */ public void setExtension(LayoutExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/LayoutExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r LayoutExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LayoutExtension", propOrder = { "any" }) public class LayoutExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/LayoutOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * The options supported for a display layout. * *

* Java-Klasse f�r LayoutOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LayoutOptions", propOrder = { "paneLayoutOptions", "extension" }) public class LayoutOptions { @XmlElement(name = "PaneLayoutOptions", required = true) protected List paneLayoutOptions; @XmlElement(name = "Extension") protected LayoutOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the paneLayoutOptions property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the paneLayoutOptions property. * *

* For example, to add a new item, do as follows: * *

	 * getPaneLayoutOptions().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PaneLayoutOptions } * * */ public List getPaneLayoutOptions() { if (paneLayoutOptions == null) { paneLayoutOptions = new ArrayList(); } return this.paneLayoutOptions; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link LayoutOptionsExtension } * */ public LayoutOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link LayoutOptionsExtension } * */ public void setExtension(LayoutOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/LayoutOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r LayoutOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LayoutOptionsExtension", propOrder = { "any" }) public class LayoutOptionsExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/LensDescription.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr LensDescription complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="LensDescription">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Offset" type="{http://www.onvif.org/ver10/schema}LensOffset"/>
 *         <element name="Projection" type="{http://www.onvif.org/ver10/schema}LensProjection" maxOccurs="unbounded"/>
 *         <element name="XFactor" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="FocalLength" type="{http://www.w3.org/2001/XMLSchema}float" />
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LensDescription", propOrder = { "offset", "projection", "xFactor", "any" }) public class LensDescription { @XmlElement(name = "Offset", required = true) protected LensOffset offset; @XmlElement(name = "Projection", required = true) protected List projection; @XmlElement(name = "XFactor") protected float xFactor; @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "FocalLength") protected Float focalLength; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der offset-Eigenschaft ab. * * @return * possible object is * {@link LensOffset } * */ public LensOffset getOffset() { return offset; } /** * Legt den Wert der offset-Eigenschaft fest. * * @param value * allowed object is * {@link LensOffset } * */ public void setOffset(LensOffset value) { this.offset = value; } /** * Gets the value of the projection property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the projection property. * *

* For example, to add a new item, do as follows: *

     *    getProjection().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link LensProjection } * * */ public List getProjection() { if (projection == null) { projection = new ArrayList(); } return this.projection; } /** * Ruft den Wert der xFactor-Eigenschaft ab. * */ public float getXFactor() { return xFactor; } /** * Legt den Wert der xFactor-Eigenschaft fest. * */ public void setXFactor(float value) { this.xFactor = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der focalLength-Eigenschaft ab. * * @return * possible object is * {@link Float } * */ public Float getFocalLength() { return focalLength; } /** * Legt den Wert der focalLength-Eigenschaft fest. * * @param value * allowed object is * {@link Float } * */ public void setFocalLength(Float value) { this.focalLength = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/LensOffset.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

Java-Klasse fr LensOffset complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="LensOffset">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="x" type="{http://www.w3.org/2001/XMLSchema}float" />
 *       <attribute name="y" type="{http://www.w3.org/2001/XMLSchema}float" />
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LensOffset") public class LensOffset { @XmlAttribute(name = "x") protected Float x; @XmlAttribute(name = "y") protected Float y; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der x-Eigenschaft ab. * * @return * possible object is * {@link Float } * */ public Float getX() { return x; } /** * Legt den Wert der x-Eigenschaft fest. * * @param value * allowed object is * {@link Float } * */ public void setX(Float value) { this.x = value; } /** * Ruft den Wert der y-Eigenschaft ab. * * @return * possible object is * {@link Float } * */ public Float getY() { return y; } /** * Legt den Wert der y-Eigenschaft fest. * * @param value * allowed object is * {@link Float } * */ public void setY(Float value) { this.y = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/LensProjection.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr LensProjection complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="LensProjection">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Angle" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <element name="Radius" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <element name="Transmittance" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LensProjection", propOrder = { "angle", "radius", "transmittance", "any" }) public class LensProjection { @XmlElement(name = "Angle") protected float angle; @XmlElement(name = "Radius") protected float radius; @XmlElement(name = "Transmittance") protected Float transmittance; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der angle-Eigenschaft ab. * */ public float getAngle() { return angle; } /** * Legt den Wert der angle-Eigenschaft fest. * */ public void setAngle(float value) { this.angle = value; } /** * Ruft den Wert der radius-Eigenschaft ab. * */ public float getRadius() { return radius; } /** * Legt den Wert der radius-Eigenschaft fest. * */ public void setRadius(float value) { this.radius = value; } /** * Ruft den Wert der transmittance-Eigenschaft ab. * * @return * possible object is * {@link Float } * */ public Float getTransmittance() { return transmittance; } /** * Legt den Wert der transmittance-Eigenschaft fest. * * @param value * allowed object is * {@link Float } * */ public void setTransmittance(Float value) { this.transmittance = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MaximumNumberOfOSDs.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r MaximumNumberOfOSDs complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MaximumNumberOfOSDs") public class MaximumNumberOfOSDs { @XmlAttribute(name = "Total", required = true) protected int total; @XmlAttribute(name = "Image") protected Integer image; @XmlAttribute(name = "PlainText") protected Integer plainText; @XmlAttribute(name = "Date") protected Integer date; @XmlAttribute(name = "Time") protected Integer time; @XmlAttribute(name = "DateAndTime") protected Integer dateAndTime; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der total-Eigenschaft ab. * */ public int getTotal() { return total; } /** * Legt den Wert der total-Eigenschaft fest. * */ public void setTotal(int value) { this.total = value; } /** * Ruft den Wert der image-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getImage() { return image; } /** * Legt den Wert der image-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setImage(Integer value) { this.image = value; } /** * Ruft den Wert der plainText-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getPlainText() { return plainText; } /** * Legt den Wert der plainText-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setPlainText(Integer value) { this.plainText = value; } /** * Ruft den Wert der date-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getDate() { return date; } /** * Legt den Wert der date-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setDate(Integer value) { this.date = value; } /** * Ruft den Wert der time-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getTime() { return time; } /** * Legt den Wert der time-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setTime(Integer value) { this.time = value; } /** * Ruft den Wert der dateAndTime-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getDateAndTime() { return dateAndTime; } /** * Legt den Wert der dateAndTime-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setDateAndTime(Integer value) { this.dateAndTime = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MediaAttributes.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** * A set of media attributes valid for a recording at a point in time or for a time interval. * *

* Java-Klasse f�r MediaAttributes complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MediaAttributes", propOrder = { "recordingToken", "trackAttributes", "from", "until", "any" }) public class MediaAttributes { @XmlElement(name = "RecordingToken", required = true) protected String recordingToken; @XmlElement(name = "TrackAttributes") protected List trackAttributes; @XmlElement(name = "From", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar from; @XmlElement(name = "Until", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar until; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der recordingToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getRecordingToken() { return recordingToken; } /** * Legt den Wert der recordingToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setRecordingToken(String value) { this.recordingToken = value; } /** * Gets the value of the trackAttributes property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the trackAttributes property. * *

* For example, to add a new item, do as follows: * *

	 * getTrackAttributes().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link TrackAttributes } * * */ public List getTrackAttributes() { if (trackAttributes == null) { trackAttributes = new ArrayList(); } return this.trackAttributes; } /** * Ruft den Wert der from-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getFrom() { return from; } /** * Legt den Wert der from-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setFrom(XMLGregorianCalendar value) { this.from = value; } /** * Ruft den Wert der until-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getUntil() { return until; } /** * Legt den Wert der until-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setUntil(XMLGregorianCalendar value) { this.until = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MediaCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MediaCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MediaCapabilities", propOrder = { "xAddr", "streamingCapabilities", "any", "extension" }) public class MediaCapabilities { @XmlElement(name = "XAddr", required = true) @XmlSchemaType(name = "anyURI") protected String xAddr; @XmlElement(name = "StreamingCapabilities", required = true) protected RealTimeStreamingCapabilities streamingCapabilities; @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "Extension") protected MediaCapabilitiesExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der xAddr-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getXAddr() { return xAddr; } /** * Legt den Wert der xAddr-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setXAddr(String value) { this.xAddr = value; } /** * Ruft den Wert der streamingCapabilities-Eigenschaft ab. * * @return possible object is {@link RealTimeStreamingCapabilities } * */ public RealTimeStreamingCapabilities getStreamingCapabilities() { return streamingCapabilities; } /** * Legt den Wert der streamingCapabilities-Eigenschaft fest. * * @param value * allowed object is {@link RealTimeStreamingCapabilities } * */ public void setStreamingCapabilities(RealTimeStreamingCapabilities value) { this.streamingCapabilities = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link MediaCapabilitiesExtension } * */ public MediaCapabilitiesExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link MediaCapabilitiesExtension } * */ public void setExtension(MediaCapabilitiesExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MediaCapabilitiesExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MediaCapabilitiesExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MediaCapabilitiesExtension", propOrder = { "profileCapabilities", "any" }) public class MediaCapabilitiesExtension { @XmlElement(name = "ProfileCapabilities", required = true) protected ProfileCapabilities profileCapabilities; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der profileCapabilities-Eigenschaft ab. * * @return possible object is {@link ProfileCapabilities } * */ public ProfileCapabilities getProfileCapabilities() { return profileCapabilities; } /** * Legt den Wert der profileCapabilities-Eigenschaft fest. * * @param value * allowed object is {@link ProfileCapabilities } * */ public void setProfileCapabilities(ProfileCapabilities value) { this.profileCapabilities = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MediaUri.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MediaUri complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MediaUri", propOrder = { "uri", "invalidAfterConnect", "invalidAfterReboot", "timeout", "any" }) public class MediaUri { @XmlElement(name = "Uri", required = true) @XmlSchemaType(name = "anyURI") protected String uri; @XmlElement(name = "InvalidAfterConnect") protected boolean invalidAfterConnect; @XmlElement(name = "InvalidAfterReboot") protected boolean invalidAfterReboot; @XmlElement(name = "Timeout", required = true) protected Duration timeout; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der uri-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getUri() { return uri; } /** * Legt den Wert der uri-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setUri(String value) { this.uri = value; } /** * Ruft den Wert der invalidAfterConnect-Eigenschaft ab. * */ public boolean isInvalidAfterConnect() { return invalidAfterConnect; } /** * Legt den Wert der invalidAfterConnect-Eigenschaft fest. * */ public void setInvalidAfterConnect(boolean value) { this.invalidAfterConnect = value; } /** * Ruft den Wert der invalidAfterReboot-Eigenschaft ab. * */ public boolean isInvalidAfterReboot() { return invalidAfterReboot; } /** * Legt den Wert der invalidAfterReboot-Eigenschaft fest. * */ public void setInvalidAfterReboot(boolean value) { this.invalidAfterReboot = value; } /** * Ruft den Wert der timeout-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getTimeout() { return timeout; } /** * Legt den Wert der timeout-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setTimeout(Duration value) { this.timeout = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Merge.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Merge complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Merge", propOrder = { "from", "to" }) public class Merge { @XmlElement(required = true) protected List from; @XmlElement(required = true) protected ObjectId to; /** * Gets the value of the from property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the from property. * *

* For example, to add a new item, do as follows: * *

	 * getFrom().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ObjectId } * * */ public List getFrom() { if (from == null) { from = new ArrayList(); } return this.from; } /** * Ruft den Wert der to-Eigenschaft ab. * * @return possible object is {@link ObjectId } * */ public ObjectId getTo() { return to; } /** * Legt den Wert der to-Eigenschaft fest. * * @param value * allowed object is {@link ObjectId } * */ public void setTo(ObjectId value) { this.to = value; } } ================================================ FILE: src/org/onvif/ver10/schema/Message.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "source", "key", "data", "extension" }) @XmlRootElement(name = "Message") public class Message { @XmlElement(name = "Source") protected ItemList source; @XmlElement(name = "Key") protected ItemList key; @XmlElement(name = "Data") protected ItemList data; @XmlElement(name = "Extension") protected MessageExtension extension; @XmlAttribute(name = "UtcTime", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar utcTime; @XmlAttribute(name = "PropertyOperation") protected PropertyOperation propertyOperation; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der source-Eigenschaft ab. * * @return possible object is {@link ItemList } * */ public ItemList getSource() { return source; } /** * Legt den Wert der source-Eigenschaft fest. * * @param value * allowed object is {@link ItemList } * */ public void setSource(ItemList value) { this.source = value; } /** * Ruft den Wert der key-Eigenschaft ab. * * @return possible object is {@link ItemList } * */ public ItemList getKey() { return key; } /** * Legt den Wert der key-Eigenschaft fest. * * @param value * allowed object is {@link ItemList } * */ public void setKey(ItemList value) { this.key = value; } /** * Ruft den Wert der data-Eigenschaft ab. * * @return possible object is {@link ItemList } * */ public ItemList getData() { return data; } /** * Legt den Wert der data-Eigenschaft fest. * * @param value * allowed object is {@link ItemList } * */ public void setData(ItemList value) { this.data = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link MessageExtension } * */ public MessageExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link MessageExtension } * */ public void setExtension(MessageExtension value) { this.extension = value; } /** * Ruft den Wert der utcTime-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getUtcTime() { return utcTime; } /** * Legt den Wert der utcTime-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setUtcTime(XMLGregorianCalendar value) { this.utcTime = value; } /** * Ruft den Wert der propertyOperation-Eigenschaft ab. * * @return possible object is {@link PropertyOperation } * */ public PropertyOperation getPropertyOperation() { return propertyOperation; } /** * Legt den Wert der propertyOperation-Eigenschaft fest. * * @param value * allowed object is {@link PropertyOperation } * */ public void setPropertyOperation(PropertyOperation value) { this.propertyOperation = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MessageDescription.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r MessageDescription complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MessageDescription", propOrder = { "source", "key", "data", "extension" }) @XmlSeeAlso({ org.onvif.ver10.schema.ConfigDescription.Messages.class }) public class MessageDescription { @XmlElement(name = "Source") protected ItemListDescription source; @XmlElement(name = "Key") protected ItemListDescription key; @XmlElement(name = "Data") protected ItemListDescription data; @XmlElement(name = "Extension") protected MessageDescriptionExtension extension; @XmlAttribute(name = "IsProperty") protected Boolean isProperty; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der source-Eigenschaft ab. * * @return possible object is {@link ItemListDescription } * */ public ItemListDescription getSource() { return source; } /** * Legt den Wert der source-Eigenschaft fest. * * @param value * allowed object is {@link ItemListDescription } * */ public void setSource(ItemListDescription value) { this.source = value; } /** * Ruft den Wert der key-Eigenschaft ab. * * @return possible object is {@link ItemListDescription } * */ public ItemListDescription getKey() { return key; } /** * Legt den Wert der key-Eigenschaft fest. * * @param value * allowed object is {@link ItemListDescription } * */ public void setKey(ItemListDescription value) { this.key = value; } /** * Ruft den Wert der data-Eigenschaft ab. * * @return possible object is {@link ItemListDescription } * */ public ItemListDescription getData() { return data; } /** * Legt den Wert der data-Eigenschaft fest. * * @param value * allowed object is {@link ItemListDescription } * */ public void setData(ItemListDescription value) { this.data = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link MessageDescriptionExtension } * */ public MessageDescriptionExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link MessageDescriptionExtension } * */ public void setExtension(MessageDescriptionExtension value) { this.extension = value; } /** * Ruft den Wert der isProperty-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isIsProperty() { return isProperty; } /** * Legt den Wert der isProperty-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setIsProperty(Boolean value) { this.isProperty = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MessageDescriptionExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MessageDescriptionExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MessageDescriptionExtension", propOrder = { "any" }) public class MessageDescriptionExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/MessageExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MessageExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MessageExtension", propOrder = { "any" }) public class MessageExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/MetadataAttributes.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MetadataAttributes complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataAttributes", propOrder = { "canContainPTZ", "canContainAnalytics", "canContainNotifications", "any" }) public class MetadataAttributes { @XmlElement(name = "CanContainPTZ") protected boolean canContainPTZ; @XmlElement(name = "CanContainAnalytics") protected boolean canContainAnalytics; @XmlElement(name = "CanContainNotifications") protected boolean canContainNotifications; @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "PtzSpaces") protected List ptzSpaces; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der canContainPTZ-Eigenschaft ab. * */ public boolean isCanContainPTZ() { return canContainPTZ; } /** * Legt den Wert der canContainPTZ-Eigenschaft fest. * */ public void setCanContainPTZ(boolean value) { this.canContainPTZ = value; } /** * Ruft den Wert der canContainAnalytics-Eigenschaft ab. * */ public boolean isCanContainAnalytics() { return canContainAnalytics; } /** * Legt den Wert der canContainAnalytics-Eigenschaft fest. * */ public void setCanContainAnalytics(boolean value) { this.canContainAnalytics = value; } /** * Ruft den Wert der canContainNotifications-Eigenschaft ab. * */ public boolean isCanContainNotifications() { return canContainNotifications; } /** * Legt den Wert der canContainNotifications-Eigenschaft fest. * */ public void setCanContainNotifications(boolean value) { this.canContainNotifications = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets the value of the ptzSpaces property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the ptzSpaces property. * *

* For example, to add a new item, do as follows: * *

	 * getPtzSpaces().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getPtzSpaces() { if (ptzSpaces == null) { ptzSpaces = new ArrayList(); } return this.ptzSpaces; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MetadataCompressionType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr MetadataCompressionType. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

*

 * <simpleType name="MetadataCompressionType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="None"/>
 *     <enumeration value="GZIP"/>
 *     <enumeration value="EXI"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "MetadataCompressionType") @XmlEnum public enum MetadataCompressionType { @XmlEnumValue("None") NONE("None"), GZIP("GZIP"), EXI("EXI"); private final String value; MetadataCompressionType(String v) { value = v; } public String value() { return value; } public static MetadataCompressionType fromValue(String v) { for (MetadataCompressionType c: MetadataCompressionType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/MetadataConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MetadataConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataConfiguration", propOrder = { "ptzStatus", "events", "analytics", "multicast", "sessionTimeout", "any", "analyticsEngineConfiguration", "extension" }) public class MetadataConfiguration extends ConfigurationEntity { @XmlElement(name = "PTZStatus") protected PTZFilter ptzStatus; @XmlElement(name = "Events") protected EventSubscription events; @XmlElement(name = "Analytics") protected Boolean analytics; @XmlElement(name = "Multicast", required = true) protected MulticastConfiguration multicast; @XmlElement(name = "SessionTimeout", required = true) protected Duration sessionTimeout; @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "AnalyticsEngineConfiguration") protected AnalyticsEngineConfiguration analyticsEngineConfiguration; @XmlElement(name = "Extension") protected MetadataConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der ptzStatus-Eigenschaft ab. * * @return possible object is {@link PTZFilter } * */ public PTZFilter getPTZStatus() { return ptzStatus; } /** * Legt den Wert der ptzStatus-Eigenschaft fest. * * @param value * allowed object is {@link PTZFilter } * */ public void setPTZStatus(PTZFilter value) { this.ptzStatus = value; } /** * Ruft den Wert der events-Eigenschaft ab. * * @return possible object is {@link EventSubscription } * */ public EventSubscription getEvents() { return events; } /** * Legt den Wert der events-Eigenschaft fest. * * @param value * allowed object is {@link EventSubscription } * */ public void setEvents(EventSubscription value) { this.events = value; } /** * Ruft den Wert der analytics-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isAnalytics() { return analytics; } /** * Legt den Wert der analytics-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setAnalytics(Boolean value) { this.analytics = value; } /** * Ruft den Wert der multicast-Eigenschaft ab. * * @return possible object is {@link MulticastConfiguration } * */ public MulticastConfiguration getMulticast() { return multicast; } /** * Legt den Wert der multicast-Eigenschaft fest. * * @param value * allowed object is {@link MulticastConfiguration } * */ public void setMulticast(MulticastConfiguration value) { this.multicast = value; } /** * Ruft den Wert der sessionTimeout-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getSessionTimeout() { return sessionTimeout; } /** * Legt den Wert der sessionTimeout-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setSessionTimeout(Duration value) { this.sessionTimeout = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der analyticsEngineConfiguration-Eigenschaft ab. * * @return possible object is {@link AnalyticsEngineConfiguration } * */ public AnalyticsEngineConfiguration getAnalyticsEngineConfiguration() { return analyticsEngineConfiguration; } /** * Legt den Wert der analyticsEngineConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link AnalyticsEngineConfiguration } * */ public void setAnalyticsEngineConfiguration(AnalyticsEngineConfiguration value) { this.analyticsEngineConfiguration = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link MetadataConfigurationExtension } * */ public MetadataConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link MetadataConfigurationExtension } * */ public void setExtension(MetadataConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MetadataConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MetadataConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataConfigurationExtension", propOrder = { "any" }) public class MetadataConfigurationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/MetadataConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MetadataConfigurationOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataConfigurationOptions", propOrder = { "ptzStatusFilterOptions", "any" }) public class MetadataConfigurationOptions { @XmlElement(name = "PTZStatusFilterOptions", required = true) protected PTZStatusFilterOptions ptzStatusFilterOptions; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der ptzStatusFilterOptions-Eigenschaft ab. * * @return possible object is {@link PTZStatusFilterOptions } * */ public PTZStatusFilterOptions getPTZStatusFilterOptions() { return ptzStatusFilterOptions; } /** * Legt den Wert der ptzStatusFilterOptions-Eigenschaft fest. * * @param value * allowed object is {@link PTZStatusFilterOptions } * */ public void setPTZStatusFilterOptions(PTZStatusFilterOptions value) { this.ptzStatusFilterOptions = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MetadataConfigurationOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr MetadataConfigurationOptionsExtension complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="MetadataConfigurationOptionsExtension">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="CompressionType" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Extension" type="{http://www.onvif.org/ver10/schema}MetadataConfigurationOptionsExtension2" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataConfigurationOptionsExtension", propOrder = { "compressionType", "extension" }) public class MetadataConfigurationOptionsExtension { @XmlElement(name = "CompressionType") protected List compressionType; @XmlElement(name = "Extension") protected MetadataConfigurationOptionsExtension2 extension; /** * Gets the value of the compressionType property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the compressionType property. * *

* For example, to add a new item, do as follows: *

     *    getCompressionType().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getCompressionType() { if (compressionType == null) { compressionType = new ArrayList(); } return this.compressionType; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return * possible object is * {@link MetadataConfigurationOptionsExtension2 } * */ public MetadataConfigurationOptionsExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is * {@link MetadataConfigurationOptionsExtension2 } * */ public void setExtension(MetadataConfigurationOptionsExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/MetadataConfigurationOptionsExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

Java-Klasse fr MetadataConfigurationOptionsExtension2 complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="MetadataConfigurationOptionsExtension2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <any processContents='lax' namespace='http://www.onvif.org/ver10/schema' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataConfigurationOptionsExtension2", propOrder = { "any" }) public class MetadataConfigurationOptionsExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/MetadataFilter.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MetadataFilter complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataFilter", propOrder = { "metadataStreamFilter", "any" }) public class MetadataFilter { @XmlElement(name = "MetadataStreamFilter", required = true) protected String metadataStreamFilter; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der metadataStreamFilter-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getMetadataStreamFilter() { return metadataStreamFilter; } /** * Legt den Wert der metadataStreamFilter-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setMetadataStreamFilter(String value) { this.metadataStreamFilter = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MetadataInput.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r MetadataInput complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataInput", propOrder = { "metadataConfig", "extension" }) public class MetadataInput { @XmlElement(name = "MetadataConfig") protected List metadataConfig; @XmlElement(name = "Extension") protected MetadataInputExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the metadataConfig property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the metadataConfig property. * *

* For example, to add a new item, do as follows: * *

	 * getMetadataConfig().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Config } * * */ public List getMetadataConfig() { if (metadataConfig == null) { metadataConfig = new ArrayList(); } return this.metadataConfig; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link MetadataInputExtension } * */ public MetadataInputExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link MetadataInputExtension } * */ public void setExtension(MetadataInputExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MetadataInputExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MetadataInputExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataInputExtension", propOrder = { "any" }) public class MetadataInputExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/MetadataStream.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElements; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r MetadataStream complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *           
 *           
 *           
 *           
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataStream", propOrder = { "videoAnalyticsOrPTZOrEvent" }) public class MetadataStream { @XmlElements({ @XmlElement(name = "VideoAnalytics", type = VideoAnalyticsStream.class), @XmlElement(name = "PTZ", type = PTZStream.class), @XmlElement(name = "Event", type = EventStream.class), @XmlElement(name = "Extension", type = MetadataStreamExtension.class) }) protected List videoAnalyticsOrPTZOrEvent; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the videoAnalyticsOrPTZOrEvent property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the videoAnalyticsOrPTZOrEvent property. * *

* For example, to add a new item, do as follows: * *

	 * getVideoAnalyticsOrPTZOrEvent().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoAnalyticsStream } {@link PTZStream } {@link EventStream } {@link MetadataStreamExtension } * * */ public List getVideoAnalyticsOrPTZOrEvent() { if (videoAnalyticsOrPTZOrEvent == null) { videoAnalyticsOrPTZOrEvent = new ArrayList(); } return this.videoAnalyticsOrPTZOrEvent; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MetadataStreamExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MetadataStreamExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataStreamExtension", propOrder = { "any", "audioAnalyticsStream", "extension" }) public class MetadataStreamExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "AudioAnalyticsStream") protected AudioAnalyticsStream audioAnalyticsStream; @XmlElement(name = "Extension") protected MetadataStreamExtension2 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der audioAnalyticsStream-Eigenschaft ab. * * @return possible object is {@link AudioAnalyticsStream } * */ public AudioAnalyticsStream getAudioAnalyticsStream() { return audioAnalyticsStream; } /** * Legt den Wert der audioAnalyticsStream-Eigenschaft fest. * * @param value * allowed object is {@link AudioAnalyticsStream } * */ public void setAudioAnalyticsStream(AudioAnalyticsStream value) { this.audioAnalyticsStream = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link MetadataStreamExtension2 } * */ public MetadataStreamExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link MetadataStreamExtension2 } * */ public void setExtension(MetadataStreamExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/MetadataStreamExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MetadataStreamExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataStreamExtension2", propOrder = { "any" }) public class MetadataStreamExtension2 { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ModeOfOperation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ModeOfOperation. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "ModeOfOperation") @XmlEnum public enum ModeOfOperation { @XmlEnumValue("Idle") IDLE("Idle"), @XmlEnumValue("Active") ACTIVE("Active"), /** * This case should never happen. * */ @XmlEnumValue("Unknown") UNKNOWN("Unknown"); private final String value; ModeOfOperation(String v) { value = v; } public String value() { return value; } public static ModeOfOperation fromValue(String v) { for (ModeOfOperation c : ModeOfOperation.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/MotionExpression.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MotionExpression complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MotionExpression", propOrder = { "expression", "any" }) public class MotionExpression { @XmlElement(name = "Expression", required = true) protected String expression; @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "Type") protected String type; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der expression-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getExpression() { return expression; } /** * Legt den Wert der expression-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setExpression(String value) { this.expression = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MotionExpressionConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MotionExpressionConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MotionExpressionConfiguration", propOrder = { "motionExpression", "any" }) public class MotionExpressionConfiguration { @XmlElement(name = "MotionExpression", required = true) protected MotionExpression motionExpression; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der motionExpression-Eigenschaft ab. * * @return possible object is {@link MotionExpression } * */ public MotionExpression getMotionExpression() { return motionExpression; } /** * Legt den Wert der motionExpression-Eigenschaft fest. * * @param value * allowed object is {@link MotionExpression } * */ public void setMotionExpression(MotionExpression value) { this.motionExpression = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MotionInCells.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.math.BigInteger; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MotionInCells complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MotionInCells", propOrder = { "any" }) public class MotionInCells { @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "Columns", required = true) protected BigInteger columns; @XmlAttribute(name = "Rows", required = true) protected BigInteger rows; @XmlAttribute(name = "Cells", required = true) protected byte[] cells; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der columns-Eigenschaft ab. * * @return possible object is {@link BigInteger } * */ public BigInteger getColumns() { return columns; } /** * Legt den Wert der columns-Eigenschaft fest. * * @param value * allowed object is {@link BigInteger } * */ public void setColumns(BigInteger value) { this.columns = value; } /** * Ruft den Wert der rows-Eigenschaft ab. * * @return possible object is {@link BigInteger } * */ public BigInteger getRows() { return rows; } /** * Legt den Wert der rows-Eigenschaft fest. * * @param value * allowed object is {@link BigInteger } * */ public void setRows(BigInteger value) { this.rows = value; } /** * Ruft den Wert der cells-Eigenschaft ab. * * @return possible object is byte[] */ public byte[] getCells() { return cells; } /** * Legt den Wert der cells-Eigenschaft fest. * * @param value * allowed object is byte[] */ public void setCells(byte[] value) { this.cells = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/MoveOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r MoveOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MoveOptions", propOrder = { "absolute", "relative", "continuous" }) public class MoveOptions { @XmlElement(name = "Absolute") protected AbsoluteFocusOptions absolute; @XmlElement(name = "Relative") protected RelativeFocusOptions relative; @XmlElement(name = "Continuous") protected ContinuousFocusOptions continuous; /** * Ruft den Wert der absolute-Eigenschaft ab. * * @return possible object is {@link AbsoluteFocusOptions } * */ public AbsoluteFocusOptions getAbsolute() { return absolute; } /** * Legt den Wert der absolute-Eigenschaft fest. * * @param value * allowed object is {@link AbsoluteFocusOptions } * */ public void setAbsolute(AbsoluteFocusOptions value) { this.absolute = value; } /** * Ruft den Wert der relative-Eigenschaft ab. * * @return possible object is {@link RelativeFocusOptions } * */ public RelativeFocusOptions getRelative() { return relative; } /** * Legt den Wert der relative-Eigenschaft fest. * * @param value * allowed object is {@link RelativeFocusOptions } * */ public void setRelative(RelativeFocusOptions value) { this.relative = value; } /** * Ruft den Wert der continuous-Eigenschaft ab. * * @return possible object is {@link ContinuousFocusOptions } * */ public ContinuousFocusOptions getContinuous() { return continuous; } /** * Legt den Wert der continuous-Eigenschaft fest. * * @param value * allowed object is {@link ContinuousFocusOptions } * */ public void setContinuous(ContinuousFocusOptions value) { this.continuous = value; } } ================================================ FILE: src/org/onvif/ver10/schema/MoveOptions20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r MoveOptions20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MoveOptions20", propOrder = { "absolute", "relative", "continuous" }) public class MoveOptions20 { @XmlElement(name = "Absolute") protected AbsoluteFocusOptions absolute; @XmlElement(name = "Relative") protected RelativeFocusOptions20 relative; @XmlElement(name = "Continuous") protected ContinuousFocusOptions continuous; /** * Ruft den Wert der absolute-Eigenschaft ab. * * @return possible object is {@link AbsoluteFocusOptions } * */ public AbsoluteFocusOptions getAbsolute() { return absolute; } /** * Legt den Wert der absolute-Eigenschaft fest. * * @param value * allowed object is {@link AbsoluteFocusOptions } * */ public void setAbsolute(AbsoluteFocusOptions value) { this.absolute = value; } /** * Ruft den Wert der relative-Eigenschaft ab. * * @return possible object is {@link RelativeFocusOptions20 } * */ public RelativeFocusOptions20 getRelative() { return relative; } /** * Legt den Wert der relative-Eigenschaft fest. * * @param value * allowed object is {@link RelativeFocusOptions20 } * */ public void setRelative(RelativeFocusOptions20 value) { this.relative = value; } /** * Ruft den Wert der continuous-Eigenschaft ab. * * @return possible object is {@link ContinuousFocusOptions } * */ public ContinuousFocusOptions getContinuous() { return continuous; } /** * Legt den Wert der continuous-Eigenschaft fest. * * @param value * allowed object is {@link ContinuousFocusOptions } * */ public void setContinuous(ContinuousFocusOptions value) { this.continuous = value; } } ================================================ FILE: src/org/onvif/ver10/schema/MoveStatus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r MoveStatus. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "MoveStatus") @XmlEnum public enum MoveStatus { IDLE, MOVING, UNKNOWN; public String value() { return name(); } public static MoveStatus fromValue(String v) { return valueOf(v); } } ================================================ FILE: src/org/onvif/ver10/schema/Mpeg4Configuration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Mpeg4Configuration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Mpeg4Configuration", propOrder = { "govLength", "mpeg4Profile" }) public class Mpeg4Configuration { @XmlElement(name = "GovLength") protected int govLength; @XmlElement(name = "Mpeg4Profile", required = true) protected Mpeg4Profile mpeg4Profile; /** * Ruft den Wert der govLength-Eigenschaft ab. * */ public int getGovLength() { return govLength; } /** * Legt den Wert der govLength-Eigenschaft fest. * */ public void setGovLength(int value) { this.govLength = value; } /** * Ruft den Wert der mpeg4Profile-Eigenschaft ab. * * @return possible object is {@link Mpeg4Profile } * */ public Mpeg4Profile getMpeg4Profile() { return mpeg4Profile; } /** * Legt den Wert der mpeg4Profile-Eigenschaft fest. * * @param value * allowed object is {@link Mpeg4Profile } * */ public void setMpeg4Profile(Mpeg4Profile value) { this.mpeg4Profile = value; } } ================================================ FILE: src/org/onvif/ver10/schema/Mpeg4DecOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Mpeg4DecOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Mpeg4DecOptions", propOrder = { "resolutionsAvailable", "supportedMpeg4Profiles", "supportedInputBitrate", "supportedFrameRate", "any" }) public class Mpeg4DecOptions { @XmlElement(name = "ResolutionsAvailable", required = true) protected List resolutionsAvailable; @XmlElement(name = "SupportedMpeg4Profiles", required = true) protected List supportedMpeg4Profiles; @XmlElement(name = "SupportedInputBitrate", required = true) protected IntRange supportedInputBitrate; @XmlElement(name = "SupportedFrameRate", required = true) protected IntRange supportedFrameRate; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the resolutionsAvailable property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the resolutionsAvailable property. * *

* For example, to add a new item, do as follows: * *

	 * getResolutionsAvailable().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoResolution } * * */ public List getResolutionsAvailable() { if (resolutionsAvailable == null) { resolutionsAvailable = new ArrayList(); } return this.resolutionsAvailable; } /** * Gets the value of the supportedMpeg4Profiles property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the supportedMpeg4Profiles property. * *

* For example, to add a new item, do as follows: * *

	 * getSupportedMpeg4Profiles().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Mpeg4Profile } * * */ public List getSupportedMpeg4Profiles() { if (supportedMpeg4Profiles == null) { supportedMpeg4Profiles = new ArrayList(); } return this.supportedMpeg4Profiles; } /** * Ruft den Wert der supportedInputBitrate-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getSupportedInputBitrate() { return supportedInputBitrate; } /** * Legt den Wert der supportedInputBitrate-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setSupportedInputBitrate(IntRange value) { this.supportedInputBitrate = value; } /** * Ruft den Wert der supportedFrameRate-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getSupportedFrameRate() { return supportedFrameRate; } /** * Legt den Wert der supportedFrameRate-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setSupportedFrameRate(IntRange value) { this.supportedFrameRate = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Mpeg4Options.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Mpeg4Options complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Mpeg4Options", propOrder = { "resolutionsAvailable", "govLengthRange", "frameRateRange", "encodingIntervalRange", "mpeg4ProfilesSupported" }) @XmlSeeAlso({ Mpeg4Options2.class }) public class Mpeg4Options { @XmlElement(name = "ResolutionsAvailable", required = true) protected List resolutionsAvailable; @XmlElement(name = "GovLengthRange", required = true) protected IntRange govLengthRange; @XmlElement(name = "FrameRateRange", required = true) protected IntRange frameRateRange; @XmlElement(name = "EncodingIntervalRange", required = true) protected IntRange encodingIntervalRange; @XmlElement(name = "Mpeg4ProfilesSupported", required = true) protected List mpeg4ProfilesSupported; /** * Gets the value of the resolutionsAvailable property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the resolutionsAvailable property. * *

* For example, to add a new item, do as follows: * *

	 * getResolutionsAvailable().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link VideoResolution } * * */ public List getResolutionsAvailable() { if (resolutionsAvailable == null) { resolutionsAvailable = new ArrayList(); } return this.resolutionsAvailable; } /** * Ruft den Wert der govLengthRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getGovLengthRange() { return govLengthRange; } /** * Legt den Wert der govLengthRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setGovLengthRange(IntRange value) { this.govLengthRange = value; } /** * Ruft den Wert der frameRateRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getFrameRateRange() { return frameRateRange; } /** * Legt den Wert der frameRateRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setFrameRateRange(IntRange value) { this.frameRateRange = value; } /** * Ruft den Wert der encodingIntervalRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getEncodingIntervalRange() { return encodingIntervalRange; } /** * Legt den Wert der encodingIntervalRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setEncodingIntervalRange(IntRange value) { this.encodingIntervalRange = value; } /** * Gets the value of the mpeg4ProfilesSupported property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the mpeg4ProfilesSupported property. * *

* For example, to add a new item, do as follows: * *

	 * getMpeg4ProfilesSupported().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Mpeg4Profile } * * */ public List getMpeg4ProfilesSupported() { if (mpeg4ProfilesSupported == null) { mpeg4ProfilesSupported = new ArrayList(); } return this.mpeg4ProfilesSupported; } } ================================================ FILE: src/org/onvif/ver10/schema/Mpeg4Options2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Mpeg4Options2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Mpeg4Options2", propOrder = { "bitrateRange", "any" }) public class Mpeg4Options2 extends Mpeg4Options { @XmlElement(name = "BitrateRange", required = true) protected IntRange bitrateRange; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der bitrateRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getBitrateRange() { return bitrateRange; } /** * Legt den Wert der bitrateRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setBitrateRange(IntRange value) { this.bitrateRange = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Mpeg4Profile.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Mpeg4Profile. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "Mpeg4Profile") @XmlEnum public enum Mpeg4Profile { SP, ASP; public String value() { return name(); } public static Mpeg4Profile fromValue(String v) { return valueOf(v); } } ================================================ FILE: src/org/onvif/ver10/schema/MulticastConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MulticastConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MulticastConfiguration", propOrder = { "address", "port", "ttl", "autoStart", "any" }) public class MulticastConfiguration { @XmlElement(name = "Address", required = true) protected IPAddress address; @XmlElement(name = "Port") protected int port; @XmlElement(name = "TTL") protected int ttl; @XmlElement(name = "AutoStart") protected boolean autoStart; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der address-Eigenschaft ab. * * @return possible object is {@link IPAddress } * */ public IPAddress getAddress() { return address; } /** * Legt den Wert der address-Eigenschaft fest. * * @param value * allowed object is {@link IPAddress } * */ public void setAddress(IPAddress value) { this.address = value; } /** * Ruft den Wert der port-Eigenschaft ab. * */ public int getPort() { return port; } /** * Legt den Wert der port-Eigenschaft fest. * */ public void setPort(int value) { this.port = value; } /** * Ruft den Wert der ttl-Eigenschaft ab. * */ public int getTTL() { return ttl; } /** * Legt den Wert der ttl-Eigenschaft fest. * */ public void setTTL(int value) { this.ttl = value; } /** * Ruft den Wert der autoStart-Eigenschaft ab. * */ public boolean isAutoStart() { return autoStart; } /** * Legt den Wert der autoStart-Eigenschaft fest. * */ public void setAutoStart(boolean value) { this.autoStart = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/NTPInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r NTPInformation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NTPInformation", propOrder = { "fromDHCP", "ntpFromDHCP", "ntpManual", "extension" }) public class NTPInformation { @XmlElement(name = "FromDHCP") protected boolean fromDHCP; @XmlElement(name = "NTPFromDHCP") protected List ntpFromDHCP; @XmlElement(name = "NTPManual") protected List ntpManual; @XmlElement(name = "Extension") protected NTPInformationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der fromDHCP-Eigenschaft ab. * */ public boolean isFromDHCP() { return fromDHCP; } /** * Legt den Wert der fromDHCP-Eigenschaft fest. * */ public void setFromDHCP(boolean value) { this.fromDHCP = value; } /** * Gets the value of the ntpFromDHCP property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the ntpFromDHCP property. * *

* For example, to add a new item, do as follows: * *

	 * getNTPFromDHCP().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link NetworkHost } * * */ public List getNTPFromDHCP() { if (ntpFromDHCP == null) { ntpFromDHCP = new ArrayList(); } return this.ntpFromDHCP; } /** * Gets the value of the ntpManual property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the ntpManual property. * *

* For example, to add a new item, do as follows: * *

	 * getNTPManual().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link NetworkHost } * * */ public List getNTPManual() { if (ntpManual == null) { ntpManual = new ArrayList(); } return this.ntpManual; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link NTPInformationExtension } * */ public NTPInformationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link NTPInformationExtension } * */ public void setExtension(NTPInformationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/NTPInformationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r NTPInformationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NTPInformationExtension", propOrder = { "any" }) public class NTPInformationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r NetworkCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkCapabilities", propOrder = { "ipFilter", "zeroConfiguration", "ipVersion6", "dynDNS", "extension" }) public class NetworkCapabilities { @XmlElement(name = "IPFilter") protected Boolean ipFilter; @XmlElement(name = "ZeroConfiguration") protected Boolean zeroConfiguration; @XmlElement(name = "IPVersion6") protected Boolean ipVersion6; @XmlElement(name = "DynDNS") protected Boolean dynDNS; @XmlElement(name = "Extension") protected NetworkCapabilitiesExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der ipFilter-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isIPFilter() { return ipFilter; } /** * Legt den Wert der ipFilter-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setIPFilter(Boolean value) { this.ipFilter = value; } /** * Ruft den Wert der zeroConfiguration-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isZeroConfiguration() { return zeroConfiguration; } /** * Legt den Wert der zeroConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setZeroConfiguration(Boolean value) { this.zeroConfiguration = value; } /** * Ruft den Wert der ipVersion6-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isIPVersion6() { return ipVersion6; } /** * Legt den Wert der ipVersion6-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setIPVersion6(Boolean value) { this.ipVersion6 = value; } /** * Ruft den Wert der dynDNS-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isDynDNS() { return dynDNS; } /** * Legt den Wert der dynDNS-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setDynDNS(Boolean value) { this.dynDNS = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link NetworkCapabilitiesExtension } * */ public NetworkCapabilitiesExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link NetworkCapabilitiesExtension } * */ public void setExtension(NetworkCapabilitiesExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkCapabilitiesExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r NetworkCapabilitiesExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkCapabilitiesExtension", propOrder = { "any", "dot11Configuration", "extension" }) public class NetworkCapabilitiesExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "Dot11Configuration") protected Boolean dot11Configuration; @XmlElement(name = "Extension") protected NetworkCapabilitiesExtension2 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der dot11Configuration-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isDot11Configuration() { return dot11Configuration; } /** * Legt den Wert der dot11Configuration-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setDot11Configuration(Boolean value) { this.dot11Configuration = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link NetworkCapabilitiesExtension2 } * */ public NetworkCapabilitiesExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link NetworkCapabilitiesExtension2 } * */ public void setExtension(NetworkCapabilitiesExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkCapabilitiesExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r NetworkCapabilitiesExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkCapabilitiesExtension2", propOrder = { "any" }) public class NetworkCapabilitiesExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkGateway.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

* Java-Klasse f�r NetworkGateway complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkGateway", propOrder = { "iPv4Address", "iPv6Address" }) public class NetworkGateway { @XmlElement(name = "IPv4Address") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected List iPv4Address; @XmlElement(name = "IPv6Address") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected List iPv6Address; /** * Gets the value of the iPv4Address property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the iPv4Address property. * *

* For example, to add a new item, do as follows: * *

	 * getIPv4Address().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getIPv4Address() { if (iPv4Address == null) { iPv4Address = new ArrayList(); } return this.iPv4Address; } /** * Gets the value of the iPv6Address property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the iPv6Address property. * *

* For example, to add a new item, do as follows: * *

	 * getIPv6Address().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getIPv6Address() { if (iPv6Address == null) { iPv6Address = new ArrayList(); } return this.iPv6Address; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkHost.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r NetworkHost complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkHost", propOrder = { "type", "iPv4Address", "iPv6Address", "dnSname", "extension" }) public class NetworkHost { @XmlElement(name = "Type", required = true) protected NetworkHostType type; @XmlElement(name = "IPv4Address") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String iPv4Address; @XmlElement(name = "IPv6Address") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String iPv6Address; @XmlElement(name = "DNSname") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String dnSname; @XmlElement(name = "Extension") protected NetworkHostExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link NetworkHostType } * */ public NetworkHostType getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link NetworkHostType } * */ public void setType(NetworkHostType value) { this.type = value; } /** * Ruft den Wert der iPv4Address-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getIPv4Address() { return iPv4Address; } /** * Legt den Wert der iPv4Address-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setIPv4Address(String value) { this.iPv4Address = value; } /** * Ruft den Wert der iPv6Address-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getIPv6Address() { return iPv6Address; } /** * Legt den Wert der iPv6Address-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setIPv6Address(String value) { this.iPv6Address = value; } /** * Ruft den Wert der dnSname-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDNSname() { return dnSname; } /** * Legt den Wert der dnSname-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDNSname(String value) { this.dnSname = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link NetworkHostExtension } * */ public NetworkHostExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link NetworkHostExtension } * */ public void setExtension(NetworkHostExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkHostExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r NetworkHostExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkHostExtension", propOrder = { "any" }) public class NetworkHostExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkHostType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r NetworkHostType. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "NetworkHostType") @XmlEnum public enum NetworkHostType { @XmlEnumValue("IPv4") I_PV_4("IPv4"), @XmlEnumValue("IPv6") I_PV_6("IPv6"), DNS("DNS"); private final String value; NetworkHostType(String v) { value = v; } public String value() { return value; } public static NetworkHostType fromValue(String v) { for (NetworkHostType c : NetworkHostType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkInterface.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r NetworkInterface complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkInterface", propOrder = { "enabled", "info", "link", "iPv4", "iPv6", "extension" }) public class NetworkInterface extends DeviceEntity { @XmlElement(name = "Enabled") protected boolean enabled; @XmlElement(name = "Info") protected NetworkInterfaceInfo info; @XmlElement(name = "Link") protected NetworkInterfaceLink link; @XmlElement(name = "IPv4") protected IPv4NetworkInterface iPv4; @XmlElement(name = "IPv6") protected IPv6NetworkInterface iPv6; @XmlElement(name = "Extension") protected NetworkInterfaceExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der enabled-Eigenschaft ab. * */ public boolean isEnabled() { return enabled; } /** * Legt den Wert der enabled-Eigenschaft fest. * */ public void setEnabled(boolean value) { this.enabled = value; } /** * Ruft den Wert der info-Eigenschaft ab. * * @return possible object is {@link NetworkInterfaceInfo } * */ public NetworkInterfaceInfo getInfo() { return info; } /** * Legt den Wert der info-Eigenschaft fest. * * @param value * allowed object is {@link NetworkInterfaceInfo } * */ public void setInfo(NetworkInterfaceInfo value) { this.info = value; } /** * Ruft den Wert der link-Eigenschaft ab. * * @return possible object is {@link NetworkInterfaceLink } * */ public NetworkInterfaceLink getLink() { return link; } /** * Legt den Wert der link-Eigenschaft fest. * * @param value * allowed object is {@link NetworkInterfaceLink } * */ public void setLink(NetworkInterfaceLink value) { this.link = value; } /** * Ruft den Wert der iPv4-Eigenschaft ab. * * @return possible object is {@link IPv4NetworkInterface } * */ public IPv4NetworkInterface getIPv4() { return iPv4; } /** * Legt den Wert der iPv4-Eigenschaft fest. * * @param value * allowed object is {@link IPv4NetworkInterface } * */ public void setIPv4(IPv4NetworkInterface value) { this.iPv4 = value; } /** * Ruft den Wert der iPv6-Eigenschaft ab. * * @return possible object is {@link IPv6NetworkInterface } * */ public IPv6NetworkInterface getIPv6() { return iPv6; } /** * Legt den Wert der iPv6-Eigenschaft fest. * * @param value * allowed object is {@link IPv6NetworkInterface } * */ public void setIPv6(IPv6NetworkInterface value) { this.iPv6 = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link NetworkInterfaceExtension } * */ public NetworkInterfaceExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link NetworkInterfaceExtension } * */ public void setExtension(NetworkInterfaceExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkInterfaceConnectionSetting.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r NetworkInterfaceConnectionSetting complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkInterfaceConnectionSetting", propOrder = { "autoNegotiation", "speed", "duplex" }) public class NetworkInterfaceConnectionSetting { @XmlElement(name = "AutoNegotiation") protected boolean autoNegotiation; @XmlElement(name = "Speed") protected int speed; @XmlElement(name = "Duplex", required = true) protected Duplex duplex; /** * Ruft den Wert der autoNegotiation-Eigenschaft ab. * */ public boolean isAutoNegotiation() { return autoNegotiation; } /** * Legt den Wert der autoNegotiation-Eigenschaft fest. * */ public void setAutoNegotiation(boolean value) { this.autoNegotiation = value; } /** * Ruft den Wert der speed-Eigenschaft ab. * */ public int getSpeed() { return speed; } /** * Legt den Wert der speed-Eigenschaft fest. * */ public void setSpeed(int value) { this.speed = value; } /** * Ruft den Wert der duplex-Eigenschaft ab. * * @return possible object is {@link Duplex } * */ public Duplex getDuplex() { return duplex; } /** * Legt den Wert der duplex-Eigenschaft fest. * * @param value * allowed object is {@link Duplex } * */ public void setDuplex(Duplex value) { this.duplex = value; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkInterfaceExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r NetworkInterfaceExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkInterfaceExtension", propOrder = { "any", "interfaceType", "dot3", "dot11", "extension" }) public class NetworkInterfaceExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "InterfaceType") protected int interfaceType; @XmlElement(name = "Dot3") protected List dot3; @XmlElement(name = "Dot11") protected List dot11; @XmlElement(name = "Extension") protected NetworkInterfaceExtension2 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der interfaceType-Eigenschaft ab. * */ public int getInterfaceType() { return interfaceType; } /** * Legt den Wert der interfaceType-Eigenschaft fest. * */ public void setInterfaceType(int value) { this.interfaceType = value; } /** * Gets the value of the dot3 property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the dot3 property. * *

* For example, to add a new item, do as follows: * *

	 * getDot3().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Dot3Configuration } * * */ public List getDot3() { if (dot3 == null) { dot3 = new ArrayList(); } return this.dot3; } /** * Gets the value of the dot11 property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the dot11 property. * *

* For example, to add a new item, do as follows: * *

	 * getDot11().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Dot11Configuration } * * */ public List getDot11() { if (dot11 == null) { dot11 = new ArrayList(); } return this.dot11; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link NetworkInterfaceExtension2 } * */ public NetworkInterfaceExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link NetworkInterfaceExtension2 } * */ public void setExtension(NetworkInterfaceExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkInterfaceExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r NetworkInterfaceExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkInterfaceExtension2", propOrder = { "any" }) public class NetworkInterfaceExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkInterfaceInfo.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

* Java-Klasse f�r NetworkInterfaceInfo complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkInterfaceInfo", propOrder = { "name", "hwAddress", "mtu" }) public class NetworkInterfaceInfo { @XmlElement(name = "Name") protected String name; @XmlElement(name = "HwAddress", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String hwAddress; @XmlElement(name = "MTU") protected Integer mtu; /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der hwAddress-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getHwAddress() { return hwAddress; } /** * Legt den Wert der hwAddress-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setHwAddress(String value) { this.hwAddress = value; } /** * Ruft den Wert der mtu-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getMTU() { return mtu; } /** * Legt den Wert der mtu-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setMTU(Integer value) { this.mtu = value; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkInterfaceLink.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r NetworkInterfaceLink complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkInterfaceLink", propOrder = { "adminSettings", "operSettings", "interfaceType" }) public class NetworkInterfaceLink { @XmlElement(name = "AdminSettings", required = true) protected NetworkInterfaceConnectionSetting adminSettings; @XmlElement(name = "OperSettings", required = true) protected NetworkInterfaceConnectionSetting operSettings; @XmlElement(name = "InterfaceType") protected int interfaceType; /** * Ruft den Wert der adminSettings-Eigenschaft ab. * * @return possible object is {@link NetworkInterfaceConnectionSetting } * */ public NetworkInterfaceConnectionSetting getAdminSettings() { return adminSettings; } /** * Legt den Wert der adminSettings-Eigenschaft fest. * * @param value * allowed object is {@link NetworkInterfaceConnectionSetting } * */ public void setAdminSettings(NetworkInterfaceConnectionSetting value) { this.adminSettings = value; } /** * Ruft den Wert der operSettings-Eigenschaft ab. * * @return possible object is {@link NetworkInterfaceConnectionSetting } * */ public NetworkInterfaceConnectionSetting getOperSettings() { return operSettings; } /** * Legt den Wert der operSettings-Eigenschaft fest. * * @param value * allowed object is {@link NetworkInterfaceConnectionSetting } * */ public void setOperSettings(NetworkInterfaceConnectionSetting value) { this.operSettings = value; } /** * Ruft den Wert der interfaceType-Eigenschaft ab. * */ public int getInterfaceType() { return interfaceType; } /** * Legt den Wert der interfaceType-Eigenschaft fest. * */ public void setInterfaceType(int value) { this.interfaceType = value; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkInterfaceSetConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r NetworkInterfaceSetConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkInterfaceSetConfiguration", propOrder = { "enabled", "link", "mtu", "iPv4", "iPv6", "extension" }) public class NetworkInterfaceSetConfiguration { @XmlElement(name = "Enabled") protected Boolean enabled; @XmlElement(name = "Link") protected NetworkInterfaceConnectionSetting link; @XmlElement(name = "MTU") protected Integer mtu; @XmlElement(name = "IPv4") protected IPv4NetworkInterfaceSetConfiguration iPv4; @XmlElement(name = "IPv6") protected IPv6NetworkInterfaceSetConfiguration iPv6; @XmlElement(name = "Extension") protected NetworkInterfaceSetConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der enabled-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isEnabled() { return enabled; } /** * Legt den Wert der enabled-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setEnabled(Boolean value) { this.enabled = value; } /** * Ruft den Wert der link-Eigenschaft ab. * * @return possible object is {@link NetworkInterfaceConnectionSetting } * */ public NetworkInterfaceConnectionSetting getLink() { return link; } /** * Legt den Wert der link-Eigenschaft fest. * * @param value * allowed object is {@link NetworkInterfaceConnectionSetting } * */ public void setLink(NetworkInterfaceConnectionSetting value) { this.link = value; } /** * Ruft den Wert der mtu-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getMTU() { return mtu; } /** * Legt den Wert der mtu-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setMTU(Integer value) { this.mtu = value; } /** * Ruft den Wert der iPv4-Eigenschaft ab. * * @return possible object is {@link IPv4NetworkInterfaceSetConfiguration } * */ public IPv4NetworkInterfaceSetConfiguration getIPv4() { return iPv4; } /** * Legt den Wert der iPv4-Eigenschaft fest. * * @param value * allowed object is {@link IPv4NetworkInterfaceSetConfiguration } * */ public void setIPv4(IPv4NetworkInterfaceSetConfiguration value) { this.iPv4 = value; } /** * Ruft den Wert der iPv6-Eigenschaft ab. * * @return possible object is {@link IPv6NetworkInterfaceSetConfiguration } * */ public IPv6NetworkInterfaceSetConfiguration getIPv6() { return iPv6; } /** * Legt den Wert der iPv6-Eigenschaft fest. * * @param value * allowed object is {@link IPv6NetworkInterfaceSetConfiguration } * */ public void setIPv6(IPv6NetworkInterfaceSetConfiguration value) { this.iPv6 = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link NetworkInterfaceSetConfigurationExtension } * */ public NetworkInterfaceSetConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link NetworkInterfaceSetConfigurationExtension } * */ public void setExtension(NetworkInterfaceSetConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkInterfaceSetConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r NetworkInterfaceSetConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkInterfaceSetConfigurationExtension", propOrder = { "any", "dot3", "dot11", "extension" }) public class NetworkInterfaceSetConfigurationExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "Dot3") protected List dot3; @XmlElement(name = "Dot11") protected List dot11; @XmlElement(name = "Extension") protected NetworkInterfaceSetConfigurationExtension2 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets the value of the dot3 property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the dot3 property. * *

* For example, to add a new item, do as follows: * *

	 * getDot3().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Dot3Configuration } * * */ public List getDot3() { if (dot3 == null) { dot3 = new ArrayList(); } return this.dot3; } /** * Gets the value of the dot11 property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the dot11 property. * *

* For example, to add a new item, do as follows: * *

	 * getDot11().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Dot11Configuration } * * */ public List getDot11() { if (dot11 == null) { dot11 = new ArrayList(); } return this.dot11; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link NetworkInterfaceSetConfigurationExtension2 } * */ public NetworkInterfaceSetConfigurationExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link NetworkInterfaceSetConfigurationExtension2 } * */ public void setExtension(NetworkInterfaceSetConfigurationExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkInterfaceSetConfigurationExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r NetworkInterfaceSetConfigurationExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkInterfaceSetConfigurationExtension2", propOrder = { "any" }) public class NetworkInterfaceSetConfigurationExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkProtocol.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r NetworkProtocol complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkProtocol", propOrder = { "name", "enabled", "port", "extension" }) public class NetworkProtocol { @XmlElement(name = "Name", required = true) protected NetworkProtocolType name; @XmlElement(name = "Enabled") protected boolean enabled; @XmlElement(name = "Port", type = Integer.class) protected List port; @XmlElement(name = "Extension") protected NetworkProtocolExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link NetworkProtocolType } * */ public NetworkProtocolType getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link NetworkProtocolType } * */ public void setName(NetworkProtocolType value) { this.name = value; } /** * Ruft den Wert der enabled-Eigenschaft ab. * */ public boolean isEnabled() { return enabled; } /** * Legt den Wert der enabled-Eigenschaft fest. * */ public void setEnabled(boolean value) { this.enabled = value; } /** * Gets the value of the port property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the port property. * *

* For example, to add a new item, do as follows: * *

	 * getPort().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Integer } * * */ public List getPort() { if (port == null) { port = new ArrayList(); } return this.port; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link NetworkProtocolExtension } * */ public NetworkProtocolExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link NetworkProtocolExtension } * */ public void setExtension(NetworkProtocolExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkProtocolExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r NetworkProtocolExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkProtocolExtension", propOrder = { "any" }) public class NetworkProtocolExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkProtocolType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r NetworkProtocolType. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "NetworkProtocolType") @XmlEnum public enum NetworkProtocolType { HTTP, HTTPS, RTSP; public String value() { return name(); } public static NetworkProtocolType fromValue(String v) { return valueOf(v); } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkZeroConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r NetworkZeroConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkZeroConfiguration", propOrder = { "interfaceToken", "enabled", "addresses", "extension" }) public class NetworkZeroConfiguration { @XmlElement(name = "InterfaceToken", required = true) protected String interfaceToken; @XmlElement(name = "Enabled") protected boolean enabled; @XmlElement(name = "Addresses") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected List addresses; @XmlElement(name = "Extension") protected NetworkZeroConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der interfaceToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getInterfaceToken() { return interfaceToken; } /** * Legt den Wert der interfaceToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setInterfaceToken(String value) { this.interfaceToken = value; } /** * Ruft den Wert der enabled-Eigenschaft ab. * */ public boolean isEnabled() { return enabled; } /** * Legt den Wert der enabled-Eigenschaft fest. * */ public void setEnabled(boolean value) { this.enabled = value; } /** * Gets the value of the addresses property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the addresses property. * *

* For example, to add a new item, do as follows: * *

	 * getAddresses().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getAddresses() { if (addresses == null) { addresses = new ArrayList(); } return this.addresses; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link NetworkZeroConfigurationExtension } * */ public NetworkZeroConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link NetworkZeroConfigurationExtension } * */ public void setExtension(NetworkZeroConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkZeroConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r NetworkZeroConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkZeroConfigurationExtension", propOrder = { "any", "additional", "extension" }) public class NetworkZeroConfigurationExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "Additional") protected List additional; @XmlElement(name = "Extension") protected NetworkZeroConfigurationExtension2 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets the value of the additional property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the additional property. * *

* For example, to add a new item, do as follows: * *

	 * getAdditional().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link NetworkZeroConfiguration } * * */ public List getAdditional() { if (additional == null) { additional = new ArrayList(); } return this.additional; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link NetworkZeroConfigurationExtension2 } * */ public NetworkZeroConfigurationExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link NetworkZeroConfigurationExtension2 } * */ public void setExtension(NetworkZeroConfigurationExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/NetworkZeroConfigurationExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r NetworkZeroConfigurationExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkZeroConfigurationExtension2", propOrder = { "any" }) public class NetworkZeroConfigurationExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/NoiseReduction.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr NoiseReduction complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="NoiseReduction">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Level" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NoiseReduction", propOrder = { "level", "any" }) public class NoiseReduction { @XmlElement(name = "Level") protected float level; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der level-Eigenschaft ab. * */ public float getLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * */ public void setLevel(float value) { this.level = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/NoiseReductionOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr NoiseReductionOptions complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="NoiseReductionOptions">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Level" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NoiseReductionOptions", propOrder = { "level", "any" }) public class NoiseReductionOptions { @XmlElement(name = "Level") protected boolean level; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der level-Eigenschaft ab. * */ public boolean isLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * */ public void setLevel(boolean value) { this.level = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDColor.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * The value range of "Transparent" could be defined by vendors only should follow this rule: the minimum value means non-transparent and the maximum value maens fully transparent. * *

* Java-Klasse f�r OSDColor complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDColor", propOrder = { "color" }) public class OSDColor { @XmlElement(name = "Color", required = true) protected Color color; @XmlAttribute(name = "Transparent") protected Integer transparent; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der color-Eigenschaft ab. * * @return possible object is {@link Color } * */ public Color getColor() { return color; } /** * Legt den Wert der color-Eigenschaft fest. * * @param value * allowed object is {@link Color } * */ public void setColor(Color value) { this.color = value; } /** * Ruft den Wert der transparent-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getTransparent() { return transparent; } /** * Legt den Wert der transparent-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setTransparent(Integer value) { this.transparent = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDColorOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * Describe the option of the color and its transparency. * *

* Java-Klasse f�r OSDColorOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDColorOptions", propOrder = { "color", "transparent", "extension" }) public class OSDColorOptions { @XmlElement(name = "Color") protected ColorOptions color; @XmlElement(name = "Transparent") protected IntRange transparent; @XmlElement(name = "Extension") protected OSDColorOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der color-Eigenschaft ab. * * @return possible object is {@link ColorOptions } * */ public ColorOptions getColor() { return color; } /** * Legt den Wert der color-Eigenschaft fest. * * @param value * allowed object is {@link ColorOptions } * */ public void setColor(ColorOptions value) { this.color = value; } /** * Ruft den Wert der transparent-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getTransparent() { return transparent; } /** * Legt den Wert der transparent-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setTransparent(IntRange value) { this.transparent = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link OSDColorOptionsExtension } * */ public OSDColorOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link OSDColorOptionsExtension } * */ public void setExtension(OSDColorOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDColorOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r OSDColorOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDColorOptionsExtension", propOrder = { "any" }) public class OSDColorOptionsExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r OSDConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDConfiguration", propOrder = { "videoSourceConfigurationToken", "type", "position", "textString", "image", "extension" }) public class OSDConfiguration extends DeviceEntity { @XmlElement(name = "VideoSourceConfigurationToken", required = true) protected OSDReference videoSourceConfigurationToken; @XmlElement(name = "Type", required = true) protected OSDType type; @XmlElement(name = "Position", required = true) protected OSDPosConfiguration position; @XmlElement(name = "TextString") protected OSDTextConfiguration textString; @XmlElement(name = "Image") protected OSDImgConfiguration image; @XmlElement(name = "Extension") protected OSDConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der videoSourceConfigurationToken-Eigenschaft ab. * * @return possible object is {@link OSDReference } * */ public OSDReference getVideoSourceConfigurationToken() { return videoSourceConfigurationToken; } /** * Legt den Wert der videoSourceConfigurationToken-Eigenschaft fest. * * @param value * allowed object is {@link OSDReference } * */ public void setVideoSourceConfigurationToken(OSDReference value) { this.videoSourceConfigurationToken = value; } /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link OSDType } * */ public OSDType getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link OSDType } * */ public void setType(OSDType value) { this.type = value; } /** * Ruft den Wert der position-Eigenschaft ab. * * @return possible object is {@link OSDPosConfiguration } * */ public OSDPosConfiguration getPosition() { return position; } /** * Legt den Wert der position-Eigenschaft fest. * * @param value * allowed object is {@link OSDPosConfiguration } * */ public void setPosition(OSDPosConfiguration value) { this.position = value; } /** * Ruft den Wert der textString-Eigenschaft ab. * * @return possible object is {@link OSDTextConfiguration } * */ public OSDTextConfiguration getTextString() { return textString; } /** * Legt den Wert der textString-Eigenschaft fest. * * @param value * allowed object is {@link OSDTextConfiguration } * */ public void setTextString(OSDTextConfiguration value) { this.textString = value; } /** * Ruft den Wert der image-Eigenschaft ab. * * @return possible object is {@link OSDImgConfiguration } * */ public OSDImgConfiguration getImage() { return image; } /** * Legt den Wert der image-Eigenschaft fest. * * @param value * allowed object is {@link OSDImgConfiguration } * */ public void setImage(OSDImgConfiguration value) { this.image = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link OSDConfigurationExtension } * */ public OSDConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link OSDConfigurationExtension } * */ public void setExtension(OSDConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r OSDConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDConfigurationExtension", propOrder = { "any" }) public class OSDConfigurationExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r OSDConfigurationOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDConfigurationOptions", propOrder = { "maximumNumberOfOSDs", "type", "positionOption", "textOption", "imageOption", "extension" }) public class OSDConfigurationOptions { @XmlElement(name = "MaximumNumberOfOSDs", required = true) protected MaximumNumberOfOSDs maximumNumberOfOSDs; @XmlElement(name = "Type", required = true) protected List type; @XmlElement(name = "PositionOption", required = true) protected List positionOption; @XmlElement(name = "TextOption") protected OSDTextOptions textOption; @XmlElement(name = "ImageOption") protected OSDImgOptions imageOption; @XmlElement(name = "Extension") protected OSDConfigurationOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der maximumNumberOfOSDs-Eigenschaft ab. * * @return possible object is {@link MaximumNumberOfOSDs } * */ public MaximumNumberOfOSDs getMaximumNumberOfOSDs() { return maximumNumberOfOSDs; } /** * Legt den Wert der maximumNumberOfOSDs-Eigenschaft fest. * * @param value * allowed object is {@link MaximumNumberOfOSDs } * */ public void setMaximumNumberOfOSDs(MaximumNumberOfOSDs value) { this.maximumNumberOfOSDs = value; } /** * Gets the value of the type property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the type property. * *

* For example, to add a new item, do as follows: * *

	 * getType().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link OSDType } * * */ public List getType() { if (type == null) { type = new ArrayList(); } return this.type; } /** * Gets the value of the positionOption property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the positionOption property. * *

* For example, to add a new item, do as follows: * *

	 * getPositionOption().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getPositionOption() { if (positionOption == null) { positionOption = new ArrayList(); } return this.positionOption; } /** * Ruft den Wert der textOption-Eigenschaft ab. * * @return possible object is {@link OSDTextOptions } * */ public OSDTextOptions getTextOption() { return textOption; } /** * Legt den Wert der textOption-Eigenschaft fest. * * @param value * allowed object is {@link OSDTextOptions } * */ public void setTextOption(OSDTextOptions value) { this.textOption = value; } /** * Ruft den Wert der imageOption-Eigenschaft ab. * * @return possible object is {@link OSDImgOptions } * */ public OSDImgOptions getImageOption() { return imageOption; } /** * Legt den Wert der imageOption-Eigenschaft fest. * * @param value * allowed object is {@link OSDImgOptions } * */ public void setImageOption(OSDImgOptions value) { this.imageOption = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link OSDConfigurationOptionsExtension } * */ public OSDConfigurationOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link OSDConfigurationOptionsExtension } * */ public void setExtension(OSDConfigurationOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDConfigurationOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r OSDConfigurationOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDConfigurationOptionsExtension", propOrder = { "any" }) public class OSDConfigurationOptionsExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDImgConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r OSDImgConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDImgConfiguration", propOrder = { "imgPath", "extension" }) public class OSDImgConfiguration { @XmlElement(name = "ImgPath", required = true) @XmlSchemaType(name = "anyURI") protected String imgPath; @XmlElement(name = "Extension") protected OSDImgConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der imgPath-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getImgPath() { return imgPath; } /** * Legt den Wert der imgPath-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setImgPath(String value) { this.imgPath = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link OSDImgConfigurationExtension } * */ public OSDImgConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link OSDImgConfigurationExtension } * */ public void setExtension(OSDImgConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDImgConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r OSDImgConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDImgConfigurationExtension", propOrder = { "any" }) public class OSDImgConfigurationExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDImgOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r OSDImgOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDImgOptions", propOrder = { "imagePath", "extension" }) public class OSDImgOptions { @XmlElement(name = "ImagePath", required = true) @XmlSchemaType(name = "anyURI") protected List imagePath; @XmlElement(name = "Extension") protected OSDImgOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the imagePath property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the imagePath property. * *

* For example, to add a new item, do as follows: * *

	 * getImagePath().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getImagePath() { if (imagePath == null) { imagePath = new ArrayList(); } return this.imagePath; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link OSDImgOptionsExtension } * */ public OSDImgOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link OSDImgOptionsExtension } * */ public void setExtension(OSDImgOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDImgOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r OSDImgOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDImgOptionsExtension", propOrder = { "any" }) public class OSDImgOptionsExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDPosConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r OSDPosConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDPosConfiguration", propOrder = { "type", "pos", "extension" }) public class OSDPosConfiguration { @XmlElement(name = "Type", required = true) protected String type; @XmlElement(name = "Pos") protected Vector pos; @XmlElement(name = "Extension") protected OSDPosConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setType(String value) { this.type = value; } /** * Ruft den Wert der pos-Eigenschaft ab. * * @return possible object is {@link Vector } * */ public Vector getPos() { return pos; } /** * Legt den Wert der pos-Eigenschaft fest. * * @param value * allowed object is {@link Vector } * */ public void setPos(Vector value) { this.pos = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link OSDPosConfigurationExtension } * */ public OSDPosConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link OSDPosConfigurationExtension } * */ public void setExtension(OSDPosConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDPosConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r OSDPosConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDPosConfigurationExtension", propOrder = { "any" }) public class OSDPosConfigurationExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDReference.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r OSDReference complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDReference", propOrder = { "value" }) public class OSDReference { @XmlValue protected String value; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Unique identifier for a physical or logical resource. Tokens should be assigned such that they are unique within a device. Tokens must be at least unique within its class. * Length up to 64 characters. * * @return possible object is {@link String } * */ public String getValue() { return value; } /** * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDTextConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r OSDTextConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDTextConfiguration", propOrder = { "type", "dateFormat", "timeFormat", "fontSize", "fontColor", "backgroundColor", "plainText", "extension" }) public class OSDTextConfiguration { @XmlElement(name = "Type", required = true) protected String type; @XmlElement(name = "DateFormat") protected String dateFormat; @XmlElement(name = "TimeFormat") protected String timeFormat; @XmlElement(name = "FontSize") protected Integer fontSize; @XmlElement(name = "FontColor") protected OSDColor fontColor; @XmlElement(name = "BackgroundColor") protected OSDColor backgroundColor; @XmlElement(name = "PlainText") protected String plainText; @XmlElement(name = "Extension") protected OSDTextConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setType(String value) { this.type = value; } /** * Ruft den Wert der dateFormat-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDateFormat() { return dateFormat; } /** * Legt den Wert der dateFormat-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDateFormat(String value) { this.dateFormat = value; } /** * Ruft den Wert der timeFormat-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getTimeFormat() { return timeFormat; } /** * Legt den Wert der timeFormat-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setTimeFormat(String value) { this.timeFormat = value; } /** * Ruft den Wert der fontSize-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getFontSize() { return fontSize; } /** * Legt den Wert der fontSize-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setFontSize(Integer value) { this.fontSize = value; } /** * Ruft den Wert der fontColor-Eigenschaft ab. * * @return possible object is {@link OSDColor } * */ public OSDColor getFontColor() { return fontColor; } /** * Legt den Wert der fontColor-Eigenschaft fest. * * @param value * allowed object is {@link OSDColor } * */ public void setFontColor(OSDColor value) { this.fontColor = value; } /** * Ruft den Wert der backgroundColor-Eigenschaft ab. * * @return possible object is {@link OSDColor } * */ public OSDColor getBackgroundColor() { return backgroundColor; } /** * Legt den Wert der backgroundColor-Eigenschaft fest. * * @param value * allowed object is {@link OSDColor } * */ public void setBackgroundColor(OSDColor value) { this.backgroundColor = value; } /** * Ruft den Wert der plainText-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPlainText() { return plainText; } /** * Legt den Wert der plainText-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPlainText(String value) { this.plainText = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link OSDTextConfigurationExtension } * */ public OSDTextConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link OSDTextConfigurationExtension } * */ public void setExtension(OSDTextConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDTextConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r OSDTextConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDTextConfigurationExtension", propOrder = { "any" }) public class OSDTextConfigurationExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDTextOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r OSDTextOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDTextOptions", propOrder = { "type", "fontSizeRange", "dateFormat", "timeFormat", "fontColor", "backgroundColor", "extension" }) public class OSDTextOptions { @XmlElement(name = "Type", required = true) protected List type; @XmlElement(name = "FontSizeRange") protected IntRange fontSizeRange; @XmlElement(name = "DateFormat") protected List dateFormat; @XmlElement(name = "TimeFormat") protected List timeFormat; @XmlElement(name = "FontColor") protected OSDColorOptions fontColor; @XmlElement(name = "BackgroundColor") protected OSDColorOptions backgroundColor; @XmlElement(name = "Extension") protected OSDTextOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the type property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the type property. * *

* For example, to add a new item, do as follows: * *

	 * getType().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getType() { if (type == null) { type = new ArrayList(); } return this.type; } /** * Ruft den Wert der fontSizeRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getFontSizeRange() { return fontSizeRange; } /** * Legt den Wert der fontSizeRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setFontSizeRange(IntRange value) { this.fontSizeRange = value; } /** * Gets the value of the dateFormat property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the dateFormat property. * *

* For example, to add a new item, do as follows: * *

	 * getDateFormat().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getDateFormat() { if (dateFormat == null) { dateFormat = new ArrayList(); } return this.dateFormat; } /** * Gets the value of the timeFormat property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the timeFormat property. * *

* For example, to add a new item, do as follows: * *

	 * getTimeFormat().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getTimeFormat() { if (timeFormat == null) { timeFormat = new ArrayList(); } return this.timeFormat; } /** * Ruft den Wert der fontColor-Eigenschaft ab. * * @return possible object is {@link OSDColorOptions } * */ public OSDColorOptions getFontColor() { return fontColor; } /** * Legt den Wert der fontColor-Eigenschaft fest. * * @param value * allowed object is {@link OSDColorOptions } * */ public void setFontColor(OSDColorOptions value) { this.fontColor = value; } /** * Ruft den Wert der backgroundColor-Eigenschaft ab. * * @return possible object is {@link OSDColorOptions } * */ public OSDColorOptions getBackgroundColor() { return backgroundColor; } /** * Legt den Wert der backgroundColor-Eigenschaft fest. * * @param value * allowed object is {@link OSDColorOptions } * */ public void setBackgroundColor(OSDColorOptions value) { this.backgroundColor = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link OSDTextOptionsExtension } * */ public OSDTextOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link OSDTextOptionsExtension } * */ public void setExtension(OSDTextOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDTextOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r OSDTextOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OSDTextOptionsExtension", propOrder = { "any" }) public class OSDTextOptionsExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/OSDType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r OSDType. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "OSDType") @XmlEnum public enum OSDType { @XmlEnumValue("Text") TEXT("Text"), @XmlEnumValue("Image") IMAGE("Image"), @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; OSDType(String v) { value = v; } public String value() { return value; } public static OSDType fromValue(String v) { for (OSDType c : OSDType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/Object.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r Object complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Object", propOrder = { "appearance", "behaviour", "extension" }) public class Object extends ObjectId { @XmlElement(name = "Appearance") protected Appearance appearance; @XmlElement(name = "Behaviour") protected Behaviour behaviour; @XmlElement(name = "Extension") protected ObjectExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der appearance-Eigenschaft ab. * * @return possible object is {@link Appearance } * */ public Appearance getAppearance() { return appearance; } /** * Legt den Wert der appearance-Eigenschaft fest. * * @param value * allowed object is {@link Appearance } * */ public void setAppearance(Appearance value) { this.appearance = value; } /** * Ruft den Wert der behaviour-Eigenschaft ab. * * @return possible object is {@link Behaviour } * */ public Behaviour getBehaviour() { return behaviour; } /** * Legt den Wert der behaviour-Eigenschaft fest. * * @param value * allowed object is {@link Behaviour } * */ public void setBehaviour(Behaviour value) { this.behaviour = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ObjectExtension } * */ public ObjectExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ObjectExtension } * */ public void setExtension(ObjectExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ObjectExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ObjectExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ObjectExtension", propOrder = { "any" }) public class ObjectExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/ObjectFactory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each Java content interface and Java element interface generated in the org.onvif.ver10.schema package. *

* An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema * derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this * class. * */ @XmlRegistry public class ObjectFactory { private final static QName _VideoSourceConfiguration_QNAME = new QName("http://www.onvif.org/ver10/schema", "VideoSourceConfiguration"); private final static QName _MetadataStream_QNAME = new QName("http://www.onvif.org/ver10/schema", "MetadataStream"); private final static QName _AudioEncoderConfiguration_QNAME = new QName("http://www.onvif.org/ver10/schema", "AudioEncoderConfiguration"); private final static QName _VideoEncoderConfiguration_QNAME = new QName("http://www.onvif.org/ver10/schema", "VideoEncoderConfiguration"); private final static QName _VideoAnalyticsConfiguration_QNAME = new QName("http://www.onvif.org/ver10/schema", "VideoAnalyticsConfiguration"); private final static QName _AudioOutputConfiguration_QNAME = new QName("http://www.onvif.org/ver10/schema", "AudioOutputConfiguration"); private final static QName _Polygon_QNAME = new QName("http://www.onvif.org/ver10/schema", "Polygon"); private final static QName _Polyline_QNAME = new QName("http://www.onvif.org/ver10/schema", "Polyline"); private final static QName _AudioSourceConfiguration_QNAME = new QName("http://www.onvif.org/ver10/schema", "AudioSourceConfiguration"); private final static QName _MetadataConfiguration_QNAME = new QName("http://www.onvif.org/ver10/schema", "MetadataConfiguration"); private final static QName _PTZConfiguration_QNAME = new QName("http://www.onvif.org/ver10/schema", "PTZConfiguration"); private final static QName _AudioDecoderConfiguration_QNAME = new QName("http://www.onvif.org/ver10/schema", "AudioDecoderConfiguration"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.onvif.ver10.schema * */ public ObjectFactory() { } /** * Create an instance of {@link ItemListDescription } * */ public ItemListDescription createItemListDescription() { return new ItemListDescription(); } /** * Create an instance of {@link ConfigDescription } * */ public ConfigDescription createConfigDescription() { return new ConfigDescription(); } /** * Create an instance of {@link Behaviour } * */ public Behaviour createBehaviour() { return new Behaviour(); } /** * Create an instance of {@link ColorDescriptor } * */ public ColorDescriptor createColorDescriptor() { return new ColorDescriptor(); } /** * Create an instance of {@link EventSubscription } * */ public EventSubscription createEventSubscription() { return new EventSubscription(); } /** * Create an instance of {@link ClassDescriptor } * */ public ClassDescriptor createClassDescriptor() { return new ClassDescriptor(); } /** * Create an instance of {@link ItemList } * */ public ItemList createItemList() { return new ItemList(); } /** * Create an instance of {@link User } * */ public User createUser() { return new User(); } /** * Create an instance of {@link Scope } * */ public Scope createScope() { return new Scope(); } /** * Create an instance of {@link Dot11AvailableNetworks } * */ public Dot11AvailableNetworks createDot11AvailableNetworks() { return new Dot11AvailableNetworks(); } /** * Create an instance of {@link NTPInformation } * */ public NTPInformation createNTPInformation() { return new NTPInformation(); } /** * Create an instance of {@link DynamicDNSInformation } * */ public DynamicDNSInformation createDynamicDNSInformation() { return new DynamicDNSInformation(); } /** * Create an instance of {@link Dot1XConfiguration } * */ public Dot1XConfiguration createDot1XConfiguration() { return new Dot1XConfiguration(); } /** * Create an instance of {@link AttachmentData } * */ public AttachmentData createAttachmentData() { return new AttachmentData(); } /** * Create an instance of {@link NetworkZeroConfiguration } * */ public NetworkZeroConfiguration createNetworkZeroConfiguration() { return new NetworkZeroConfiguration(); } /** * Create an instance of {@link Certificate } * */ public Certificate createCertificate() { return new Certificate(); } /** * Create an instance of {@link BackupFile } * */ public BackupFile createBackupFile() { return new BackupFile(); } /** * Create an instance of {@link RelayOutput } * */ public RelayOutput createRelayOutput() { return new RelayOutput(); } /** * Create an instance of {@link SystemDateTime } * */ public SystemDateTime createSystemDateTime() { return new SystemDateTime(); } /** * Create an instance of {@link TimeZone } * */ public TimeZone createTimeZone() { return new TimeZone(); } /** * Create an instance of {@link DateTime } * */ public DateTime createDateTime() { return new DateTime(); } /** * Create an instance of {@link Capabilities } * */ public Capabilities createCapabilities() { return new Capabilities(); } /** * Create an instance of {@link CertificateStatus } * */ public CertificateStatus createCertificateStatus() { return new CertificateStatus(); } /** * Create an instance of {@link SupportInformation } * */ public SupportInformation createSupportInformation() { return new SupportInformation(); } /** * Create an instance of {@link CertificateInformation } * */ public CertificateInformation createCertificateInformation() { return new CertificateInformation(); } /** * Create an instance of {@link NetworkHost } * */ public NetworkHost createNetworkHost() { return new NetworkHost(); } /** * Create an instance of {@link RemoteUser } * */ public RemoteUser createRemoteUser() { return new RemoteUser(); } /** * Create an instance of {@link RelayOutputSettings } * */ public RelayOutputSettings createRelayOutputSettings() { return new RelayOutputSettings(); } /** * Create an instance of {@link HostnameInformation } * */ public HostnameInformation createHostnameInformation() { return new HostnameInformation(); } /** * Create an instance of {@link Dot11Status } * */ public Dot11Status createDot11Status() { return new Dot11Status(); } /** * Create an instance of {@link BinaryData } * */ public BinaryData createBinaryData() { return new BinaryData(); } /** * Create an instance of {@link IPAddressFilter } * */ public IPAddressFilter createIPAddressFilter() { return new IPAddressFilter(); } /** * Create an instance of {@link NetworkInterfaceSetConfiguration } * */ public NetworkInterfaceSetConfiguration createNetworkInterfaceSetConfiguration() { return new NetworkInterfaceSetConfiguration(); } /** * Create an instance of {@link NetworkProtocol } * */ public NetworkProtocol createNetworkProtocol() { return new NetworkProtocol(); } /** * Create an instance of {@link SystemLogUriList } * */ public SystemLogUriList createSystemLogUriList() { return new SystemLogUriList(); } /** * Create an instance of {@link DNSInformation } * */ public DNSInformation createDNSInformation() { return new DNSInformation(); } /** * Create an instance of {@link NetworkInterface } * */ public NetworkInterface createNetworkInterface() { return new NetworkInterface(); } /** * Create an instance of {@link CertificateWithPrivateKey } * */ public CertificateWithPrivateKey createCertificateWithPrivateKey() { return new CertificateWithPrivateKey(); } /** * Create an instance of {@link IPAddress } * */ public IPAddress createIPAddress() { return new IPAddress(); } /** * Create an instance of {@link Dot11Capabilities } * */ public Dot11Capabilities createDot11Capabilities() { return new Dot11Capabilities(); } /** * Create an instance of {@link NetworkGateway } * */ public NetworkGateway createNetworkGateway() { return new NetworkGateway(); } /** * Create an instance of {@link SystemLog } * */ public SystemLog createSystemLog() { return new SystemLog(); } /** * Create an instance of {@link AudioSourceConfiguration } * */ public AudioSourceConfiguration createAudioSourceConfiguration() { return new AudioSourceConfiguration(); } /** * Create an instance of {@link PTZConfiguration } * */ public PTZConfiguration createPTZConfiguration() { return new PTZConfiguration(); } /** * Create an instance of {@link VideoSourceConfiguration } * */ public VideoSourceConfiguration createVideoSourceConfiguration() { return new VideoSourceConfiguration(); } /** * Create an instance of {@link Message } * */ public Message createMessage() { return new Message(); } /** * Create an instance of {@link MessageExtension } * */ public MessageExtension createMessageExtension() { return new MessageExtension(); } /** * Create an instance of {@link AudioEncoderConfiguration } * */ public AudioEncoderConfiguration createAudioEncoderConfiguration() { return new AudioEncoderConfiguration(); } /** * Create an instance of {@link VideoEncoderConfiguration } * */ public VideoEncoderConfiguration createVideoEncoderConfiguration() { return new VideoEncoderConfiguration(); } /** * Create an instance of {@link MetadataStream } * */ public MetadataStream createMetadataStream() { return new MetadataStream(); } /** * Create an instance of {@link AudioDecoderConfiguration } * */ public AudioDecoderConfiguration createAudioDecoderConfiguration() { return new AudioDecoderConfiguration(); } /** * Create an instance of {@link VideoAnalyticsConfiguration } * */ public VideoAnalyticsConfiguration createVideoAnalyticsConfiguration() { return new VideoAnalyticsConfiguration(); } /** * Create an instance of {@link AudioOutputConfiguration } * */ public AudioOutputConfiguration createAudioOutputConfiguration() { return new AudioOutputConfiguration(); } /** * Create an instance of {@link Polygon } * */ public Polygon createPolygon() { return new Polygon(); } /** * Create an instance of {@link MetadataConfiguration } * */ public MetadataConfiguration createMetadataConfiguration() { return new MetadataConfiguration(); } /** * Create an instance of {@link Polyline } * */ public Polyline createPolyline() { return new Polyline(); } /** * Create an instance of {@link IrCutFilterAutoAdjustment } * */ public IrCutFilterAutoAdjustment createIrCutFilterAutoAdjustment() { return new IrCutFilterAutoAdjustment(); } /** * Create an instance of {@link PTZNodeExtension2 } * */ public PTZNodeExtension2 createPTZNodeExtension2() { return new PTZNodeExtension2(); } /** * Create an instance of {@link WideDynamicRangeOptions20 } * */ public WideDynamicRangeOptions20 createWideDynamicRangeOptions20() { return new WideDynamicRangeOptions20(); } /** * Create an instance of {@link CertificateGenerationParametersExtension } * */ public CertificateGenerationParametersExtension createCertificateGenerationParametersExtension() { return new CertificateGenerationParametersExtension(); } /** * Create an instance of {@link PTZSpacesExtension } * */ public PTZSpacesExtension createPTZSpacesExtension() { return new PTZSpacesExtension(); } /** * Create an instance of {@link EFlip } * */ public EFlip createEFlip() { return new EFlip(); } /** * Create an instance of {@link VideoAttributes } * */ public VideoAttributes createVideoAttributes() { return new VideoAttributes(); } /** * Create an instance of {@link MediaAttributes } * */ public MediaAttributes createMediaAttributes() { return new MediaAttributes(); } /** * Create an instance of {@link SearchCapabilities } * */ public SearchCapabilities createSearchCapabilities() { return new SearchCapabilities(); } /** * Create an instance of {@link G726DecOptions } * */ public G726DecOptions createG726DecOptions() { return new G726DecOptions(); } /** * Create an instance of {@link DeviceEntity } * */ public DeviceEntity createDeviceEntity() { return new DeviceEntity(); } /** * Create an instance of {@link PTZVector } * */ public PTZVector createPTZVector() { return new PTZVector(); } /** * Create an instance of {@link AACDecOptions } * */ public AACDecOptions createAACDecOptions() { return new AACDecOptions(); } /** * Create an instance of {@link ImagingStatus20Extension } * */ public ImagingStatus20Extension createImagingStatus20Extension() { return new ImagingStatus20Extension(); } /** * Create an instance of {@link PTZConfigurationOptions } * */ public PTZConfigurationOptions createPTZConfigurationOptions() { return new PTZConfigurationOptions(); } /** * Create an instance of {@link IPv6ConfigurationExtension } * */ public IPv6ConfigurationExtension createIPv6ConfigurationExtension() { return new IPv6ConfigurationExtension(); } /** * Create an instance of {@link VideoOutputConfigurationOptions } * */ public VideoOutputConfigurationOptions createVideoOutputConfigurationOptions() { return new VideoOutputConfigurationOptions(); } /** * Create an instance of {@link Rename } * */ public Rename createRename() { return new Rename(); } /** * Create an instance of {@link G711DecOptions } * */ public G711DecOptions createG711DecOptions() { return new G711DecOptions(); } /** * Create an instance of {@link CertificateGenerationParameters } * */ public CertificateGenerationParameters createCertificateGenerationParameters() { return new CertificateGenerationParameters(); } /** * Create an instance of {@link Receiver } * */ public Receiver createReceiver() { return new Receiver(); } /** * Create an instance of {@link Transport } * */ public Transport createTransport() { return new Transport(); } /** * Create an instance of {@link PTZPresetTourSpotOptions } * */ public PTZPresetTourSpotOptions createPTZPresetTourSpotOptions() { return new PTZPresetTourSpotOptions(); } /** * Create an instance of {@link Dot11Configuration } * */ public Dot11Configuration createDot11Configuration() { return new Dot11Configuration(); } /** * Create an instance of {@link PolylineArrayExtension } * */ public PolylineArrayExtension createPolylineArrayExtension() { return new PolylineArrayExtension(); } /** * Create an instance of {@link EventFilter } * */ public EventFilter createEventFilter() { return new EventFilter(); } /** * Create an instance of {@link PolygonConfiguration } * */ public PolygonConfiguration createPolygonConfiguration() { return new PolygonConfiguration(); } /** * Create an instance of {@link GetTracksResponseList } * */ public GetTracksResponseList createGetTracksResponseList() { return new GetTracksResponseList(); } /** * Create an instance of {@link RotateOptions } * */ public RotateOptions createRotateOptions() { return new RotateOptions(); } /** * Create an instance of {@link SupportedRules } * */ public SupportedRules createSupportedRules() { return new SupportedRules(); } /** * Create an instance of {@link NetworkInterfaceExtension } * */ public NetworkInterfaceExtension createNetworkInterfaceExtension() { return new NetworkInterfaceExtension(); } /** * Create an instance of {@link OSDConfigurationOptionsExtension } * */ public OSDConfigurationOptionsExtension createOSDConfigurationOptionsExtension() { return new OSDConfigurationOptionsExtension(); } /** * Create an instance of {@link BacklightCompensationOptions } * */ public BacklightCompensationOptions createBacklightCompensationOptions() { return new BacklightCompensationOptions(); } /** * Create an instance of {@link AudioDecoderConfigurationOptionsExtension } * */ public AudioDecoderConfigurationOptionsExtension createAudioDecoderConfigurationOptionsExtension() { return new AudioDecoderConfigurationOptionsExtension(); } /** * Create an instance of {@link Merge } * */ public Merge createMerge() { return new Merge(); } /** * Create an instance of {@link Rotate } * */ public Rotate createRotate() { return new Rotate(); } /** * Create an instance of {@link OSDConfigurationExtension } * */ public OSDConfigurationExtension createOSDConfigurationExtension() { return new OSDConfigurationExtension(); } /** * Create an instance of {@link SystemCapabilitiesExtension } * */ public SystemCapabilitiesExtension createSystemCapabilitiesExtension() { return new SystemCapabilitiesExtension(); } /** * Create an instance of {@link PaneOptionExtension } * */ public PaneOptionExtension createPaneOptionExtension() { return new PaneOptionExtension(); } /** * Create an instance of {@link IrCutFilterAutoAdjustmentOptions } * */ public IrCutFilterAutoAdjustmentOptions createIrCutFilterAutoAdjustmentOptions() { return new IrCutFilterAutoAdjustmentOptions(); } /** * Create an instance of {@link PTZStatusFilterOptionsExtension } * */ public PTZStatusFilterOptionsExtension createPTZStatusFilterOptionsExtension() { return new PTZStatusFilterOptionsExtension(); } /** * Create an instance of {@link OSDColor } * */ public OSDColor createOSDColor() { return new OSDColor(); } /** * Create an instance of {@link Split } * */ public Split createSplit() { return new Split(); } /** * Create an instance of {@link PTZPresetTourStartingConditionOptions } * */ public PTZPresetTourStartingConditionOptions createPTZPresetTourStartingConditionOptions() { return new PTZPresetTourStartingConditionOptions(); } /** * Create an instance of {@link DisplayCapabilities } * */ public DisplayCapabilities createDisplayCapabilities() { return new DisplayCapabilities(); } /** * Create an instance of {@link PolylineArray } * */ public PolylineArray createPolylineArray() { return new PolylineArray(); } /** * Create an instance of {@link Rectangle } * */ public Rectangle createRectangle() { return new Rectangle(); } /** * Create an instance of {@link TLSConfiguration } * */ public TLSConfiguration createTLSConfiguration() { return new TLSConfiguration(); } /** * Create an instance of {@link NetworkInterfaceConnectionSetting } * */ public NetworkInterfaceConnectionSetting createNetworkInterfaceConnectionSetting() { return new NetworkInterfaceConnectionSetting(); } /** * Create an instance of {@link SourceIdentificationExtension } * */ public SourceIdentificationExtension createSourceIdentificationExtension() { return new SourceIdentificationExtension(); } /** * Create an instance of {@link AnalyticsEngineInput } * */ public AnalyticsEngineInput createAnalyticsEngineInput() { return new AnalyticsEngineInput(); } /** * Create an instance of {@link ColorOptions } * */ public ColorOptions createColorOptions() { return new ColorOptions(); } /** * Create an instance of {@link AnalyticsDeviceCapabilities } * */ public AnalyticsDeviceCapabilities createAnalyticsDeviceCapabilities() { return new AnalyticsDeviceCapabilities(); } /** * Create an instance of {@link SourceReference } * */ public SourceReference createSourceReference() { return new SourceReference(); } /** * Create an instance of {@link RecordingCapabilities } * */ public RecordingCapabilities createRecordingCapabilities() { return new RecordingCapabilities(); } /** * Create an instance of {@link OSDPosConfigurationExtension } * */ public OSDPosConfigurationExtension createOSDPosConfigurationExtension() { return new OSDPosConfigurationExtension(); } /** * Create an instance of {@link MediaCapabilities } * */ public MediaCapabilities createMediaCapabilities() { return new MediaCapabilities(); } /** * Create an instance of {@link NetworkZeroConfigurationExtension } * */ public NetworkZeroConfigurationExtension createNetworkZeroConfigurationExtension() { return new NetworkZeroConfigurationExtension(); } /** * Create an instance of {@link FocusOptions20 } * */ public FocusOptions20 createFocusOptions20() { return new FocusOptions20(); } /** * Create an instance of {@link ConfigDescriptionExtension } * */ public ConfigDescriptionExtension createConfigDescriptionExtension() { return new ConfigDescriptionExtension(); } /** * Create an instance of {@link MulticastConfiguration } * */ public MulticastConfiguration createMulticastConfiguration() { return new MulticastConfiguration(); } /** * Create an instance of {@link SourceIdentification } * */ public SourceIdentification createSourceIdentification() { return new SourceIdentification(); } /** * Create an instance of {@link ZoomLimits } * */ public ZoomLimits createZoomLimits() { return new ZoomLimits(); } /** * Create an instance of {@link ExposureOptions20 } * */ public ExposureOptions20 createExposureOptions20() { return new ExposureOptions20(); } /** * Create an instance of {@link VideoOutput } * */ public VideoOutput createVideoOutput() { return new VideoOutput(); } /** * Create an instance of {@link VideoEncoderConfigurationOptions } * */ public VideoEncoderConfigurationOptions createVideoEncoderConfigurationOptions() { return new VideoEncoderConfigurationOptions(); } /** * Create an instance of {@link JpegOptions2 } * */ public JpegOptions2 createJpegOptions2() { return new JpegOptions2(); } /** * Create an instance of {@link IPv6Configuration } * */ public IPv6Configuration createIPv6Configuration() { return new IPv6Configuration(); } /** * Create an instance of {@link MetadataConfigurationOptions } * */ public MetadataConfigurationOptions createMetadataConfigurationOptions() { return new MetadataConfigurationOptions(); } /** * Create an instance of {@link VideoResolution } * */ public VideoResolution createVideoResolution() { return new VideoResolution(); } /** * Create an instance of {@link MetadataAttributes } * */ public MetadataAttributes createMetadataAttributes() { return new MetadataAttributes(); } /** * Create an instance of {@link VideoSourceConfigurationOptions } * */ public VideoSourceConfigurationOptions createVideoSourceConfigurationOptions() { return new VideoSourceConfigurationOptions(); } /** * Create an instance of {@link JpegDecOptions } * */ public JpegDecOptions createJpegDecOptions() { return new JpegDecOptions(); } /** * Create an instance of {@link ItemListDescriptionExtension } * */ public ItemListDescriptionExtension createItemListDescriptionExtension() { return new ItemListDescriptionExtension(); } /** * Create an instance of {@link GenericEapPwdConfigurationExtension } * */ public GenericEapPwdConfigurationExtension createGenericEapPwdConfigurationExtension() { return new GenericEapPwdConfigurationExtension(); } /** * Create an instance of {@link LayoutOptionsExtension } * */ public LayoutOptionsExtension createLayoutOptionsExtension() { return new LayoutOptionsExtension(); } /** * Create an instance of {@link Mpeg4Configuration } * */ public Mpeg4Configuration createMpeg4Configuration() { return new Mpeg4Configuration(); } /** * Create an instance of {@link AudioSource } * */ public AudioSource createAudioSource() { return new AudioSource(); } /** * Create an instance of {@link ImageStabilizationOptions } * */ public ImageStabilizationOptions createImageStabilizationOptions() { return new ImageStabilizationOptions(); } /** * Create an instance of {@link EAPMethodConfiguration } * */ public EAPMethodConfiguration createEAPMethodConfiguration() { return new EAPMethodConfiguration(); } /** * Create an instance of {@link FocusOptions20Extension } * */ public FocusOptions20Extension createFocusOptions20Extension() { return new FocusOptions20Extension(); } /** * Create an instance of {@link ReverseOptions } * */ public ReverseOptions createReverseOptions() { return new ReverseOptions(); } /** * Create an instance of {@link ColorspaceRange } * */ public ColorspaceRange createColorspaceRange() { return new ColorspaceRange(); } /** * Create an instance of {@link FocusStatus20Extension } * */ public FocusStatus20Extension createFocusStatus20Extension() { return new FocusStatus20Extension(); } /** * Create an instance of {@link H264Options2 } * */ public H264Options2 createH264Options2() { return new H264Options2(); } /** * Create an instance of {@link H264DecOptions } * */ public H264DecOptions createH264DecOptions() { return new H264DecOptions(); } /** * Create an instance of {@link OSDReference } * */ public OSDReference createOSDReference() { return new OSDReference(); } /** * Create an instance of {@link AbsoluteFocus } * */ public AbsoluteFocus createAbsoluteFocus() { return new AbsoluteFocus(); } /** * Create an instance of {@link PTZStatus } * */ public PTZStatus createPTZStatus() { return new PTZStatus(); } /** * Create an instance of {@link DynamicDNSInformationExtension } * */ public DynamicDNSInformationExtension createDynamicDNSInformationExtension() { return new DynamicDNSInformationExtension(); } /** * Create an instance of {@link IPv6NetworkInterfaceSetConfiguration } * */ public IPv6NetworkInterfaceSetConfiguration createIPv6NetworkInterfaceSetConfiguration() { return new IPv6NetworkInterfaceSetConfiguration(); } /** * Create an instance of {@link RecordingJobConfiguration } * */ public RecordingJobConfiguration createRecordingJobConfiguration() { return new RecordingJobConfiguration(); } /** * Create an instance of {@link AudioClassDescriptor } * */ public AudioClassDescriptor createAudioClassDescriptor() { return new AudioClassDescriptor(); } /** * Create an instance of {@link TrackConfiguration } * */ public TrackConfiguration createTrackConfiguration() { return new TrackConfiguration(); } /** * Create an instance of {@link Space2DDescription } * */ public Space2DDescription createSpace2DDescription() { return new Space2DDescription(); } /** * Create an instance of {@link NetworkZeroConfigurationExtension2 } * */ public NetworkZeroConfigurationExtension2 createNetworkZeroConfigurationExtension2() { return new NetworkZeroConfigurationExtension2(); } /** * Create an instance of {@link RecordingJobStateSource } * */ public RecordingJobStateSource createRecordingJobStateSource() { return new RecordingJobStateSource(); } /** * Create an instance of {@link IOCapabilities } * */ public IOCapabilities createIOCapabilities() { return new IOCapabilities(); } /** * Create an instance of {@link DateTimeRange } * */ public DateTimeRange createDateTimeRange() { return new DateTimeRange(); } /** * Create an instance of {@link TrackAttributes } * */ public TrackAttributes createTrackAttributes() { return new TrackAttributes(); } /** * Create an instance of {@link CertificateUsage } * */ public CertificateUsage createCertificateUsage() { return new CertificateUsage(); } /** * Create an instance of {@link Transformation } * */ public Transformation createTransformation() { return new Transformation(); } /** * Create an instance of {@link PaneLayoutOptions } * */ public PaneLayoutOptions createPaneLayoutOptions() { return new PaneLayoutOptions(); } /** * Create an instance of {@link AnyHolder } * */ public AnyHolder createAnyHolder() { return new AnyHolder(); } /** * Create an instance of {@link Space1DDescription } * */ public Space1DDescription createSpace1DDescription() { return new Space1DDescription(); } /** * Create an instance of {@link PolylineArrayConfiguration } * */ public PolylineArrayConfiguration createPolylineArrayConfiguration() { return new PolylineArrayConfiguration(); } /** * Create an instance of {@link ImageStabilization } * */ public ImageStabilization createImageStabilization() { return new ImageStabilization(); } /** * Create an instance of {@link AudioClassDescriptorExtension } * */ public AudioClassDescriptorExtension createAudioClassDescriptorExtension() { return new AudioClassDescriptorExtension(); } /** * Create an instance of {@link Dot11SecurityConfiguration } * */ public Dot11SecurityConfiguration createDot11SecurityConfiguration() { return new Dot11SecurityConfiguration(); } /** * Create an instance of {@link IPv4NetworkInterfaceSetConfiguration } * */ public IPv4NetworkInterfaceSetConfiguration createIPv4NetworkInterfaceSetConfiguration() { return new IPv4NetworkInterfaceSetConfiguration(); } /** * Create an instance of {@link Vector1D } * */ public Vector1D createVector1D() { return new Vector1D(); } /** * Create an instance of {@link PTZPresetTourSupportedExtension } * */ public PTZPresetTourSupportedExtension createPTZPresetTourSupportedExtension() { return new PTZPresetTourSupportedExtension(); } /** * Create an instance of {@link WhiteBalance } * */ public WhiteBalance createWhiteBalance() { return new WhiteBalance(); } /** * Create an instance of {@link RecordingInformation } * */ public RecordingInformation createRecordingInformation() { return new RecordingInformation(); } /** * Create an instance of {@link PTZPositionFilter } * */ public PTZPositionFilter createPTZPositionFilter() { return new PTZPositionFilter(); } /** * Create an instance of {@link ImagingSettings } * */ public ImagingSettings createImagingSettings() { return new ImagingSettings(); } /** * Create an instance of {@link Color } * */ public Color createColor() { return new Color(); } /** * Create an instance of {@link NetworkCapabilitiesExtension2 } * */ public NetworkCapabilitiesExtension2 createNetworkCapabilitiesExtension2() { return new NetworkCapabilitiesExtension2(); } /** * Create an instance of {@link MediaUri } * */ public MediaUri createMediaUri() { return new MediaUri(); } /** * Create an instance of {@link FindPTZPositionResult } * */ public FindPTZPositionResult createFindPTZPositionResult() { return new FindPTZPositionResult(); } /** * Create an instance of {@link GetRecordingsResponseItem } * */ public GetRecordingsResponseItem createGetRecordingsResponseItem() { return new GetRecordingsResponseItem(); } /** * Create an instance of {@link Vector2D } * */ public Vector2D createVector2D() { return new Vector2D(); } /** * Create an instance of {@link ObjectTreeExtension } * */ public ObjectTreeExtension createObjectTreeExtension() { return new ObjectTreeExtension(); } /** * Create an instance of {@link RecordingJobStateTrack } * */ public RecordingJobStateTrack createRecordingJobStateTrack() { return new RecordingJobStateTrack(); } /** * Create an instance of {@link PTZConfigurationExtension } * */ public PTZConfigurationExtension createPTZConfigurationExtension() { return new PTZConfigurationExtension(); } /** * Create an instance of {@link NetworkInterfaceLink } * */ public NetworkInterfaceLink createNetworkInterfaceLink() { return new NetworkInterfaceLink(); } /** * Create an instance of {@link AudioSourceConfigurationOptions } * */ public AudioSourceConfigurationOptions createAudioSourceConfigurationOptions() { return new AudioSourceConfigurationOptions(); } /** * Create an instance of {@link ReverseOptionsExtension } * */ public ReverseOptionsExtension createReverseOptionsExtension() { return new ReverseOptionsExtension(); } /** * Create an instance of {@link MessageDescription } * */ public MessageDescription createMessageDescription() { return new MessageDescription(); } /** * Create an instance of {@link JpegOptions } * */ public JpegOptions createJpegOptions() { return new JpegOptions(); } /** * Create an instance of {@link IntRectangleRange } * */ public IntRectangleRange createIntRectangleRange() { return new IntRectangleRange(); } /** * Create an instance of {@link EFlipOptions } * */ public EFlipOptions createEFlipOptions() { return new EFlipOptions(); } /** * Create an instance of {@link AnalyticsStateInformation } * */ public AnalyticsStateInformation createAnalyticsStateInformation() { return new AnalyticsStateInformation(); } /** * Create an instance of {@link IPv6NetworkInterface } * */ public IPv6NetworkInterface createIPv6NetworkInterface() { return new IPv6NetworkInterface(); } /** * Create an instance of {@link AudioDescriptor } * */ public AudioDescriptor createAudioDescriptor() { return new AudioDescriptor(); } /** * Create an instance of {@link ProfileCapabilities } * */ public ProfileCapabilities createProfileCapabilities() { return new ProfileCapabilities(); } /** * Create an instance of {@link BacklightCompensation20 } * */ public BacklightCompensation20 createBacklightCompensation20() { return new BacklightCompensation20(); } /** * Create an instance of {@link ImageStabilizationExtension } * */ public ImageStabilizationExtension createImageStabilizationExtension() { return new ImageStabilizationExtension(); } /** * Create an instance of {@link EventStreamExtension } * */ public EventStreamExtension createEventStreamExtension() { return new EventStreamExtension(); } /** * Create an instance of {@link IOCapabilitiesExtension } * */ public IOCapabilitiesExtension createIOCapabilitiesExtension() { return new IOCapabilitiesExtension(); } /** * Create an instance of {@link OSDConfigurationOptions } * */ public OSDConfigurationOptions createOSDConfigurationOptions() { return new OSDConfigurationOptions(); } /** * Create an instance of {@link FocusStatus20 } * */ public FocusStatus20 createFocusStatus20() { return new FocusStatus20(); } /** * Create an instance of {@link RelativeFocusOptions20 } * */ public RelativeFocusOptions20 createRelativeFocusOptions20() { return new RelativeFocusOptions20(); } /** * Create an instance of {@link MetadataInputExtension } * */ public MetadataInputExtension createMetadataInputExtension() { return new MetadataInputExtension(); } /** * Create an instance of {@link AudioAnalyticsStreamExtension } * */ public AudioAnalyticsStreamExtension createAudioAnalyticsStreamExtension() { return new AudioAnalyticsStreamExtension(); } /** * Create an instance of {@link AudioAnalyticsStream } * */ public AudioAnalyticsStream createAudioAnalyticsStream() { return new AudioAnalyticsStream(); } /** * Create an instance of {@link OSDColorOptionsExtension } * */ public OSDColorOptionsExtension createOSDColorOptionsExtension() { return new OSDColorOptionsExtension(); } /** * Create an instance of {@link EventCapabilities } * */ public EventCapabilities createEventCapabilities() { return new EventCapabilities(); } /** * Create an instance of {@link AudioEncoderConfigurationOption } * */ public AudioEncoderConfigurationOption createAudioEncoderConfigurationOption() { return new AudioEncoderConfigurationOption(); } /** * Create an instance of {@link BacklightCompensationOptions20 } * */ public BacklightCompensationOptions20 createBacklightCompensationOptions20() { return new BacklightCompensationOptions20(); } /** * Create an instance of {@link MetadataFilter } * */ public MetadataFilter createMetadataFilter() { return new MetadataFilter(); } /** * Create an instance of {@link PTZNodeExtension } * */ public PTZNodeExtension createPTZNodeExtension() { return new PTZNodeExtension(); } /** * Create an instance of {@link ImagingStatus } * */ public ImagingStatus createImagingStatus() { return new ImagingStatus(); } /** * Create an instance of {@link WhiteBalance20 } * */ public WhiteBalance20 createWhiteBalance20() { return new WhiteBalance20(); } /** * Create an instance of {@link OSDConfiguration } * */ public OSDConfiguration createOSDConfiguration() { return new OSDConfiguration(); } /** * Create an instance of {@link FocusStatus } * */ public FocusStatus createFocusStatus() { return new FocusStatus(); } /** * Create an instance of {@link Frame } * */ public Frame createFrame() { return new Frame(); } /** * Create an instance of {@link IPAddressFilterExtension } * */ public IPAddressFilterExtension createIPAddressFilterExtension() { return new IPAddressFilterExtension(); } /** * Create an instance of {@link ReplayCapabilities } * */ public ReplayCapabilities createReplayCapabilities() { return new ReplayCapabilities(); } /** * Create an instance of {@link ContinuousFocus } * */ public ContinuousFocus createContinuousFocus() { return new ContinuousFocus(); } /** * Create an instance of {@link MotionExpressionConfiguration } * */ public MotionExpressionConfiguration createMotionExpressionConfiguration() { return new MotionExpressionConfiguration(); } /** * Create an instance of {@link RecordingJobConfigurationExtension } * */ public RecordingJobConfigurationExtension createRecordingJobConfigurationExtension() { return new RecordingJobConfigurationExtension(); } /** * Create an instance of {@link PTZPresetTourOptions } * */ public PTZPresetTourOptions createPTZPresetTourOptions() { return new PTZPresetTourOptions(); } /** * Create an instance of {@link StreamSetup } * */ public StreamSetup createStreamSetup() { return new StreamSetup(); } /** * Create an instance of {@link IntRectangle } * */ public IntRectangle createIntRectangle() { return new IntRectangle(); } /** * Create an instance of {@link VideoDecoderConfigurationOptionsExtension } * */ public VideoDecoderConfigurationOptionsExtension createVideoDecoderConfigurationOptionsExtension() { return new VideoDecoderConfigurationOptionsExtension(); } /** * Create an instance of {@link PTControlDirection } * */ public PTControlDirection createPTControlDirection() { return new PTControlDirection(); } /** * Create an instance of {@link VideoRateControl } * */ public VideoRateControl createVideoRateControl() { return new VideoRateControl(); } /** * Create an instance of {@link RelativeFocus } * */ public RelativeFocus createRelativeFocus() { return new RelativeFocus(); } /** * Create an instance of {@link GetTracksResponseItem } * */ public GetTracksResponseItem createGetTracksResponseItem() { return new GetTracksResponseItem(); } /** * Create an instance of {@link Vector } * */ public Vector createVector() { return new Vector(); } /** * Create an instance of {@link FocusConfiguration } * */ public FocusConfiguration createFocusConfiguration() { return new FocusConfiguration(); } /** * Create an instance of {@link ProfileExtension } * */ public ProfileExtension createProfileExtension() { return new ProfileExtension(); } /** * Create an instance of {@link BehaviourExtension } * */ public BehaviourExtension createBehaviourExtension() { return new BehaviourExtension(); } /** * Create an instance of {@link IrCutFilterAutoAdjustmentExtension } * */ public IrCutFilterAutoAdjustmentExtension createIrCutFilterAutoAdjustmentExtension() { return new IrCutFilterAutoAdjustmentExtension(); } /** * Create an instance of {@link ImagingOptions20Extension2 } * */ public ImagingOptions20Extension2 createImagingOptions20Extension2() { return new ImagingOptions20Extension2(); } /** * Create an instance of {@link NetworkCapabilities } * */ public NetworkCapabilities createNetworkCapabilities() { return new NetworkCapabilities(); } /** * Create an instance of {@link ImagingOptions20Extension3 } * */ public ImagingOptions20Extension3 createImagingOptions20Extension3() { return new ImagingOptions20Extension3(); } /** * Create an instance of {@link RecordingJobStateInformationExtension } * */ public RecordingJobStateInformationExtension createRecordingJobStateInformationExtension() { return new RecordingJobStateInformationExtension(); } /** * Create an instance of {@link ObjectTree } * */ public ObjectTree createObjectTree() { return new ObjectTree(); } /** * Create an instance of {@link PTZCapabilities } * */ public PTZCapabilities createPTZCapabilities() { return new PTZCapabilities(); } /** * Create an instance of {@link FocusConfiguration20 } * */ public FocusConfiguration20 createFocusConfiguration20() { return new FocusConfiguration20(); } /** * Create an instance of {@link OSDImgConfigurationExtension } * */ public OSDImgConfigurationExtension createOSDImgConfigurationExtension() { return new OSDImgConfigurationExtension(); } /** * Create an instance of {@link TrackAttributesExtension } * */ public TrackAttributesExtension createTrackAttributesExtension() { return new TrackAttributesExtension(); } /** * Create an instance of {@link SystemCapabilities } * */ public SystemCapabilities createSystemCapabilities() { return new SystemCapabilities(); } /** * Create an instance of {@link WhiteBalanceOptions20Extension } * */ public WhiteBalanceOptions20Extension createWhiteBalanceOptions20Extension() { return new WhiteBalanceOptions20Extension(); } /** * Create an instance of {@link NetworkInterfaceInfo } * */ public NetworkInterfaceInfo createNetworkInterfaceInfo() { return new NetworkInterfaceInfo(); } /** * Create an instance of {@link VideoSourceExtension2 } * */ public VideoSourceExtension2 createVideoSourceExtension2() { return new VideoSourceExtension2(); } /** * Create an instance of {@link FindMetadataResultList } * */ public FindMetadataResultList createFindMetadataResultList() { return new FindMetadataResultList(); } /** * Create an instance of {@link AnalyticsEngineInputInfoExtension } * */ public AnalyticsEngineInputInfoExtension createAnalyticsEngineInputInfoExtension() { return new AnalyticsEngineInputInfoExtension(); } /** * Create an instance of {@link ReceiverCapabilities } * */ public ReceiverCapabilities createReceiverCapabilities() { return new ReceiverCapabilities(); } /** * Create an instance of {@link FindRecordingResultList } * */ public FindRecordingResultList createFindRecordingResultList() { return new FindRecordingResultList(); } /** * Create an instance of {@link SystemDateTimeExtension } * */ public SystemDateTimeExtension createSystemDateTimeExtension() { return new SystemDateTimeExtension(); } /** * Create an instance of {@link FindPTZPositionResultList } * */ public FindPTZPositionResultList createFindPTZPositionResultList() { return new FindPTZPositionResultList(); } /** * Create an instance of {@link RuleEngineConfigurationExtension } * */ public RuleEngineConfigurationExtension createRuleEngineConfigurationExtension() { return new RuleEngineConfigurationExtension(); } /** * Create an instance of {@link ClassDescriptorExtension } * */ public ClassDescriptorExtension createClassDescriptorExtension() { return new ClassDescriptorExtension(); } /** * Create an instance of {@link NetworkInterfaceSetConfigurationExtension2 } * */ public NetworkInterfaceSetConfigurationExtension2 createNetworkInterfaceSetConfigurationExtension2() { return new NetworkInterfaceSetConfigurationExtension2(); } /** * Create an instance of {@link Dot3Configuration } * */ public Dot3Configuration createDot3Configuration() { return new Dot3Configuration(); } /** * Create an instance of {@link OSDTextConfigurationExtension } * */ public OSDTextConfigurationExtension createOSDTextConfigurationExtension() { return new OSDTextConfigurationExtension(); } /** * Create an instance of {@link AnalyticsEngineInputInfo } * */ public AnalyticsEngineInputInfo createAnalyticsEngineInputInfo() { return new AnalyticsEngineInputInfo(); } /** * Create an instance of {@link VideoOutputExtension } * */ public VideoOutputExtension createVideoOutputExtension() { return new VideoOutputExtension(); } /** * Create an instance of {@link ExposureOptions } * */ public ExposureOptions createExposureOptions() { return new ExposureOptions(); } /** * Create an instance of {@link VideoSourceConfigurationOptionsExtension2 } * */ public VideoSourceConfigurationOptionsExtension2 createVideoSourceConfigurationOptionsExtension2() { return new VideoSourceConfigurationOptionsExtension2(); } /** * Create an instance of {@link ReplayConfiguration } * */ public ReplayConfiguration createReplayConfiguration() { return new ReplayConfiguration(); } /** * Create an instance of {@link IrCutFilterAutoAdjustmentOptionsExtension } * */ public IrCutFilterAutoAdjustmentOptionsExtension createIrCutFilterAutoAdjustmentOptionsExtension() { return new IrCutFilterAutoAdjustmentOptionsExtension(); } /** * Create an instance of {@link OSDColorOptions } * */ public OSDColorOptions createOSDColorOptions() { return new OSDColorOptions(); } /** * Create an instance of {@link PTZStatusFilterOptions } * */ public PTZStatusFilterOptions createPTZStatusFilterOptions() { return new PTZStatusFilterOptions(); } /** * Create an instance of {@link SystemCapabilitiesExtension2 } * */ public SystemCapabilitiesExtension2 createSystemCapabilitiesExtension2() { return new SystemCapabilitiesExtension2(); } /** * Create an instance of {@link VideoEncoderOptionsExtension2 } * */ public VideoEncoderOptionsExtension2 createVideoEncoderOptionsExtension2() { return new VideoEncoderOptionsExtension2(); } /** * Create an instance of {@link RelativeFocusOptions } * */ public RelativeFocusOptions createRelativeFocusOptions() { return new RelativeFocusOptions(); } /** * Create an instance of {@link VideoSourceConfigurationExtension2 } * */ public VideoSourceConfigurationExtension2 createVideoSourceConfigurationExtension2() { return new VideoSourceConfigurationExtension2(); } /** * Create an instance of {@link FocusMove } * */ public FocusMove createFocusMove() { return new FocusMove(); } /** * Create an instance of {@link AnalyticsEngineControl } * */ public AnalyticsEngineControl createAnalyticsEngineControl() { return new AnalyticsEngineControl(); } /** * Create an instance of {@link ObjectId } * */ public ObjectId createObjectId() { return new ObjectId(); } /** * Create an instance of {@link CellLayout } * */ public CellLayout createCellLayout() { return new CellLayout(); } /** * Create an instance of {@link Profile } * */ public Profile createProfile() { return new Profile(); } /** * Create an instance of {@link ImagingSettingsExtension202 } * */ public ImagingSettingsExtension202 createImagingSettingsExtension202() { return new ImagingSettingsExtension202(); } /** * Create an instance of {@link SearchScopeExtension } * */ public SearchScopeExtension createSearchScopeExtension() { return new SearchScopeExtension(); } /** * Create an instance of {@link ImagingSettingsExtension203 } * */ public ImagingSettingsExtension203 createImagingSettingsExtension203() { return new ImagingSettingsExtension203(); } /** * Create an instance of {@link ImageStabilizationOptionsExtension } * */ public ImageStabilizationOptionsExtension createImageStabilizationOptionsExtension() { return new ImageStabilizationOptionsExtension(); } /** * Create an instance of {@link ColorDescriptorExtension } * */ public ColorDescriptorExtension createColorDescriptorExtension() { return new ColorDescriptorExtension(); } /** * Create an instance of {@link Layout } * */ public Layout createLayout() { return new Layout(); } /** * Create an instance of {@link NetworkInterfaceSetConfigurationExtension } * */ public NetworkInterfaceSetConfigurationExtension createNetworkInterfaceSetConfigurationExtension() { return new NetworkInterfaceSetConfigurationExtension(); } /** * Create an instance of {@link SecurityCapabilities } * */ public SecurityCapabilities createSecurityCapabilities() { return new SecurityCapabilities(); } /** * Create an instance of {@link IOCapabilitiesExtension2 } * */ public IOCapabilitiesExtension2 createIOCapabilitiesExtension2() { return new IOCapabilitiesExtension2(); } /** * Create an instance of {@link AppearanceExtension } * */ public AppearanceExtension createAppearanceExtension() { return new AppearanceExtension(); } /** * Create an instance of {@link RecordingJobSourceExtension } * */ public RecordingJobSourceExtension createRecordingJobSourceExtension() { return new RecordingJobSourceExtension(); } /** * Create an instance of {@link FindEventResult } * */ public FindEventResult createFindEventResult() { return new FindEventResult(); } /** * Create an instance of {@link RecordingConfiguration } * */ public RecordingConfiguration createRecordingConfiguration() { return new RecordingConfiguration(); } /** * Create an instance of {@link FloatList } * */ public FloatList createFloatList() { return new FloatList(); } /** * Create an instance of {@link PaneConfiguration } * */ public PaneConfiguration createPaneConfiguration() { return new PaneConfiguration(); } /** * Create an instance of {@link MediaCapabilitiesExtension } * */ public MediaCapabilitiesExtension createMediaCapabilitiesExtension() { return new MediaCapabilitiesExtension(); } /** * Create an instance of {@link IPv4NetworkInterface } * */ public IPv4NetworkInterface createIPv4NetworkInterface() { return new IPv4NetworkInterface(); } /** * Create an instance of {@link VideoEncoderOptionsExtension } * */ public VideoEncoderOptionsExtension createVideoEncoderOptionsExtension() { return new VideoEncoderOptionsExtension(); } /** * Create an instance of {@link AudioSourceOptionsExtension } * */ public AudioSourceOptionsExtension createAudioSourceOptionsExtension() { return new AudioSourceOptionsExtension(); } /** * Create an instance of {@link PTZPresetTourSupported } * */ public PTZPresetTourSupported createPTZPresetTourSupported() { return new PTZPresetTourSupported(); } /** * Create an instance of {@link IntList } * */ public IntList createIntList() { return new IntList(); } /** * Create an instance of {@link CertificateInformationExtension } * */ public CertificateInformationExtension createCertificateInformationExtension() { return new CertificateInformationExtension(); } /** * Create an instance of {@link PTZPresetTourStartingConditionExtension } * */ public PTZPresetTourStartingConditionExtension createPTZPresetTourStartingConditionExtension() { return new PTZPresetTourStartingConditionExtension(); } /** * Create an instance of {@link LayoutOptions } * */ public LayoutOptions createLayoutOptions() { return new LayoutOptions(); } /** * Create an instance of {@link ContinuousFocusOptions } * */ public ContinuousFocusOptions createContinuousFocusOptions() { return new ContinuousFocusOptions(); } /** * Create an instance of {@link MetadataConfigurationExtension } * */ public MetadataConfigurationExtension createMetadataConfigurationExtension() { return new MetadataConfigurationExtension(); } /** * Create an instance of {@link CapabilitiesExtension } * */ public CapabilitiesExtension createCapabilitiesExtension() { return new CapabilitiesExtension(); } /** * Create an instance of {@link PTZStreamExtension } * */ public PTZStreamExtension createPTZStreamExtension() { return new PTZStreamExtension(); } /** * Create an instance of {@link AudioDecoderConfigurationOptions } * */ public AudioDecoderConfigurationOptions createAudioDecoderConfigurationOptions() { return new AudioDecoderConfigurationOptions(); } /** * Create an instance of {@link DurationRange } * */ public DurationRange createDurationRange() { return new DurationRange(); } /** * Create an instance of {@link AudioEncoderConfigurationOptions } * */ public AudioEncoderConfigurationOptions createAudioEncoderConfigurationOptions() { return new AudioEncoderConfigurationOptions(); } /** * Create an instance of {@link SystemLogUri } * */ public SystemLogUri createSystemLogUri() { return new SystemLogUri(); } /** * Create an instance of {@link AnalyticsEngineConfigurationExtension } * */ public AnalyticsEngineConfigurationExtension createAnalyticsEngineConfigurationExtension() { return new AnalyticsEngineConfigurationExtension(); } /** * Create an instance of {@link Mpeg4Options } * */ public Mpeg4Options createMpeg4Options() { return new Mpeg4Options(); } /** * Create an instance of {@link PTZFilter } * */ public PTZFilter createPTZFilter() { return new PTZFilter(); } /** * Create an instance of {@link DeviceCapabilitiesExtension } * */ public DeviceCapabilitiesExtension createDeviceCapabilitiesExtension() { return new DeviceCapabilitiesExtension(); } /** * Create an instance of {@link Dot11AvailableNetworksExtension } * */ public Dot11AvailableNetworksExtension createDot11AvailableNetworksExtension() { return new Dot11AvailableNetworksExtension(); } /** * Create an instance of {@link Dot11PSKSet } * */ public Dot11PSKSet createDot11PSKSet() { return new Dot11PSKSet(); } /** * Create an instance of {@link AnalyticsCapabilities } * */ public AnalyticsCapabilities createAnalyticsCapabilities() { return new AnalyticsCapabilities(); } /** * Create an instance of {@link EapMethodExtension } * */ public EapMethodExtension createEapMethodExtension() { return new EapMethodExtension(); } /** * Create an instance of {@link PTZPreset } * */ public PTZPreset createPTZPreset() { return new PTZPreset(); } /** * Create an instance of {@link WideDynamicRange } * */ public WideDynamicRange createWideDynamicRange() { return new WideDynamicRange(); } /** * Create an instance of {@link FocusConfiguration20Extension } * */ public FocusConfiguration20Extension createFocusConfiguration20Extension() { return new FocusConfiguration20Extension(); } /** * Create an instance of {@link UserExtension } * */ public UserExtension createUserExtension() { return new UserExtension(); } /** * Create an instance of {@link PTZSpaces } * */ public PTZSpaces createPTZSpaces() { return new PTZSpaces(); } /** * Create an instance of {@link SupportedAnalyticsModulesExtension } * */ public SupportedAnalyticsModulesExtension createSupportedAnalyticsModulesExtension() { return new SupportedAnalyticsModulesExtension(); } /** * Create an instance of {@link SupportedRulesExtension } * */ public SupportedRulesExtension createSupportedRulesExtension() { return new SupportedRulesExtension(); } /** * Create an instance of {@link Exposure20 } * */ public Exposure20 createExposure20() { return new Exposure20(); } /** * Create an instance of {@link AnalyticsEngineConfiguration } * */ public AnalyticsEngineConfiguration createAnalyticsEngineConfiguration() { return new AnalyticsEngineConfiguration(); } /** * Create an instance of {@link IPv4Configuration } * */ public IPv4Configuration createIPv4Configuration() { return new IPv4Configuration(); } /** * Create an instance of {@link Exposure } * */ public Exposure createExposure() { return new Exposure(); } /** * Create an instance of {@link ClassDescriptorExtension2 } * */ public ClassDescriptorExtension2 createClassDescriptorExtension2() { return new ClassDescriptorExtension2(); } /** * Create an instance of {@link Dot1XConfigurationExtension } * */ public Dot1XConfigurationExtension createDot1XConfigurationExtension() { return new Dot1XConfigurationExtension(); } /** * Create an instance of {@link ShapeDescriptor } * */ public ShapeDescriptor createShapeDescriptor() { return new ShapeDescriptor(); } /** * Create an instance of {@link MetadataStreamExtension } * */ public MetadataStreamExtension createMetadataStreamExtension() { return new MetadataStreamExtension(); } /** * Create an instance of {@link OtherType } * */ public OtherType createOtherType() { return new OtherType(); } /** * Create an instance of {@link SearchScope } * */ public SearchScope createSearchScope() { return new SearchScope(); } /** * Create an instance of {@link VideoSourceExtension } * */ public VideoSourceExtension createVideoSourceExtension() { return new VideoSourceExtension(); } /** * Create an instance of {@link PTZPresetTourStartingCondition } * */ public PTZPresetTourStartingCondition createPTZPresetTourStartingCondition() { return new PTZPresetTourStartingCondition(); } /** * Create an instance of {@link EngineConfiguration } * */ public EngineConfiguration createEngineConfiguration() { return new EngineConfiguration(); } /** * Create an instance of {@link SecurityCapabilitiesExtension } * */ public SecurityCapabilitiesExtension createSecurityCapabilitiesExtension() { return new SecurityCapabilitiesExtension(); } /** * Create an instance of {@link FrameExtension2 } * */ public FrameExtension2 createFrameExtension2() { return new FrameExtension2(); } /** * Create an instance of {@link AudioOutput } * */ public AudioOutput createAudioOutput() { return new AudioOutput(); } /** * Create an instance of {@link RecordingJobStateTracks } * */ public RecordingJobStateTracks createRecordingJobStateTracks() { return new RecordingJobStateTracks(); } /** * Create an instance of {@link PTZConfigurationOptions2 } * */ public PTZConfigurationOptions2 createPTZConfigurationOptions2() { return new PTZConfigurationOptions2(); } /** * Create an instance of {@link PrefixedIPv6Address } * */ public PrefixedIPv6Address createPrefixedIPv6Address() { return new PrefixedIPv6Address(); } /** * Create an instance of {@link IntRange } * */ public IntRange createIntRange() { return new IntRange(); } /** * Create an instance of {@link TransformationExtension } * */ public TransformationExtension createTransformationExtension() { return new TransformationExtension(); } /** * Create an instance of {@link GetRecordingJobsResponseItem } * */ public GetRecordingJobsResponseItem createGetRecordingJobsResponseItem() { return new GetRecordingJobsResponseItem(); } /** * Create an instance of {@link CodingCapabilities } * */ public CodingCapabilities createCodingCapabilities() { return new CodingCapabilities(); } /** * Create an instance of {@link RealTimeStreamingCapabilitiesExtension } * */ public RealTimeStreamingCapabilitiesExtension createRealTimeStreamingCapabilitiesExtension() { return new RealTimeStreamingCapabilitiesExtension(); } /** * Create an instance of {@link RecordingSourceInformation } * */ public RecordingSourceInformation createRecordingSourceInformation() { return new RecordingSourceInformation(); } /** * Create an instance of {@link EFlipOptionsExtension } * */ public EFlipOptionsExtension createEFlipOptionsExtension() { return new EFlipOptionsExtension(); } /** * Create an instance of {@link ImagingSettings20 } * */ public ImagingSettings20 createImagingSettings20() { return new ImagingSettings20(); } /** * Create an instance of {@link PrefixedIPv4Address } * */ public PrefixedIPv4Address createPrefixedIPv4Address() { return new PrefixedIPv4Address(); } /** * Create an instance of {@link ActionEngineEventPayload } * */ public ActionEngineEventPayload createActionEngineEventPayload() { return new ActionEngineEventPayload(); } /** * Create an instance of {@link RealTimeStreamingCapabilities } * */ public RealTimeStreamingCapabilities createRealTimeStreamingCapabilities() { return new RealTimeStreamingCapabilities(); } /** * Create an instance of {@link OnvifVersion } * */ public OnvifVersion createOnvifVersion() { return new OnvifVersion(); } /** * Create an instance of {@link AudioOutputConfigurationOptions } * */ public AudioOutputConfigurationOptions createAudioOutputConfigurationOptions() { return new AudioOutputConfigurationOptions(); } /** * Create an instance of {@link ShapeDescriptorExtension } * */ public ShapeDescriptorExtension createShapeDescriptorExtension() { return new ShapeDescriptorExtension(); } /** * Create an instance of {@link PTZMoveStatus } * */ public PTZMoveStatus createPTZMoveStatus() { return new PTZMoveStatus(); } /** * Create an instance of {@link AnalyticsDeviceEngineConfigurationExtension } * */ public AnalyticsDeviceEngineConfigurationExtension createAnalyticsDeviceEngineConfigurationExtension() { return new AnalyticsDeviceEngineConfigurationExtension(); } /** * Create an instance of {@link RotateExtension } * */ public RotateExtension createRotateExtension() { return new RotateExtension(); } /** * Create an instance of {@link PTZPresetTourStartingConditionOptionsExtension } * */ public PTZPresetTourStartingConditionOptionsExtension createPTZPresetTourStartingConditionOptionsExtension() { return new PTZPresetTourStartingConditionOptionsExtension(); } /** * Create an instance of {@link VideoSource } * */ public VideoSource createVideoSource() { return new VideoSource(); } /** * Create an instance of {@link MetadataStreamExtension2 } * */ public MetadataStreamExtension2 createMetadataStreamExtension2() { return new MetadataStreamExtension2(); } /** * Create an instance of {@link PTControlDirectionExtension } * */ public PTControlDirectionExtension createPTControlDirectionExtension() { return new PTControlDirectionExtension(); } /** * Create an instance of {@link ProfileExtension2 } * */ public ProfileExtension2 createProfileExtension2() { return new ProfileExtension2(); } /** * Create an instance of {@link PTZPresetTourPresetDetailOptions } * */ public PTZPresetTourPresetDetailOptions createPTZPresetTourPresetDetailOptions() { return new PTZPresetTourPresetDetailOptions(); } /** * Create an instance of {@link LayoutExtension } * */ public LayoutExtension createLayoutExtension() { return new LayoutExtension(); } /** * Create an instance of {@link H264Configuration } * */ public H264Configuration createH264Configuration() { return new H264Configuration(); } /** * Create an instance of {@link Mpeg4DecOptions } * */ public Mpeg4DecOptions createMpeg4DecOptions() { return new Mpeg4DecOptions(); } /** * Create an instance of {@link RotateOptionsExtension } * */ public RotateOptionsExtension createRotateOptionsExtension() { return new RotateOptionsExtension(); } /** * Create an instance of {@link AudioAttributes } * */ public AudioAttributes createAudioAttributes() { return new AudioAttributes(); } /** * Create an instance of {@link PTZPresetTourStatusExtension } * */ public PTZPresetTourStatusExtension createPTZPresetTourStatusExtension() { return new PTZPresetTourStatusExtension(); } /** * Create an instance of {@link MaximumNumberOfOSDs } * */ public MaximumNumberOfOSDs createMaximumNumberOfOSDs() { return new MaximumNumberOfOSDs(); } /** * Create an instance of {@link AnalyticsState } * */ public AnalyticsState createAnalyticsState() { return new AnalyticsState(); } /** * Create an instance of {@link MoveOptions } * */ public MoveOptions createMoveOptions() { return new MoveOptions(); } /** * Create an instance of {@link AbsoluteFocusOptions } * */ public AbsoluteFocusOptions createAbsoluteFocusOptions() { return new AbsoluteFocusOptions(); } /** * Create an instance of {@link WideDynamicRange20 } * */ public WideDynamicRange20 createWideDynamicRange20() { return new WideDynamicRange20(); } /** * Create an instance of {@link EventStream } * */ public EventStream createEventStream() { return new EventStream(); } /** * Create an instance of {@link FloatRange } * */ public FloatRange createFloatRange() { return new FloatRange(); } /** * Create an instance of {@link PTZPresetTourSpotExtension } * */ public PTZPresetTourSpotExtension createPTZPresetTourSpotExtension() { return new PTZPresetTourSpotExtension(); } /** * Create an instance of {@link WideDynamicRangeOptions } * */ public WideDynamicRangeOptions createWideDynamicRangeOptions() { return new WideDynamicRangeOptions(); } /** * Create an instance of {@link Date } * */ public Date createDate() { return new Date(); } /** * Create an instance of {@link OSDImgConfiguration } * */ public OSDImgConfiguration createOSDImgConfiguration() { return new OSDImgConfiguration(); } /** * Create an instance of {@link AnalyticsEngine } * */ public AnalyticsEngine createAnalyticsEngine() { return new AnalyticsEngine(); } /** * Create an instance of {@link FindEventResultList } * */ public FindEventResultList createFindEventResultList() { return new FindEventResultList(); } /** * Create an instance of {@link PTControlDirectionOptionsExtension } * */ public PTControlDirectionOptionsExtension createPTControlDirectionOptionsExtension() { return new PTControlDirectionOptionsExtension(); } /** * Create an instance of {@link PTZPresetTourPresetDetail } * */ public PTZPresetTourPresetDetail createPTZPresetTourPresetDetail() { return new PTZPresetTourPresetDetail(); } /** * Create an instance of {@link Mpeg4Options2 } * */ public Mpeg4Options2 createMpeg4Options2() { return new Mpeg4Options2(); } /** * Create an instance of {@link ReceiverConfiguration } * */ public ReceiverConfiguration createReceiverConfiguration() { return new ReceiverConfiguration(); } /** * Create an instance of {@link ImagingOptions20 } * */ public ImagingOptions20 createImagingOptions20() { return new ImagingOptions20(); } /** * Create an instance of {@link MetadataInput } * */ public MetadataInput createMetadataInput() { return new MetadataInput(); } /** * Create an instance of {@link OSDImgOptionsExtension } * */ public OSDImgOptionsExtension createOSDImgOptionsExtension() { return new OSDImgOptionsExtension(); } /** * Create an instance of {@link ItemListExtension } * */ public ItemListExtension createItemListExtension() { return new ItemListExtension(); } /** * Create an instance of {@link DNSInformationExtension } * */ public DNSInformationExtension createDNSInformationExtension() { return new DNSInformationExtension(); } /** * Create an instance of {@link Config } * */ public Config createConfig() { return new Config(); } /** * Create an instance of {@link DeviceIOCapabilities } * */ public DeviceIOCapabilities createDeviceIOCapabilities() { return new DeviceIOCapabilities(); } /** * Create an instance of {@link PTZConfigurationExtension2 } * */ public PTZConfigurationExtension2 createPTZConfigurationExtension2() { return new PTZConfigurationExtension2(); } /** * Create an instance of {@link ActionEngineEventPayloadExtension } * */ public ActionEngineEventPayloadExtension createActionEngineEventPayloadExtension() { return new ActionEngineEventPayloadExtension(); } /** * Create an instance of {@link PTZPresetTourPresetDetailOptionsExtension } * */ public PTZPresetTourPresetDetailOptionsExtension createPTZPresetTourPresetDetailOptionsExtension() { return new PTZPresetTourPresetDetailOptionsExtension(); } /** * Create an instance of {@link ImagingOptions20Extension } * */ public ImagingOptions20Extension createImagingOptions20Extension() { return new ImagingOptions20Extension(); } /** * Create an instance of {@link Time } * */ public Time createTime() { return new Time(); } /** * Create an instance of {@link PTControlDirectionOptions } * */ public PTControlDirectionOptions createPTControlDirectionOptions() { return new PTControlDirectionOptions(); } /** * Create an instance of {@link MessageDescriptionExtension } * */ public MessageDescriptionExtension createMessageDescriptionExtension() { return new MessageDescriptionExtension(); } /** * Create an instance of {@link Object } * */ public Object createObject() { return new Object(); } /** * Create an instance of {@link BacklightCompensation } * */ public BacklightCompensation createBacklightCompensation() { return new BacklightCompensation(); } /** * Create an instance of {@link VideoSourceConfigurationOptionsExtension } * */ public VideoSourceConfigurationOptionsExtension createVideoSourceConfigurationOptionsExtension() { return new VideoSourceConfigurationOptionsExtension(); } /** * Create an instance of {@link FindMetadataResult } * */ public FindMetadataResult createFindMetadataResult() { return new FindMetadataResult(); } /** * Create an instance of {@link ImagingSettingsExtension } * */ public ImagingSettingsExtension createImagingSettingsExtension() { return new ImagingSettingsExtension(); } /** * Create an instance of {@link RecordingJobTrack } * */ public RecordingJobTrack createRecordingJobTrack() { return new RecordingJobTrack(); } /** * Create an instance of {@link Dot11PSKSetExtension } * */ public Dot11PSKSetExtension createDot11PSKSetExtension() { return new Dot11PSKSetExtension(); } /** * Create an instance of {@link WhiteBalanceOptions20 } * */ public WhiteBalanceOptions20 createWhiteBalanceOptions20() { return new WhiteBalanceOptions20(); } /** * Create an instance of {@link NTPInformationExtension } * */ public NTPInformationExtension createNTPInformationExtension() { return new NTPInformationExtension(); } /** * Create an instance of {@link RecordingJobSource } * */ public RecordingJobSource createRecordingJobSource() { return new RecordingJobSource(); } /** * Create an instance of {@link ImagingOptions } * */ public ImagingOptions createImagingOptions() { return new ImagingOptions(); } /** * Create an instance of {@link MotionInCells } * */ public MotionInCells createMotionInCells() { return new MotionInCells(); } /** * Create an instance of {@link ImagingStatus20 } * */ public ImagingStatus20 createImagingStatus20() { return new ImagingStatus20(); } /** * Create an instance of {@link Reverse } * */ public Reverse createReverse() { return new Reverse(); } /** * Create an instance of {@link SupportedAnalyticsModules } * */ public SupportedAnalyticsModules createSupportedAnalyticsModules() { return new SupportedAnalyticsModules(); } /** * Create an instance of {@link ImagingSettingsExtension20 } * */ public ImagingSettingsExtension20 createImagingSettingsExtension20() { return new ImagingSettingsExtension20(); } /** * Create an instance of {@link DigitalInput } * */ public DigitalInput createDigitalInput() { return new DigitalInput(); } /** * Create an instance of {@link VideoAnalyticsStreamExtension } * */ public VideoAnalyticsStreamExtension createVideoAnalyticsStreamExtension() { return new VideoAnalyticsStreamExtension(); } /** * Create an instance of {@link PresetTour } * */ public PresetTour createPresetTour() { return new PresetTour(); } /** * Create an instance of {@link NetworkInterfaceExtension2 } * */ public NetworkInterfaceExtension2 createNetworkInterfaceExtension2() { return new NetworkInterfaceExtension2(); } /** * Create an instance of {@link VideoDecoderConfigurationOptions } * */ public VideoDecoderConfigurationOptions createVideoDecoderConfigurationOptions() { return new VideoDecoderConfigurationOptions(); } /** * Create an instance of {@link OSDImgOptions } * */ public OSDImgOptions createOSDImgOptions() { return new OSDImgOptions(); } /** * Create an instance of {@link Appearance } * */ public Appearance createAppearance() { return new Appearance(); } /** * Create an instance of {@link WhiteBalance20Extension } * */ public WhiteBalance20Extension createWhiteBalance20Extension() { return new WhiteBalance20Extension(); } /** * Create an instance of {@link PaneLayout } * */ public PaneLayout createPaneLayout() { return new PaneLayout(); } /** * Create an instance of {@link WhiteBalanceOptions } * */ public WhiteBalanceOptions createWhiteBalanceOptions() { return new WhiteBalanceOptions(); } /** * Create an instance of {@link DeviceCapabilities } * */ public DeviceCapabilities createDeviceCapabilities() { return new DeviceCapabilities(); } /** * Create an instance of {@link OSDTextOptions } * */ public OSDTextOptions createOSDTextOptions() { return new OSDTextOptions(); } /** * Create an instance of {@link ObjectExtension } * */ public ObjectExtension createObjectExtension() { return new ObjectExtension(); } /** * Create an instance of {@link CapabilitiesExtension2 } * */ public CapabilitiesExtension2 createCapabilitiesExtension2() { return new CapabilitiesExtension2(); } /** * Create an instance of {@link AnalyticsDeviceEngineConfiguration } * */ public AnalyticsDeviceEngineConfiguration createAnalyticsDeviceEngineConfiguration() { return new AnalyticsDeviceEngineConfiguration(); } /** * Create an instance of {@link OSDTextConfiguration } * */ public OSDTextConfiguration createOSDTextConfiguration() { return new OSDTextConfiguration(); } /** * Create an instance of {@link ColorCovariance } * */ public ColorCovariance createColorCovariance() { return new ColorCovariance(); } /** * Create an instance of {@link OSDPosConfiguration } * */ public OSDPosConfiguration createOSDPosConfiguration() { return new OSDPosConfiguration(); } /** * Create an instance of {@link PTZSpeed } * */ public PTZSpeed createPTZSpeed() { return new PTZSpeed(); } /** * Create an instance of {@link NetworkCapabilitiesExtension } * */ public NetworkCapabilitiesExtension createNetworkCapabilitiesExtension() { return new NetworkCapabilitiesExtension(); } /** * Create an instance of {@link PanTiltLimits } * */ public PanTiltLimits createPanTiltLimits() { return new PanTiltLimits(); } /** * Create an instance of {@link RecordingSummary } * */ public RecordingSummary createRecordingSummary() { return new RecordingSummary(); } /** * Create an instance of {@link SecurityCapabilitiesExtension2 } * */ public SecurityCapabilitiesExtension2 createSecurityCapabilitiesExtension2() { return new SecurityCapabilitiesExtension2(); } /** * Create an instance of {@link PTZNode } * */ public PTZNode createPTZNode() { return new PTZNode(); } /** * Create an instance of {@link PTZPresetTourStatus } * */ public PTZPresetTourStatus createPTZPresetTourStatus() { return new PTZPresetTourStatus(); } /** * Create an instance of {@link RuleEngineConfiguration } * */ public RuleEngineConfiguration createRuleEngineConfiguration() { return new RuleEngineConfiguration(); } /** * Create an instance of {@link VideoSourceConfigurationExtension } * */ public VideoSourceConfigurationExtension createVideoSourceConfigurationExtension() { return new VideoSourceConfigurationExtension(); } /** * Create an instance of {@link TrackInformation } * */ public TrackInformation createTrackInformation() { return new TrackInformation(); } /** * Create an instance of {@link AnalyticsDeviceExtension } * */ public AnalyticsDeviceExtension createAnalyticsDeviceExtension() { return new AnalyticsDeviceExtension(); } /** * Create an instance of {@link RecordingJobStateInformation } * */ public RecordingJobStateInformation createRecordingJobStateInformation() { return new RecordingJobStateInformation(); } /** * Create an instance of {@link VideoAnalyticsStream } * */ public VideoAnalyticsStream createVideoAnalyticsStream() { return new VideoAnalyticsStream(); } /** * Create an instance of {@link ConfigurationEntity } * */ public ConfigurationEntity createConfigurationEntity() { return new ConfigurationEntity(); } /** * Create an instance of {@link MoveOptions20 } * */ public MoveOptions20 createMoveOptions20() { return new MoveOptions20(); } /** * Create an instance of {@link HostnameInformationExtension } * */ public HostnameInformationExtension createHostnameInformationExtension() { return new HostnameInformationExtension(); } /** * Create an instance of {@link PTZPresetTourExtension } * */ public PTZPresetTourExtension createPTZPresetTourExtension() { return new PTZPresetTourExtension(); } /** * Create an instance of {@link MotionExpression } * */ public MotionExpression createMotionExpression() { return new MotionExpression(); } /** * Create an instance of {@link H264Options } * */ public H264Options createH264Options() { return new H264Options(); } /** * Create an instance of {@link ReceiverStateInformation } * */ public ReceiverStateInformation createReceiverStateInformation() { return new ReceiverStateInformation(); } /** * Create an instance of {@link Dot11SecurityConfigurationExtension } * */ public Dot11SecurityConfigurationExtension createDot11SecurityConfigurationExtension() { return new Dot11SecurityConfigurationExtension(); } /** * Create an instance of {@link NetworkProtocolExtension } * */ public NetworkProtocolExtension createNetworkProtocolExtension() { return new NetworkProtocolExtension(); } /** * Create an instance of {@link PTZStream } * */ public PTZStream createPTZStream() { return new PTZStream(); } /** * Create an instance of {@link FrameExtension } * */ public FrameExtension createFrameExtension() { return new FrameExtension(); } /** * Create an instance of {@link PTZPresetTourSpot } * */ public PTZPresetTourSpot createPTZPresetTourSpot() { return new PTZPresetTourSpot(); } /** * Create an instance of {@link PTZPresetTourTypeExtension } * */ public PTZPresetTourTypeExtension createPTZPresetTourTypeExtension() { return new PTZPresetTourTypeExtension(); } /** * Create an instance of {@link FocusOptions } * */ public FocusOptions createFocusOptions() { return new FocusOptions(); } /** * Create an instance of {@link OSDTextOptionsExtension } * */ public OSDTextOptionsExtension createOSDTextOptionsExtension() { return new OSDTextOptionsExtension(); } /** * Create an instance of {@link ImagingCapabilities } * */ public ImagingCapabilities createImagingCapabilities() { return new ImagingCapabilities(); } /** * Create an instance of {@link VideoOutputConfiguration } * */ public VideoOutputConfiguration createVideoOutputConfiguration() { return new VideoOutputConfiguration(); } /** * Create an instance of {@link AudioClassCandidate } * */ public AudioClassCandidate createAudioClassCandidate() { return new AudioClassCandidate(); } /** * Create an instance of {@link NetworkHostExtension } * */ public NetworkHostExtension createNetworkHostExtension() { return new NetworkHostExtension(); } /** * Create an instance of {@link ItemListDescription.SimpleItemDescription } * */ public ItemListDescription.SimpleItemDescription createItemListDescriptionSimpleItemDescription() { return new ItemListDescription.SimpleItemDescription(); } /** * Create an instance of {@link ItemListDescription.ElementItemDescription } * */ public ItemListDescription.ElementItemDescription createItemListDescriptionElementItemDescription() { return new ItemListDescription.ElementItemDescription(); } /** * Create an instance of {@link ConfigDescription.Messages } * */ public ConfigDescription.Messages createConfigDescriptionMessages() { return new ConfigDescription.Messages(); } /** * Create an instance of {@link Behaviour.Removed } * */ public Behaviour.Removed createBehaviourRemoved() { return new Behaviour.Removed(); } /** * Create an instance of {@link Behaviour.Idle } * */ public Behaviour.Idle createBehaviourIdle() { return new Behaviour.Idle(); } /** * Create an instance of {@link ColorDescriptor.ColorCluster } * */ public ColorDescriptor.ColorCluster createColorDescriptorColorCluster() { return new ColorDescriptor.ColorCluster(); } /** * Create an instance of {@link EventSubscription.SubscriptionPolicy } * */ public EventSubscription.SubscriptionPolicy createEventSubscriptionSubscriptionPolicy() { return new EventSubscription.SubscriptionPolicy(); } /** * Create an instance of {@link ClassDescriptor.ClassCandidate } * */ public ClassDescriptor.ClassCandidate createClassDescriptorClassCandidate() { return new ClassDescriptor.ClassCandidate(); } /** * Create an instance of {@link ItemList.SimpleItem } * */ public ItemList.SimpleItem createItemListSimpleItem() { return new ItemList.SimpleItem(); } /** * Create an instance of {@link ItemList.ElementItem } * */ public ItemList.ElementItem createItemListElementItem() { return new ItemList.ElementItem(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link VideoSourceConfiguration }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/schema", name = "VideoSourceConfiguration") public JAXBElement createVideoSourceConfiguration(VideoSourceConfiguration value) { return new JAXBElement(_VideoSourceConfiguration_QNAME, VideoSourceConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link MetadataStream }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/schema", name = "MetadataStream") public JAXBElement createMetadataStream(MetadataStream value) { return new JAXBElement(_MetadataStream_QNAME, MetadataStream.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link AudioEncoderConfiguration }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/schema", name = "AudioEncoderConfiguration") public JAXBElement createAudioEncoderConfiguration(AudioEncoderConfiguration value) { return new JAXBElement(_AudioEncoderConfiguration_QNAME, AudioEncoderConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link VideoEncoderConfiguration }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/schema", name = "VideoEncoderConfiguration") public JAXBElement createVideoEncoderConfiguration(VideoEncoderConfiguration value) { return new JAXBElement(_VideoEncoderConfiguration_QNAME, VideoEncoderConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link VideoAnalyticsConfiguration }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/schema", name = "VideoAnalyticsConfiguration") public JAXBElement createVideoAnalyticsConfiguration(VideoAnalyticsConfiguration value) { return new JAXBElement(_VideoAnalyticsConfiguration_QNAME, VideoAnalyticsConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link AudioOutputConfiguration }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/schema", name = "AudioOutputConfiguration") public JAXBElement createAudioOutputConfiguration(AudioOutputConfiguration value) { return new JAXBElement(_AudioOutputConfiguration_QNAME, AudioOutputConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Polygon }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/schema", name = "Polygon") public JAXBElement createPolygon(Polygon value) { return new JAXBElement(_Polygon_QNAME, Polygon.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Polyline }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/schema", name = "Polyline") public JAXBElement createPolyline(Polyline value) { return new JAXBElement(_Polyline_QNAME, Polyline.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link AudioSourceConfiguration }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/schema", name = "AudioSourceConfiguration") public JAXBElement createAudioSourceConfiguration(AudioSourceConfiguration value) { return new JAXBElement(_AudioSourceConfiguration_QNAME, AudioSourceConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link MetadataConfiguration }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/schema", name = "MetadataConfiguration") public JAXBElement createMetadataConfiguration(MetadataConfiguration value) { return new JAXBElement(_MetadataConfiguration_QNAME, MetadataConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link PTZConfiguration }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/schema", name = "PTZConfiguration") public JAXBElement createPTZConfiguration(PTZConfiguration value) { return new JAXBElement(_PTZConfiguration_QNAME, PTZConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link AudioDecoderConfiguration }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver10/schema", name = "AudioDecoderConfiguration") public JAXBElement createAudioDecoderConfiguration(AudioDecoderConfiguration value) { return new JAXBElement(_AudioDecoderConfiguration_QNAME, AudioDecoderConfiguration.class, null, value); } } ================================================ FILE: src/org/onvif/ver10/schema/ObjectId.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ObjectId complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ObjectId") @XmlSeeAlso({ Object.class }) public class ObjectId { @XmlAttribute(name = "ObjectId") protected BigInteger objectId; /** * Ruft den Wert der objectId-Eigenschaft ab. * * @return possible object is {@link BigInteger } * */ public BigInteger getObjectId() { return objectId; } /** * Legt den Wert der objectId-Eigenschaft fest. * * @param value * allowed object is {@link BigInteger } * */ public void setObjectId(BigInteger value) { this.objectId = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ObjectTree.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r ObjectTree complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ObjectTree", propOrder = { "rename", "split", "merge", "delete", "extension" }) public class ObjectTree { @XmlElement(name = "Rename") protected List rename; @XmlElement(name = "Split") protected List split; @XmlElement(name = "Merge") protected List merge; @XmlElement(name = "Delete") protected List delete; @XmlElement(name = "Extension") protected ObjectTreeExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the rename property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the rename property. * *

* For example, to add a new item, do as follows: * *

	 * getRename().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Rename } * * */ public List getRename() { if (rename == null) { rename = new ArrayList(); } return this.rename; } /** * Gets the value of the split property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the split property. * *

* For example, to add a new item, do as follows: * *

	 * getSplit().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Split } * * */ public List getSplit() { if (split == null) { split = new ArrayList(); } return this.split; } /** * Gets the value of the merge property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the merge property. * *

* For example, to add a new item, do as follows: * *

	 * getMerge().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Merge } * * */ public List getMerge() { if (merge == null) { merge = new ArrayList(); } return this.merge; } /** * Gets the value of the delete property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the delete property. * *

* For example, to add a new item, do as follows: * *

	 * getDelete().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ObjectId } * * */ public List getDelete() { if (delete == null) { delete = new ArrayList(); } return this.delete; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ObjectTreeExtension } * */ public ObjectTreeExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ObjectTreeExtension } * */ public void setExtension(ObjectTreeExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ObjectTreeExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ObjectTreeExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ObjectTreeExtension", propOrder = { "any" }) public class ObjectTreeExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/OnvifVersion.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r OnvifVersion complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OnvifVersion", propOrder = { "major", "minor" }) public class OnvifVersion { @XmlElement(name = "Major") protected int major; @XmlElement(name = "Minor") protected int minor; /** * Ruft den Wert der major-Eigenschaft ab. * */ public int getMajor() { return major; } /** * Legt den Wert der major-Eigenschaft fest. * */ public void setMajor(int value) { this.major = value; } /** * Ruft den Wert der minor-Eigenschaft ab. * */ public int getMinor() { return minor; } /** * Legt den Wert der minor-Eigenschaft fest. * */ public void setMinor(int value) { this.minor = value; } } ================================================ FILE: src/org/onvif/ver10/schema/OtherType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r OtherType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OtherType", propOrder = { "type", "likelihood", "any" }) public class OtherType { @XmlElement(name = "Type", required = true) protected String type; @XmlElement(name = "Likelihood") protected float likelihood; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setType(String value) { this.type = value; } /** * Ruft den Wert der likelihood-Eigenschaft ab. * */ public float getLikelihood() { return likelihood; } /** * Legt den Wert der likelihood-Eigenschaft fest. * */ public void setLikelihood(float value) { this.likelihood = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTControlDirection.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PTControlDirection complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTControlDirection", propOrder = { "eFlip", "reverse", "extension" }) public class PTControlDirection { @XmlElement(name = "EFlip") protected EFlip eFlip; @XmlElement(name = "Reverse") protected Reverse reverse; @XmlElement(name = "Extension") protected PTControlDirectionExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der eFlip-Eigenschaft ab. * * @return possible object is {@link EFlip } * */ public EFlip getEFlip() { return eFlip; } /** * Legt den Wert der eFlip-Eigenschaft fest. * * @param value * allowed object is {@link EFlip } * */ public void setEFlip(EFlip value) { this.eFlip = value; } /** * Ruft den Wert der reverse-Eigenschaft ab. * * @return possible object is {@link Reverse } * */ public Reverse getReverse() { return reverse; } /** * Legt den Wert der reverse-Eigenschaft fest. * * @param value * allowed object is {@link Reverse } * */ public void setReverse(Reverse value) { this.reverse = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTControlDirectionExtension } * */ public PTControlDirectionExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTControlDirectionExtension } * */ public void setExtension(PTControlDirectionExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTControlDirectionExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTControlDirectionExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTControlDirectionExtension", propOrder = { "any" }) public class PTControlDirectionExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTControlDirectionOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PTControlDirectionOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTControlDirectionOptions", propOrder = { "eFlip", "reverse", "extension" }) public class PTControlDirectionOptions { @XmlElement(name = "EFlip") protected EFlipOptions eFlip; @XmlElement(name = "Reverse") protected ReverseOptions reverse; @XmlElement(name = "Extension") protected PTControlDirectionOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der eFlip-Eigenschaft ab. * * @return possible object is {@link EFlipOptions } * */ public EFlipOptions getEFlip() { return eFlip; } /** * Legt den Wert der eFlip-Eigenschaft fest. * * @param value * allowed object is {@link EFlipOptions } * */ public void setEFlip(EFlipOptions value) { this.eFlip = value; } /** * Ruft den Wert der reverse-Eigenschaft ab. * * @return possible object is {@link ReverseOptions } * */ public ReverseOptions getReverse() { return reverse; } /** * Legt den Wert der reverse-Eigenschaft fest. * * @param value * allowed object is {@link ReverseOptions } * */ public void setReverse(ReverseOptions value) { this.reverse = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTControlDirectionOptionsExtension } * */ public PTControlDirectionOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTControlDirectionOptionsExtension } * */ public void setExtension(PTControlDirectionOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTControlDirectionOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTControlDirectionOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTControlDirectionOptionsExtension", propOrder = { "any" }) public class PTControlDirectionOptionsExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZCapabilities", propOrder = { "xAddr", "any" }) public class PTZCapabilities { @XmlElement(name = "XAddr", required = true) @XmlSchemaType(name = "anyURI") protected String xAddr; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der xAddr-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getXAddr() { return xAddr; } /** * Legt den Wert der xAddr-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setXAddr(String value) { this.xAddr = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PTZConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZConfiguration", propOrder = { "nodeToken", "defaultAbsolutePantTiltPositionSpace", "defaultAbsoluteZoomPositionSpace", "defaultRelativePanTiltTranslationSpace", "defaultRelativeZoomTranslationSpace", "defaultContinuousPanTiltVelocitySpace", "defaultContinuousZoomVelocitySpace", "defaultPTZSpeed", "defaultPTZTimeout", "panTiltLimits", "zoomLimits", "extension" }) public class PTZConfiguration extends ConfigurationEntity { @XmlElement(name = "NodeToken", required = true) protected String nodeToken; @XmlElement(name = "DefaultAbsolutePantTiltPositionSpace") @XmlSchemaType(name = "anyURI") protected String defaultAbsolutePantTiltPositionSpace; @XmlElement(name = "DefaultAbsoluteZoomPositionSpace") @XmlSchemaType(name = "anyURI") protected String defaultAbsoluteZoomPositionSpace; @XmlElement(name = "DefaultRelativePanTiltTranslationSpace") @XmlSchemaType(name = "anyURI") protected String defaultRelativePanTiltTranslationSpace; @XmlElement(name = "DefaultRelativeZoomTranslationSpace") @XmlSchemaType(name = "anyURI") protected String defaultRelativeZoomTranslationSpace; @XmlElement(name = "DefaultContinuousPanTiltVelocitySpace") @XmlSchemaType(name = "anyURI") protected String defaultContinuousPanTiltVelocitySpace; @XmlElement(name = "DefaultContinuousZoomVelocitySpace") @XmlSchemaType(name = "anyURI") protected String defaultContinuousZoomVelocitySpace; @XmlElement(name = "DefaultPTZSpeed") protected PTZSpeed defaultPTZSpeed; @XmlElement(name = "DefaultPTZTimeout") protected Duration defaultPTZTimeout; @XmlElement(name = "PanTiltLimits") protected PanTiltLimits panTiltLimits; @XmlElement(name = "ZoomLimits") protected ZoomLimits zoomLimits; @XmlElement(name = "Extension") protected PTZConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der nodeToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getNodeToken() { return nodeToken; } /** * Legt den Wert der nodeToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setNodeToken(String value) { this.nodeToken = value; } /** * Ruft den Wert der defaultAbsolutePantTiltPositionSpace-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDefaultAbsolutePantTiltPositionSpace() { return defaultAbsolutePantTiltPositionSpace; } /** * Legt den Wert der defaultAbsolutePantTiltPositionSpace-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDefaultAbsolutePantTiltPositionSpace(String value) { this.defaultAbsolutePantTiltPositionSpace = value; } /** * Ruft den Wert der defaultAbsoluteZoomPositionSpace-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDefaultAbsoluteZoomPositionSpace() { return defaultAbsoluteZoomPositionSpace; } /** * Legt den Wert der defaultAbsoluteZoomPositionSpace-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDefaultAbsoluteZoomPositionSpace(String value) { this.defaultAbsoluteZoomPositionSpace = value; } /** * Ruft den Wert der defaultRelativePanTiltTranslationSpace-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDefaultRelativePanTiltTranslationSpace() { return defaultRelativePanTiltTranslationSpace; } /** * Legt den Wert der defaultRelativePanTiltTranslationSpace-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDefaultRelativePanTiltTranslationSpace(String value) { this.defaultRelativePanTiltTranslationSpace = value; } /** * Ruft den Wert der defaultRelativeZoomTranslationSpace-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDefaultRelativeZoomTranslationSpace() { return defaultRelativeZoomTranslationSpace; } /** * Legt den Wert der defaultRelativeZoomTranslationSpace-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDefaultRelativeZoomTranslationSpace(String value) { this.defaultRelativeZoomTranslationSpace = value; } /** * Ruft den Wert der defaultContinuousPanTiltVelocitySpace-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDefaultContinuousPanTiltVelocitySpace() { return defaultContinuousPanTiltVelocitySpace; } /** * Legt den Wert der defaultContinuousPanTiltVelocitySpace-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDefaultContinuousPanTiltVelocitySpace(String value) { this.defaultContinuousPanTiltVelocitySpace = value; } /** * Ruft den Wert der defaultContinuousZoomVelocitySpace-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDefaultContinuousZoomVelocitySpace() { return defaultContinuousZoomVelocitySpace; } /** * Legt den Wert der defaultContinuousZoomVelocitySpace-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDefaultContinuousZoomVelocitySpace(String value) { this.defaultContinuousZoomVelocitySpace = value; } /** * Ruft den Wert der defaultPTZSpeed-Eigenschaft ab. * * @return possible object is {@link PTZSpeed } * */ public PTZSpeed getDefaultPTZSpeed() { return defaultPTZSpeed; } /** * Legt den Wert der defaultPTZSpeed-Eigenschaft fest. * * @param value * allowed object is {@link PTZSpeed } * */ public void setDefaultPTZSpeed(PTZSpeed value) { this.defaultPTZSpeed = value; } /** * Ruft den Wert der defaultPTZTimeout-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getDefaultPTZTimeout() { return defaultPTZTimeout; } /** * Legt den Wert der defaultPTZTimeout-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setDefaultPTZTimeout(Duration value) { this.defaultPTZTimeout = value; } /** * Ruft den Wert der panTiltLimits-Eigenschaft ab. * * @return possible object is {@link PanTiltLimits } * */ public PanTiltLimits getPanTiltLimits() { return panTiltLimits; } /** * Legt den Wert der panTiltLimits-Eigenschaft fest. * * @param value * allowed object is {@link PanTiltLimits } * */ public void setPanTiltLimits(PanTiltLimits value) { this.panTiltLimits = value; } /** * Ruft den Wert der zoomLimits-Eigenschaft ab. * * @return possible object is {@link ZoomLimits } * */ public ZoomLimits getZoomLimits() { return zoomLimits; } /** * Legt den Wert der zoomLimits-Eigenschaft fest. * * @param value * allowed object is {@link ZoomLimits } * */ public void setZoomLimits(ZoomLimits value) { this.zoomLimits = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTZConfigurationExtension } * */ public PTZConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTZConfigurationExtension } * */ public void setExtension(PTZConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZConfigurationExtension", propOrder = { "any", "ptControlDirection", "extension" }) public class PTZConfigurationExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "PTControlDirection") protected PTControlDirection ptControlDirection; @XmlElement(name = "Extension") protected PTZConfigurationExtension2 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der ptControlDirection-Eigenschaft ab. * * @return possible object is {@link PTControlDirection } * */ public PTControlDirection getPTControlDirection() { return ptControlDirection; } /** * Legt den Wert der ptControlDirection-Eigenschaft fest. * * @param value * allowed object is {@link PTControlDirection } * */ public void setPTControlDirection(PTControlDirection value) { this.ptControlDirection = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTZConfigurationExtension2 } * */ public PTZConfigurationExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTZConfigurationExtension2 } * */ public void setExtension(PTZConfigurationExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZConfigurationExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZConfigurationExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZConfigurationExtension2", propOrder = { "any" }) public class PTZConfigurationExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZConfigurationOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZConfigurationOptions", propOrder = { "spaces", "ptzTimeout", "any", "ptControlDirection", "extension" }) public class PTZConfigurationOptions { @XmlElement(name = "Spaces", required = true) protected PTZSpaces spaces; @XmlElement(name = "PTZTimeout", required = true) protected DurationRange ptzTimeout; @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "PTControlDirection") protected PTControlDirectionOptions ptControlDirection; @XmlElement(name = "Extension") protected PTZConfigurationOptions2 extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der spaces-Eigenschaft ab. * * @return possible object is {@link PTZSpaces } * */ public PTZSpaces getSpaces() { return spaces; } /** * Legt den Wert der spaces-Eigenschaft fest. * * @param value * allowed object is {@link PTZSpaces } * */ public void setSpaces(PTZSpaces value) { this.spaces = value; } /** * Ruft den Wert der ptzTimeout-Eigenschaft ab. * * @return possible object is {@link DurationRange } * */ public DurationRange getPTZTimeout() { return ptzTimeout; } /** * Legt den Wert der ptzTimeout-Eigenschaft fest. * * @param value * allowed object is {@link DurationRange } * */ public void setPTZTimeout(DurationRange value) { this.ptzTimeout = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der ptControlDirection-Eigenschaft ab. * * @return possible object is {@link PTControlDirectionOptions } * */ public PTControlDirectionOptions getPTControlDirection() { return ptControlDirection; } /** * Legt den Wert der ptControlDirection-Eigenschaft fest. * * @param value * allowed object is {@link PTControlDirectionOptions } * */ public void setPTControlDirection(PTControlDirectionOptions value) { this.ptControlDirection = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTZConfigurationOptions2 } * */ public PTZConfigurationOptions2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTZConfigurationOptions2 } * */ public void setExtension(PTZConfigurationOptions2 value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZConfigurationOptions2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZConfigurationOptions2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZConfigurationOptions2", propOrder = { "any" }) public class PTZConfigurationOptions2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZFilter.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PTZFilter complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZFilter", propOrder = { "status", "position" }) public class PTZFilter { @XmlElement(name = "Status") protected boolean status; @XmlElement(name = "Position") protected boolean position; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der status-Eigenschaft ab. * */ public boolean isStatus() { return status; } /** * Legt den Wert der status-Eigenschaft fest. * */ public void setStatus(boolean value) { this.status = value; } /** * Ruft den Wert der position-Eigenschaft ab. * */ public boolean isPosition() { return position; } /** * Legt den Wert der position-Eigenschaft fest. * */ public void setPosition(boolean value) { this.position = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZMoveStatus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r PTZMoveStatus complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZMoveStatus", propOrder = { "panTilt", "zoom" }) public class PTZMoveStatus { @XmlElement(name = "PanTilt") protected MoveStatus panTilt; @XmlElement(name = "Zoom") protected MoveStatus zoom; /** * Ruft den Wert der panTilt-Eigenschaft ab. * * @return possible object is {@link MoveStatus } * */ public MoveStatus getPanTilt() { return panTilt; } /** * Legt den Wert der panTilt-Eigenschaft fest. * * @param value * allowed object is {@link MoveStatus } * */ public void setPanTilt(MoveStatus value) { this.panTilt = value; } /** * Ruft den Wert der zoom-Eigenschaft ab. * * @return possible object is {@link MoveStatus } * */ public MoveStatus getZoom() { return zoom; } /** * Legt den Wert der zoom-Eigenschaft fest. * * @param value * allowed object is {@link MoveStatus } * */ public void setZoom(MoveStatus value) { this.zoom = value; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZNode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PTZNode complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZNode", propOrder = { "name", "supportedPTZSpaces", "maximumNumberOfPresets", "homeSupported", "auxiliaryCommands", "extension" }) public class PTZNode extends DeviceEntity { @XmlElement(name = "Name") protected String name; @XmlElement(name = "SupportedPTZSpaces", required = true) protected PTZSpaces supportedPTZSpaces; @XmlElement(name = "MaximumNumberOfPresets") protected int maximumNumberOfPresets; @XmlElement(name = "HomeSupported") protected boolean homeSupported; @XmlElement(name = "AuxiliaryCommands") protected List auxiliaryCommands; @XmlElement(name = "Extension") protected PTZNodeExtension extension; @XmlAttribute(name = "FixedHomePosition") protected Boolean fixedHomePosition; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der supportedPTZSpaces-Eigenschaft ab. * * @return possible object is {@link PTZSpaces } * */ public PTZSpaces getSupportedPTZSpaces() { return supportedPTZSpaces; } /** * Legt den Wert der supportedPTZSpaces-Eigenschaft fest. * * @param value * allowed object is {@link PTZSpaces } * */ public void setSupportedPTZSpaces(PTZSpaces value) { this.supportedPTZSpaces = value; } /** * Ruft den Wert der maximumNumberOfPresets-Eigenschaft ab. * */ public int getMaximumNumberOfPresets() { return maximumNumberOfPresets; } /** * Legt den Wert der maximumNumberOfPresets-Eigenschaft fest. * */ public void setMaximumNumberOfPresets(int value) { this.maximumNumberOfPresets = value; } /** * Ruft den Wert der homeSupported-Eigenschaft ab. * */ public boolean isHomeSupported() { return homeSupported; } /** * Legt den Wert der homeSupported-Eigenschaft fest. * */ public void setHomeSupported(boolean value) { this.homeSupported = value; } /** * Gets the value of the auxiliaryCommands property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the auxiliaryCommands property. * *

* For example, to add a new item, do as follows: * *

	 * getAuxiliaryCommands().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getAuxiliaryCommands() { if (auxiliaryCommands == null) { auxiliaryCommands = new ArrayList(); } return this.auxiliaryCommands; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTZNodeExtension } * */ public PTZNodeExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTZNodeExtension } * */ public void setExtension(PTZNodeExtension value) { this.extension = value; } /** * Ruft den Wert der fixedHomePosition-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isFixedHomePosition() { return fixedHomePosition; } /** * Legt den Wert der fixedHomePosition-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setFixedHomePosition(Boolean value) { this.fixedHomePosition = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZNodeExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZNodeExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZNodeExtension", propOrder = { "any", "supportedPresetTour", "extension" }) public class PTZNodeExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "SupportedPresetTour") protected PTZPresetTourSupported supportedPresetTour; @XmlElement(name = "Extension") protected PTZNodeExtension2 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der supportedPresetTour-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourSupported } * */ public PTZPresetTourSupported getSupportedPresetTour() { return supportedPresetTour; } /** * Legt den Wert der supportedPresetTour-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourSupported } * */ public void setSupportedPresetTour(PTZPresetTourSupported value) { this.supportedPresetTour = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTZNodeExtension2 } * */ public PTZNodeExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTZNodeExtension2 } * */ public void setExtension(PTZNodeExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZNodeExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZNodeExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZNodeExtension2", propOrder = { "any" }) public class PTZNodeExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPositionFilter.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZPositionFilter complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPositionFilter", propOrder = { "minPosition", "maxPosition", "enterOrExit", "any" }) public class PTZPositionFilter { @XmlElement(name = "MinPosition", required = true) protected PTZVector minPosition; @XmlElement(name = "MaxPosition", required = true) protected PTZVector maxPosition; @XmlElement(name = "EnterOrExit") protected boolean enterOrExit; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der minPosition-Eigenschaft ab. * * @return possible object is {@link PTZVector } * */ public PTZVector getMinPosition() { return minPosition; } /** * Legt den Wert der minPosition-Eigenschaft fest. * * @param value * allowed object is {@link PTZVector } * */ public void setMinPosition(PTZVector value) { this.minPosition = value; } /** * Ruft den Wert der maxPosition-Eigenschaft ab. * * @return possible object is {@link PTZVector } * */ public PTZVector getMaxPosition() { return maxPosition; } /** * Legt den Wert der maxPosition-Eigenschaft fest. * * @param value * allowed object is {@link PTZVector } * */ public void setMaxPosition(PTZVector value) { this.maxPosition = value; } /** * Ruft den Wert der enterOrExit-Eigenschaft ab. * */ public boolean isEnterOrExit() { return enterOrExit; } /** * Legt den Wert der enterOrExit-Eigenschaft fest. * */ public void setEnterOrExit(boolean value) { this.enterOrExit = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPreset.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PTZPreset complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPreset", propOrder = { "name", "ptzPosition" }) public class PTZPreset { @XmlElement(name = "Name") protected String name; @XmlElement(name = "PTZPosition") protected PTZVector ptzPosition; @XmlAttribute(name = "token") protected String token; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der ptzPosition-Eigenschaft ab. * * @return possible object is {@link PTZVector } * */ public PTZVector getPTZPosition() { return ptzPosition; } /** * Legt den Wert der ptzPosition-Eigenschaft fest. * * @param value * allowed object is {@link PTZVector } * */ public void setPTZPosition(PTZVector value) { this.ptzPosition = value; } /** * Ruft den Wert der token-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setToken(String value) { this.token = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourDirection.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r PTZPresetTourDirection. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "PTZPresetTourDirection") @XmlEnum public enum PTZPresetTourDirection { @XmlEnumValue("Forward") FORWARD("Forward"), @XmlEnumValue("Backward") BACKWARD("Backward"), @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; PTZPresetTourDirection(String v) { value = v; } public String value() { return value; } public static PTZPresetTourDirection fromValue(String v) { for (PTZPresetTourDirection c : PTZPresetTourDirection.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZPresetTourExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourExtension", propOrder = { "any" }) public class PTZPresetTourExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourOperation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r PTZPresetTourOperation. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "PTZPresetTourOperation") @XmlEnum public enum PTZPresetTourOperation { @XmlEnumValue("Start") START("Start"), @XmlEnumValue("Stop") STOP("Stop"), @XmlEnumValue("Pause") PAUSE("Pause"), @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; PTZPresetTourOperation(String v) { value = v; } public String value() { return value; } public static PTZPresetTourOperation fromValue(String v) { for (PTZPresetTourOperation c : PTZPresetTourOperation.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZPresetTourOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourOptions", propOrder = { "autoStart", "startingCondition", "tourSpot", "any" }) public class PTZPresetTourOptions { @XmlElement(name = "AutoStart") protected boolean autoStart; @XmlElement(name = "StartingCondition", required = true) protected PTZPresetTourStartingConditionOptions startingCondition; @XmlElement(name = "TourSpot", required = true) protected PTZPresetTourSpotOptions tourSpot; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der autoStart-Eigenschaft ab. * */ public boolean isAutoStart() { return autoStart; } /** * Legt den Wert der autoStart-Eigenschaft fest. * */ public void setAutoStart(boolean value) { this.autoStart = value; } /** * Ruft den Wert der startingCondition-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourStartingConditionOptions } * */ public PTZPresetTourStartingConditionOptions getStartingCondition() { return startingCondition; } /** * Legt den Wert der startingCondition-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourStartingConditionOptions } * */ public void setStartingCondition(PTZPresetTourStartingConditionOptions value) { this.startingCondition = value; } /** * Ruft den Wert der tourSpot-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourSpotOptions } * */ public PTZPresetTourSpotOptions getTourSpot() { return tourSpot; } /** * Legt den Wert der tourSpot-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourSpotOptions } * */ public void setTourSpot(PTZPresetTourSpotOptions value) { this.tourSpot = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourPresetDetail.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZPresetTourPresetDetail complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *           
 *           
 *           
 *           
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourPresetDetail", propOrder = { "presetToken", "home", "ptzPosition", "typeExtension", "any" }) public class PTZPresetTourPresetDetail { @XmlElement(name = "PresetToken") protected String presetToken; @XmlElement(name = "Home") protected Boolean home; @XmlElement(name = "PTZPosition") protected PTZVector ptzPosition; @XmlElement(name = "TypeExtension") protected PTZPresetTourTypeExtension typeExtension; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der presetToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPresetToken() { return presetToken; } /** * Legt den Wert der presetToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPresetToken(String value) { this.presetToken = value; } /** * Ruft den Wert der home-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isHome() { return home; } /** * Legt den Wert der home-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setHome(Boolean value) { this.home = value; } /** * Ruft den Wert der ptzPosition-Eigenschaft ab. * * @return possible object is {@link PTZVector } * */ public PTZVector getPTZPosition() { return ptzPosition; } /** * Legt den Wert der ptzPosition-Eigenschaft fest. * * @param value * allowed object is {@link PTZVector } * */ public void setPTZPosition(PTZVector value) { this.ptzPosition = value; } /** * Ruft den Wert der typeExtension-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourTypeExtension } * */ public PTZPresetTourTypeExtension getTypeExtension() { return typeExtension; } /** * Legt den Wert der typeExtension-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourTypeExtension } * */ public void setTypeExtension(PTZPresetTourTypeExtension value) { this.typeExtension = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourPresetDetailOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PTZPresetTourPresetDetailOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourPresetDetailOptions", propOrder = { "presetToken", "home", "panTiltPositionSpace", "zoomPositionSpace", "extension" }) public class PTZPresetTourPresetDetailOptions { @XmlElement(name = "PresetToken") protected List presetToken; @XmlElement(name = "Home") protected Boolean home; @XmlElement(name = "PanTiltPositionSpace") protected Space2DDescription panTiltPositionSpace; @XmlElement(name = "ZoomPositionSpace") protected Space1DDescription zoomPositionSpace; @XmlElement(name = "Extension") protected PTZPresetTourPresetDetailOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the presetToken property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the presetToken property. * *

* For example, to add a new item, do as follows: * *

	 * getPresetToken().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getPresetToken() { if (presetToken == null) { presetToken = new ArrayList(); } return this.presetToken; } /** * Ruft den Wert der home-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isHome() { return home; } /** * Legt den Wert der home-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setHome(Boolean value) { this.home = value; } /** * Ruft den Wert der panTiltPositionSpace-Eigenschaft ab. * * @return possible object is {@link Space2DDescription } * */ public Space2DDescription getPanTiltPositionSpace() { return panTiltPositionSpace; } /** * Legt den Wert der panTiltPositionSpace-Eigenschaft fest. * * @param value * allowed object is {@link Space2DDescription } * */ public void setPanTiltPositionSpace(Space2DDescription value) { this.panTiltPositionSpace = value; } /** * Ruft den Wert der zoomPositionSpace-Eigenschaft ab. * * @return possible object is {@link Space1DDescription } * */ public Space1DDescription getZoomPositionSpace() { return zoomPositionSpace; } /** * Legt den Wert der zoomPositionSpace-Eigenschaft fest. * * @param value * allowed object is {@link Space1DDescription } * */ public void setZoomPositionSpace(Space1DDescription value) { this.zoomPositionSpace = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourPresetDetailOptionsExtension } * */ public PTZPresetTourPresetDetailOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourPresetDetailOptionsExtension } * */ public void setExtension(PTZPresetTourPresetDetailOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourPresetDetailOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZPresetTourPresetDetailOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourPresetDetailOptionsExtension", propOrder = { "any" }) public class PTZPresetTourPresetDetailOptionsExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourSpot.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PTZPresetTourSpot complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourSpot", propOrder = { "presetDetail", "speed", "stayTime", "extension" }) public class PTZPresetTourSpot { @XmlElement(name = "PresetDetail", required = true) protected PTZPresetTourPresetDetail presetDetail; @XmlElement(name = "Speed") protected PTZSpeed speed; @XmlElement(name = "StayTime") protected Duration stayTime; @XmlElement(name = "Extension") protected PTZPresetTourSpotExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der presetDetail-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourPresetDetail } * */ public PTZPresetTourPresetDetail getPresetDetail() { return presetDetail; } /** * Legt den Wert der presetDetail-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourPresetDetail } * */ public void setPresetDetail(PTZPresetTourPresetDetail value) { this.presetDetail = value; } /** * Ruft den Wert der speed-Eigenschaft ab. * * @return possible object is {@link PTZSpeed } * */ public PTZSpeed getSpeed() { return speed; } /** * Legt den Wert der speed-Eigenschaft fest. * * @param value * allowed object is {@link PTZSpeed } * */ public void setSpeed(PTZSpeed value) { this.speed = value; } /** * Ruft den Wert der stayTime-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getStayTime() { return stayTime; } /** * Legt den Wert der stayTime-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setStayTime(Duration value) { this.stayTime = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourSpotExtension } * */ public PTZPresetTourSpotExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourSpotExtension } * */ public void setExtension(PTZPresetTourSpotExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourSpotExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZPresetTourSpotExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourSpotExtension", propOrder = { "any" }) public class PTZPresetTourSpotExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourSpotOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZPresetTourSpotOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourSpotOptions", propOrder = { "presetDetail", "stayTime", "any" }) public class PTZPresetTourSpotOptions { @XmlElement(name = "PresetDetail", required = true) protected PTZPresetTourPresetDetailOptions presetDetail; @XmlElement(name = "StayTime", required = true) protected DurationRange stayTime; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der presetDetail-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourPresetDetailOptions } * */ public PTZPresetTourPresetDetailOptions getPresetDetail() { return presetDetail; } /** * Legt den Wert der presetDetail-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourPresetDetailOptions } * */ public void setPresetDetail(PTZPresetTourPresetDetailOptions value) { this.presetDetail = value; } /** * Ruft den Wert der stayTime-Eigenschaft ab. * * @return possible object is {@link DurationRange } * */ public DurationRange getStayTime() { return stayTime; } /** * Legt den Wert der stayTime-Eigenschaft fest. * * @param value * allowed object is {@link DurationRange } * */ public void setStayTime(DurationRange value) { this.stayTime = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourStartingCondition.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PTZPresetTourStartingCondition complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourStartingCondition", propOrder = { "recurringTime", "recurringDuration", "direction", "extension" }) public class PTZPresetTourStartingCondition { @XmlElement(name = "RecurringTime") protected Integer recurringTime; @XmlElement(name = "RecurringDuration") protected Duration recurringDuration; @XmlElement(name = "Direction") protected PTZPresetTourDirection direction; @XmlElement(name = "Extension") protected PTZPresetTourStartingConditionExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der recurringTime-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getRecurringTime() { return recurringTime; } /** * Legt den Wert der recurringTime-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setRecurringTime(Integer value) { this.recurringTime = value; } /** * Ruft den Wert der recurringDuration-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getRecurringDuration() { return recurringDuration; } /** * Legt den Wert der recurringDuration-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setRecurringDuration(Duration value) { this.recurringDuration = value; } /** * Ruft den Wert der direction-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourDirection } * */ public PTZPresetTourDirection getDirection() { return direction; } /** * Legt den Wert der direction-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourDirection } * */ public void setDirection(PTZPresetTourDirection value) { this.direction = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourStartingConditionExtension } * */ public PTZPresetTourStartingConditionExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourStartingConditionExtension } * */ public void setExtension(PTZPresetTourStartingConditionExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourStartingConditionExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZPresetTourStartingConditionExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourStartingConditionExtension", propOrder = { "any" }) public class PTZPresetTourStartingConditionExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourStartingConditionOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PTZPresetTourStartingConditionOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourStartingConditionOptions", propOrder = { "recurringTime", "recurringDuration", "direction", "extension" }) public class PTZPresetTourStartingConditionOptions { @XmlElement(name = "RecurringTime") protected IntRange recurringTime; @XmlElement(name = "RecurringDuration") protected DurationRange recurringDuration; @XmlElement(name = "Direction") protected List direction; @XmlElement(name = "Extension") protected PTZPresetTourStartingConditionOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der recurringTime-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getRecurringTime() { return recurringTime; } /** * Legt den Wert der recurringTime-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setRecurringTime(IntRange value) { this.recurringTime = value; } /** * Ruft den Wert der recurringDuration-Eigenschaft ab. * * @return possible object is {@link DurationRange } * */ public DurationRange getRecurringDuration() { return recurringDuration; } /** * Legt den Wert der recurringDuration-Eigenschaft fest. * * @param value * allowed object is {@link DurationRange } * */ public void setRecurringDuration(DurationRange value) { this.recurringDuration = value; } /** * Gets the value of the direction property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the direction property. * *

* For example, to add a new item, do as follows: * *

	 * getDirection().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PTZPresetTourDirection } * * */ public List getDirection() { if (direction == null) { direction = new ArrayList(); } return this.direction; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourStartingConditionOptionsExtension } * */ public PTZPresetTourStartingConditionOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourStartingConditionOptionsExtension } * */ public void setExtension(PTZPresetTourStartingConditionOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourStartingConditionOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZPresetTourStartingConditionOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourStartingConditionOptionsExtension", propOrder = { "any" }) public class PTZPresetTourStartingConditionOptionsExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourState.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r PTZPresetTourState. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "PTZPresetTourState") @XmlEnum public enum PTZPresetTourState { @XmlEnumValue("Idle") IDLE("Idle"), @XmlEnumValue("Touring") TOURING("Touring"), @XmlEnumValue("Paused") PAUSED("Paused"), @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; PTZPresetTourState(String v) { value = v; } public String value() { return value; } public static PTZPresetTourState fromValue(String v) { for (PTZPresetTourState c : PTZPresetTourState.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourStatus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PTZPresetTourStatus complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourStatus", propOrder = { "state", "currentTourSpot", "extension" }) public class PTZPresetTourStatus { @XmlElement(name = "State", required = true) protected PTZPresetTourState state; @XmlElement(name = "CurrentTourSpot") protected PTZPresetTourSpot currentTourSpot; @XmlElement(name = "Extension") protected PTZPresetTourStatusExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der state-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourState } * */ public PTZPresetTourState getState() { return state; } /** * Legt den Wert der state-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourState } * */ public void setState(PTZPresetTourState value) { this.state = value; } /** * Ruft den Wert der currentTourSpot-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourSpot } * */ public PTZPresetTourSpot getCurrentTourSpot() { return currentTourSpot; } /** * Legt den Wert der currentTourSpot-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourSpot } * */ public void setCurrentTourSpot(PTZPresetTourSpot value) { this.currentTourSpot = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourStatusExtension } * */ public PTZPresetTourStatusExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourStatusExtension } * */ public void setExtension(PTZPresetTourStatusExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourStatusExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZPresetTourStatusExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourStatusExtension", propOrder = { "any" }) public class PTZPresetTourStatusExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourSupported.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PTZPresetTourSupported complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourSupported", propOrder = { "maximumNumberOfPresetTours", "ptzPresetTourOperation", "extension" }) public class PTZPresetTourSupported { @XmlElement(name = "MaximumNumberOfPresetTours") protected int maximumNumberOfPresetTours; @XmlElement(name = "PTZPresetTourOperation") protected List ptzPresetTourOperation; @XmlElement(name = "Extension") protected PTZPresetTourSupportedExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der maximumNumberOfPresetTours-Eigenschaft ab. * */ public int getMaximumNumberOfPresetTours() { return maximumNumberOfPresetTours; } /** * Legt den Wert der maximumNumberOfPresetTours-Eigenschaft fest. * */ public void setMaximumNumberOfPresetTours(int value) { this.maximumNumberOfPresetTours = value; } /** * Gets the value of the ptzPresetTourOperation property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the ptzPresetTourOperation property. * *

* For example, to add a new item, do as follows: * *

	 * getPTZPresetTourOperation().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PTZPresetTourOperation } * * */ public List getPTZPresetTourOperation() { if (ptzPresetTourOperation == null) { ptzPresetTourOperation = new ArrayList(); } return this.ptzPresetTourOperation; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourSupportedExtension } * */ public PTZPresetTourSupportedExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourSupportedExtension } * */ public void setExtension(PTZPresetTourSupportedExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourSupportedExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZPresetTourSupportedExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourSupportedExtension", propOrder = { "any" }) public class PTZPresetTourSupportedExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZPresetTourTypeExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZPresetTourTypeExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZPresetTourTypeExtension", propOrder = { "any" }) public class PTZPresetTourTypeExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZSpaces.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PTZSpaces complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZSpaces", propOrder = { "absolutePanTiltPositionSpace", "absoluteZoomPositionSpace", "relativePanTiltTranslationSpace", "relativeZoomTranslationSpace", "continuousPanTiltVelocitySpace", "continuousZoomVelocitySpace", "panTiltSpeedSpace", "zoomSpeedSpace", "extension" }) public class PTZSpaces { @XmlElement(name = "AbsolutePanTiltPositionSpace") protected List absolutePanTiltPositionSpace; @XmlElement(name = "AbsoluteZoomPositionSpace") protected List absoluteZoomPositionSpace; @XmlElement(name = "RelativePanTiltTranslationSpace") protected List relativePanTiltTranslationSpace; @XmlElement(name = "RelativeZoomTranslationSpace") protected List relativeZoomTranslationSpace; @XmlElement(name = "ContinuousPanTiltVelocitySpace") protected List continuousPanTiltVelocitySpace; @XmlElement(name = "ContinuousZoomVelocitySpace") protected List continuousZoomVelocitySpace; @XmlElement(name = "PanTiltSpeedSpace") protected List panTiltSpeedSpace; @XmlElement(name = "ZoomSpeedSpace") protected List zoomSpeedSpace; @XmlElement(name = "Extension") protected PTZSpacesExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the absolutePanTiltPositionSpace property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the absolutePanTiltPositionSpace property. * *

* For example, to add a new item, do as follows: * *

	 * getAbsolutePanTiltPositionSpace().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Space2DDescription } * * */ public List getAbsolutePanTiltPositionSpace() { if (absolutePanTiltPositionSpace == null) { absolutePanTiltPositionSpace = new ArrayList(); } return this.absolutePanTiltPositionSpace; } /** * Gets the value of the absoluteZoomPositionSpace property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the absoluteZoomPositionSpace property. * *

* For example, to add a new item, do as follows: * *

	 * getAbsoluteZoomPositionSpace().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Space1DDescription } * * */ public List getAbsoluteZoomPositionSpace() { if (absoluteZoomPositionSpace == null) { absoluteZoomPositionSpace = new ArrayList(); } return this.absoluteZoomPositionSpace; } /** * Gets the value of the relativePanTiltTranslationSpace property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the relativePanTiltTranslationSpace property. * *

* For example, to add a new item, do as follows: * *

	 * getRelativePanTiltTranslationSpace().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Space2DDescription } * * */ public List getRelativePanTiltTranslationSpace() { if (relativePanTiltTranslationSpace == null) { relativePanTiltTranslationSpace = new ArrayList(); } return this.relativePanTiltTranslationSpace; } /** * Gets the value of the relativeZoomTranslationSpace property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the relativeZoomTranslationSpace property. * *

* For example, to add a new item, do as follows: * *

	 * getRelativeZoomTranslationSpace().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Space1DDescription } * * */ public List getRelativeZoomTranslationSpace() { if (relativeZoomTranslationSpace == null) { relativeZoomTranslationSpace = new ArrayList(); } return this.relativeZoomTranslationSpace; } /** * Gets the value of the continuousPanTiltVelocitySpace property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the continuousPanTiltVelocitySpace property. * *

* For example, to add a new item, do as follows: * *

	 * getContinuousPanTiltVelocitySpace().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Space2DDescription } * * */ public List getContinuousPanTiltVelocitySpace() { if (continuousPanTiltVelocitySpace == null) { continuousPanTiltVelocitySpace = new ArrayList(); } return this.continuousPanTiltVelocitySpace; } /** * Gets the value of the continuousZoomVelocitySpace property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the continuousZoomVelocitySpace property. * *

* For example, to add a new item, do as follows: * *

	 * getContinuousZoomVelocitySpace().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Space1DDescription } * * */ public List getContinuousZoomVelocitySpace() { if (continuousZoomVelocitySpace == null) { continuousZoomVelocitySpace = new ArrayList(); } return this.continuousZoomVelocitySpace; } /** * Gets the value of the panTiltSpeedSpace property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the panTiltSpeedSpace property. * *

* For example, to add a new item, do as follows: * *

	 * getPanTiltSpeedSpace().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Space1DDescription } * * */ public List getPanTiltSpeedSpace() { if (panTiltSpeedSpace == null) { panTiltSpeedSpace = new ArrayList(); } return this.panTiltSpeedSpace; } /** * Gets the value of the zoomSpeedSpace property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the zoomSpeedSpace property. * *

* For example, to add a new item, do as follows: * *

	 * getZoomSpeedSpace().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Space1DDescription } * * */ public List getZoomSpeedSpace() { if (zoomSpeedSpace == null) { zoomSpeedSpace = new ArrayList(); } return this.zoomSpeedSpace; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTZSpacesExtension } * */ public PTZSpacesExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTZSpacesExtension } * */ public void setExtension(PTZSpacesExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZSpacesExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZSpacesExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZSpacesExtension", propOrder = { "any" }) public class PTZSpacesExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZSpeed.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r PTZSpeed complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZSpeed", propOrder = { "panTilt", "zoom" }) public class PTZSpeed { @XmlElement(name = "PanTilt") protected Vector2D panTilt; @XmlElement(name = "Zoom") protected Vector1D zoom; /** * Ruft den Wert der panTilt-Eigenschaft ab. * * @return possible object is {@link Vector2D } * */ public Vector2D getPanTilt() { return panTilt; } /** * Legt den Wert der panTilt-Eigenschaft fest. * * @param value * allowed object is {@link Vector2D } * */ public void setPanTilt(Vector2D value) { this.panTilt = value; } /** * Ruft den Wert der zoom-Eigenschaft ab. * * @return possible object is {@link Vector1D } * */ public Vector1D getZoom() { return zoom; } /** * Legt den Wert der zoom-Eigenschaft fest. * * @param value * allowed object is {@link Vector1D } * */ public void setZoom(Vector1D value) { this.zoom = value; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZStatus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZStatus complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZStatus", propOrder = { "position", "moveStatus", "error", "utcTime", "any" }) public class PTZStatus { @XmlElement(name = "Position") protected PTZVector position; @XmlElement(name = "MoveStatus") protected PTZMoveStatus moveStatus; @XmlElement(name = "Error") protected String error; @XmlElement(name = "UtcTime", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar utcTime; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der position-Eigenschaft ab. * * @return possible object is {@link PTZVector } * */ public PTZVector getPosition() { return position; } /** * Legt den Wert der position-Eigenschaft fest. * * @param value * allowed object is {@link PTZVector } * */ public void setPosition(PTZVector value) { this.position = value; } /** * Ruft den Wert der moveStatus-Eigenschaft ab. * * @return possible object is {@link PTZMoveStatus } * */ public PTZMoveStatus getMoveStatus() { return moveStatus; } /** * Legt den Wert der moveStatus-Eigenschaft fest. * * @param value * allowed object is {@link PTZMoveStatus } * */ public void setMoveStatus(PTZMoveStatus value) { this.moveStatus = value; } /** * Ruft den Wert der error-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getError() { return error; } /** * Legt den Wert der error-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setError(String value) { this.error = value; } /** * Ruft den Wert der utcTime-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getUtcTime() { return utcTime; } /** * Legt den Wert der utcTime-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setUtcTime(XMLGregorianCalendar value) { this.utcTime = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZStatusFilterOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZStatusFilterOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZStatusFilterOptions", propOrder = { "panTiltStatusSupported", "zoomStatusSupported", "any", "panTiltPositionSupported", "zoomPositionSupported", "extension" }) public class PTZStatusFilterOptions { @XmlElement(name = "PanTiltStatusSupported") protected boolean panTiltStatusSupported; @XmlElement(name = "ZoomStatusSupported") protected boolean zoomStatusSupported; @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "PanTiltPositionSupported") protected Boolean panTiltPositionSupported; @XmlElement(name = "ZoomPositionSupported") protected Boolean zoomPositionSupported; @XmlElement(name = "Extension") protected PTZStatusFilterOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der panTiltStatusSupported-Eigenschaft ab. * */ public boolean isPanTiltStatusSupported() { return panTiltStatusSupported; } /** * Legt den Wert der panTiltStatusSupported-Eigenschaft fest. * */ public void setPanTiltStatusSupported(boolean value) { this.panTiltStatusSupported = value; } /** * Ruft den Wert der zoomStatusSupported-Eigenschaft ab. * */ public boolean isZoomStatusSupported() { return zoomStatusSupported; } /** * Legt den Wert der zoomStatusSupported-Eigenschaft fest. * */ public void setZoomStatusSupported(boolean value) { this.zoomStatusSupported = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der panTiltPositionSupported-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isPanTiltPositionSupported() { return panTiltPositionSupported; } /** * Legt den Wert der panTiltPositionSupported-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setPanTiltPositionSupported(Boolean value) { this.panTiltPositionSupported = value; } /** * Ruft den Wert der zoomPositionSupported-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isZoomPositionSupported() { return zoomPositionSupported; } /** * Legt den Wert der zoomPositionSupported-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setZoomPositionSupported(Boolean value) { this.zoomPositionSupported = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTZStatusFilterOptionsExtension } * */ public PTZStatusFilterOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTZStatusFilterOptionsExtension } * */ public void setExtension(PTZStatusFilterOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZStatusFilterOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZStatusFilterOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZStatusFilterOptionsExtension", propOrder = { "any" }) public class PTZStatusFilterOptionsExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZStream.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElements; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r PTZStream complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZStream", propOrder = { "ptzStatusOrExtension" }) public class PTZStream { @XmlElements({ @XmlElement(name = "PTZStatus", type = PTZStatus.class), @XmlElement(name = "Extension", type = PTZStreamExtension.class) }) protected List ptzStatusOrExtension; /** * Gets the value of the ptzStatusOrExtension property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the ptzStatusOrExtension property. * *

* For example, to add a new item, do as follows: * *

	 * getPTZStatusOrExtension().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PTZStatus } {@link PTZStreamExtension } * * */ public List getPTZStatusOrExtension() { if (ptzStatusOrExtension == null) { ptzStatusOrExtension = new ArrayList(); } return this.ptzStatusOrExtension; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZStreamExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PTZStreamExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZStreamExtension", propOrder = { "any" }) public class PTZStreamExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PTZVector.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r PTZVector complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PTZVector", propOrder = { "panTilt", "zoom" }) public class PTZVector { @XmlElement(name = "PanTilt") protected Vector2D panTilt; @XmlElement(name = "Zoom") protected Vector1D zoom; /** * Ruft den Wert der panTilt-Eigenschaft ab. * * @return possible object is {@link Vector2D } * */ public Vector2D getPanTilt() { return panTilt; } /** * Legt den Wert der panTilt-Eigenschaft fest. * * @param value * allowed object is {@link Vector2D } * */ public void setPanTilt(Vector2D value) { this.panTilt = value; } /** * Ruft den Wert der zoom-Eigenschaft ab. * * @return possible object is {@link Vector1D } * */ public Vector1D getZoom() { return zoom; } /** * Legt den Wert der zoom-Eigenschaft fest. * * @param value * allowed object is {@link Vector1D } * */ public void setZoom(Vector1D value) { this.zoom = value; } } ================================================ FILE: src/org/onvif/ver10/schema/PanTiltLimits.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r PanTiltLimits complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PanTiltLimits", propOrder = { "range" }) public class PanTiltLimits { @XmlElement(name = "Range", required = true) protected Space2DDescription range; /** * Ruft den Wert der range-Eigenschaft ab. * * @return possible object is {@link Space2DDescription } * */ public Space2DDescription getRange() { return range; } /** * Legt den Wert der range-Eigenschaft fest. * * @param value * allowed object is {@link Space2DDescription } * */ public void setRange(Space2DDescription value) { this.range = value; } } ================================================ FILE: src/org/onvif/ver10/schema/PaneConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** * Configuration of the streaming and coding settings of a Video window. * *

* Java-Klasse f�r PaneConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PaneConfiguration", propOrder = { "paneName", "audioOutputToken", "audioSourceToken", "audioEncoderConfiguration", "receiverToken", "token", "any" }) public class PaneConfiguration { @XmlElement(name = "PaneName") protected String paneName; @XmlElement(name = "AudioOutputToken") protected String audioOutputToken; @XmlElement(name = "AudioSourceToken") protected String audioSourceToken; @XmlElement(name = "AudioEncoderConfiguration") protected AudioEncoderConfiguration audioEncoderConfiguration; @XmlElement(name = "ReceiverToken") protected String receiverToken; @XmlElement(name = "Token", required = true) protected String token; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der paneName-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPaneName() { return paneName; } /** * Legt den Wert der paneName-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPaneName(String value) { this.paneName = value; } /** * Ruft den Wert der audioOutputToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getAudioOutputToken() { return audioOutputToken; } /** * Legt den Wert der audioOutputToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setAudioOutputToken(String value) { this.audioOutputToken = value; } /** * Ruft den Wert der audioSourceToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getAudioSourceToken() { return audioSourceToken; } /** * Legt den Wert der audioSourceToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setAudioSourceToken(String value) { this.audioSourceToken = value; } /** * Ruft den Wert der audioEncoderConfiguration-Eigenschaft ab. * * @return possible object is {@link AudioEncoderConfiguration } * */ public AudioEncoderConfiguration getAudioEncoderConfiguration() { return audioEncoderConfiguration; } /** * Legt den Wert der audioEncoderConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link AudioEncoderConfiguration } * */ public void setAudioEncoderConfiguration(AudioEncoderConfiguration value) { this.audioEncoderConfiguration = value; } /** * Ruft den Wert der receiverToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getReceiverToken() { return receiverToken; } /** * Legt den Wert der receiverToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setReceiverToken(String value) { this.receiverToken = value; } /** * Ruft den Wert der token-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setToken(String value) { this.token = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PaneLayout.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** * A pane layout describes one Video window of a display. It links a pane configuration to a region of the screen. * *

* Java-Klasse f�r PaneLayout complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PaneLayout", propOrder = { "pane", "area", "any" }) public class PaneLayout { @XmlElement(name = "Pane", required = true) protected String pane; @XmlElement(name = "Area", required = true) protected Rectangle area; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der pane-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPane() { return pane; } /** * Legt den Wert der pane-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPane(String value) { this.pane = value; } /** * Ruft den Wert der area-Eigenschaft ab. * * @return possible object is {@link Rectangle } * */ public Rectangle getArea() { return area; } /** * Legt den Wert der area-Eigenschaft fest. * * @param value * allowed object is {@link Rectangle } * */ public void setArea(Rectangle value) { this.area = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PaneLayoutOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * Description of a pane layout describing a complete display layout. * *

* Java-Klasse f�r PaneLayoutOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PaneLayoutOptions", propOrder = { "area", "extension" }) public class PaneLayoutOptions { @XmlElement(name = "Area", required = true) protected List area; @XmlElement(name = "Extension") protected PaneOptionExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the area property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the area property. * *

* For example, to add a new item, do as follows: * *

	 * getArea().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Rectangle } * * */ public List getArea() { if (area == null) { area = new ArrayList(); } return this.area; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PaneOptionExtension } * */ public PaneOptionExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PaneOptionExtension } * */ public void setExtension(PaneOptionExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PaneOptionExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PaneOptionExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PaneOptionExtension", propOrder = { "any" }) public class PaneOptionExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/Polygon.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Polygon complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Polygon", propOrder = { "point" }) public class Polygon { @XmlElement(name = "Point", required = true) protected List point; /** * Gets the value of the point property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the point property. * *

* For example, to add a new item, do as follows: * *

	 * getPoint().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Vector } * * */ public List getPoint() { if (point == null) { point = new ArrayList(); } return this.point; } } ================================================ FILE: src/org/onvif/ver10/schema/PolygonConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PolygonConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PolygonConfiguration", propOrder = { "polygon", "any" }) public class PolygonConfiguration { @XmlElement(name = "Polygon", required = true) protected Polygon polygon; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der polygon-Eigenschaft ab. * * @return possible object is {@link Polygon } * */ public Polygon getPolygon() { return polygon; } /** * Legt den Wert der polygon-Eigenschaft fest. * * @param value * allowed object is {@link Polygon } * */ public void setPolygon(Polygon value) { this.polygon = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Polyline.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Polyline complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Polyline", propOrder = { "point" }) public class Polyline { @XmlElement(name = "Point", required = true) protected List point; /** * Gets the value of the point property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the point property. * *

* For example, to add a new item, do as follows: * *

	 * getPoint().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Vector } * * */ public List getPoint() { if (point == null) { point = new ArrayList(); } return this.point; } } ================================================ FILE: src/org/onvif/ver10/schema/PolylineArray.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PolylineArray complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PolylineArray", propOrder = { "segment", "extension" }) public class PolylineArray { @XmlElement(name = "Segment", required = true) protected List segment; @XmlElement(name = "Extension") protected PolylineArrayExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the segment property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the segment property. * *

* For example, to add a new item, do as follows: * *

	 * getSegment().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Polyline } * * */ public List getSegment() { if (segment == null) { segment = new ArrayList(); } return this.segment; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PolylineArrayExtension } * */ public PolylineArrayExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PolylineArrayExtension } * */ public void setExtension(PolylineArrayExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PolylineArrayConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PolylineArrayConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PolylineArrayConfiguration", propOrder = { "polylineArray", "any" }) public class PolylineArrayConfiguration { @XmlElement(name = "PolylineArray", required = true) protected PolylineArray polylineArray; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der polylineArray-Eigenschaft ab. * * @return possible object is {@link PolylineArray } * */ public PolylineArray getPolylineArray() { return polylineArray; } /** * Legt den Wert der polylineArray-Eigenschaft fest. * * @param value * allowed object is {@link PolylineArray } * */ public void setPolylineArray(PolylineArray value) { this.polylineArray = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/PolylineArrayExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r PolylineArrayExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PolylineArrayExtension", propOrder = { "any" }) public class PolylineArrayExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PrefixedIPv4Address.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

* Java-Klasse f�r PrefixedIPv4Address complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PrefixedIPv4Address", propOrder = { "address", "prefixLength" }) public class PrefixedIPv4Address { @XmlElement(name = "Address", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String address; @XmlElement(name = "PrefixLength") protected int prefixLength; /** * Ruft den Wert der address-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getAddress() { return address; } /** * Legt den Wert der address-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setAddress(String value) { this.address = value; } /** * Ruft den Wert der prefixLength-Eigenschaft ab. * */ public int getPrefixLength() { return prefixLength; } /** * Legt den Wert der prefixLength-Eigenschaft fest. * */ public void setPrefixLength(int value) { this.prefixLength = value; } } ================================================ FILE: src/org/onvif/ver10/schema/PrefixedIPv6Address.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

* Java-Klasse f�r PrefixedIPv6Address complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PrefixedIPv6Address", propOrder = { "address", "prefixLength" }) public class PrefixedIPv6Address { @XmlElement(name = "Address", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String address; @XmlElement(name = "PrefixLength") protected int prefixLength; /** * Ruft den Wert der address-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getAddress() { return address; } /** * Legt den Wert der address-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setAddress(String value) { this.address = value; } /** * Ruft den Wert der prefixLength-Eigenschaft ab. * */ public int getPrefixLength() { return prefixLength; } /** * Legt den Wert der prefixLength-Eigenschaft fest. * */ public void setPrefixLength(int value) { this.prefixLength = value; } } ================================================ FILE: src/org/onvif/ver10/schema/PresetTour.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r PresetTour complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PresetTour", propOrder = { "name", "status", "autoStart", "startingCondition", "tourSpot", "extension" }) public class PresetTour { @XmlElement(name = "Name") protected String name; @XmlElement(name = "Status", required = true) protected PTZPresetTourStatus status; @XmlElement(name = "AutoStart") protected boolean autoStart; @XmlElement(name = "StartingCondition", required = true) protected PTZPresetTourStartingCondition startingCondition; @XmlElement(name = "TourSpot") protected List tourSpot; @XmlElement(name = "Extension") protected PTZPresetTourExtension extension; @XmlAttribute(name = "token") protected String token; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der status-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourStatus } * */ public PTZPresetTourStatus getStatus() { return status; } /** * Legt den Wert der status-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourStatus } * */ public void setStatus(PTZPresetTourStatus value) { this.status = value; } /** * Ruft den Wert der autoStart-Eigenschaft ab. * */ public boolean isAutoStart() { return autoStart; } /** * Legt den Wert der autoStart-Eigenschaft fest. * */ public void setAutoStart(boolean value) { this.autoStart = value; } /** * Ruft den Wert der startingCondition-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourStartingCondition } * */ public PTZPresetTourStartingCondition getStartingCondition() { return startingCondition; } /** * Legt den Wert der startingCondition-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourStartingCondition } * */ public void setStartingCondition(PTZPresetTourStartingCondition value) { this.startingCondition = value; } /** * Gets the value of the tourSpot property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the tourSpot property. * *

* For example, to add a new item, do as follows: * *

	 * getTourSpot().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PTZPresetTourSpot } * * */ public List getTourSpot() { if (tourSpot == null) { tourSpot = new ArrayList(); } return this.tourSpot; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourExtension } * */ public PTZPresetTourExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourExtension } * */ public void setExtension(PTZPresetTourExtension value) { this.extension = value; } /** * Ruft den Wert der token-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setToken(String value) { this.token = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Profile.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * * A media profile consists of a set of media configurations. Media profiles are used by a client to configure properties of a media stream from an NVT. * *

 * 
 * 
 * An NVT shall provide at least one media profile at boot. An NVT should provide �ready to use� profiles for the most common media configurations that the device offers.
 * 
 * 
 * 
 * 
 * A profile consists of a set of interconnected configuration entities. Configurations are provided by the NVT and can be either static or created dynamically by the NVT. For
 * example, the dynamic configurations can be created by the NVT depending on current available encoding resources.
 * 
 * 

* Java-Klasse f�r Profile complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Profile", propOrder = { "name", "videoSourceConfiguration", "audioSourceConfiguration", "videoEncoderConfiguration", "audioEncoderConfiguration", "videoAnalyticsConfiguration", "ptzConfiguration", "metadataConfiguration", "extension" }) public class Profile { @XmlElement(name = "Name", required = true) protected String name; @XmlElement(name = "VideoSourceConfiguration") protected VideoSourceConfiguration videoSourceConfiguration; @XmlElement(name = "AudioSourceConfiguration") protected AudioSourceConfiguration audioSourceConfiguration; @XmlElement(name = "VideoEncoderConfiguration") protected VideoEncoderConfiguration videoEncoderConfiguration; @XmlElement(name = "AudioEncoderConfiguration") protected AudioEncoderConfiguration audioEncoderConfiguration; @XmlElement(name = "VideoAnalyticsConfiguration") protected VideoAnalyticsConfiguration videoAnalyticsConfiguration; @XmlElement(name = "PTZConfiguration") protected PTZConfiguration ptzConfiguration; @XmlElement(name = "MetadataConfiguration") protected MetadataConfiguration metadataConfiguration; @XmlElement(name = "Extension") protected ProfileExtension extension; @XmlAttribute(name = "token", required = true) protected String token; @XmlAttribute(name = "fixed") protected Boolean fixed; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der videoSourceConfiguration-Eigenschaft ab. * * @return possible object is {@link VideoSourceConfiguration } * */ public VideoSourceConfiguration getVideoSourceConfiguration() { return videoSourceConfiguration; } /** * Legt den Wert der videoSourceConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link VideoSourceConfiguration } * */ public void setVideoSourceConfiguration(VideoSourceConfiguration value) { this.videoSourceConfiguration = value; } /** * Ruft den Wert der audioSourceConfiguration-Eigenschaft ab. * * @return possible object is {@link AudioSourceConfiguration } * */ public AudioSourceConfiguration getAudioSourceConfiguration() { return audioSourceConfiguration; } /** * Legt den Wert der audioSourceConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link AudioSourceConfiguration } * */ public void setAudioSourceConfiguration(AudioSourceConfiguration value) { this.audioSourceConfiguration = value; } /** * Ruft den Wert der videoEncoderConfiguration-Eigenschaft ab. * * @return possible object is {@link VideoEncoderConfiguration } * */ public VideoEncoderConfiguration getVideoEncoderConfiguration() { return videoEncoderConfiguration; } /** * Legt den Wert der videoEncoderConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link VideoEncoderConfiguration } * */ public void setVideoEncoderConfiguration(VideoEncoderConfiguration value) { this.videoEncoderConfiguration = value; } /** * Ruft den Wert der audioEncoderConfiguration-Eigenschaft ab. * * @return possible object is {@link AudioEncoderConfiguration } * */ public AudioEncoderConfiguration getAudioEncoderConfiguration() { return audioEncoderConfiguration; } /** * Legt den Wert der audioEncoderConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link AudioEncoderConfiguration } * */ public void setAudioEncoderConfiguration(AudioEncoderConfiguration value) { this.audioEncoderConfiguration = value; } /** * Ruft den Wert der videoAnalyticsConfiguration-Eigenschaft ab. * * @return possible object is {@link VideoAnalyticsConfiguration } * */ public VideoAnalyticsConfiguration getVideoAnalyticsConfiguration() { return videoAnalyticsConfiguration; } /** * Legt den Wert der videoAnalyticsConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link VideoAnalyticsConfiguration } * */ public void setVideoAnalyticsConfiguration(VideoAnalyticsConfiguration value) { this.videoAnalyticsConfiguration = value; } /** * Ruft den Wert der ptzConfiguration-Eigenschaft ab. * * @return possible object is {@link PTZConfiguration } * */ public PTZConfiguration getPTZConfiguration() { return ptzConfiguration; } /** * Legt den Wert der ptzConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link PTZConfiguration } * */ public void setPTZConfiguration(PTZConfiguration value) { this.ptzConfiguration = value; } /** * Ruft den Wert der metadataConfiguration-Eigenschaft ab. * * @return possible object is {@link MetadataConfiguration } * */ public MetadataConfiguration getMetadataConfiguration() { return metadataConfiguration; } /** * Legt den Wert der metadataConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link MetadataConfiguration } * */ public void setMetadataConfiguration(MetadataConfiguration value) { this.metadataConfiguration = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ProfileExtension } * */ public ProfileExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ProfileExtension } * */ public void setExtension(ProfileExtension value) { this.extension = value; } /** * Ruft den Wert der token-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setToken(String value) { this.token = value; } /** * Ruft den Wert der fixed-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isFixed() { return fixed; } /** * Legt den Wert der fixed-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setFixed(Boolean value) { this.fixed = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ProfileCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ProfileCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProfileCapabilities", propOrder = { "maximumNumberOfProfiles", "any" }) public class ProfileCapabilities { @XmlElement(name = "MaximumNumberOfProfiles") protected int maximumNumberOfProfiles; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der maximumNumberOfProfiles-Eigenschaft ab. * */ public int getMaximumNumberOfProfiles() { return maximumNumberOfProfiles; } /** * Legt den Wert der maximumNumberOfProfiles-Eigenschaft fest. * */ public void setMaximumNumberOfProfiles(int value) { this.maximumNumberOfProfiles = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ProfileExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ProfileExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProfileExtension", propOrder = { "any", "audioOutputConfiguration", "audioDecoderConfiguration", "extension" }) public class ProfileExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "AudioOutputConfiguration") protected AudioOutputConfiguration audioOutputConfiguration; @XmlElement(name = "AudioDecoderConfiguration") protected AudioDecoderConfiguration audioDecoderConfiguration; @XmlElement(name = "Extension") protected ProfileExtension2 extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der audioOutputConfiguration-Eigenschaft ab. * * @return possible object is {@link AudioOutputConfiguration } * */ public AudioOutputConfiguration getAudioOutputConfiguration() { return audioOutputConfiguration; } /** * Legt den Wert der audioOutputConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link AudioOutputConfiguration } * */ public void setAudioOutputConfiguration(AudioOutputConfiguration value) { this.audioOutputConfiguration = value; } /** * Ruft den Wert der audioDecoderConfiguration-Eigenschaft ab. * * @return possible object is {@link AudioDecoderConfiguration } * */ public AudioDecoderConfiguration getAudioDecoderConfiguration() { return audioDecoderConfiguration; } /** * Legt den Wert der audioDecoderConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link AudioDecoderConfiguration } * */ public void setAudioDecoderConfiguration(AudioDecoderConfiguration value) { this.audioDecoderConfiguration = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ProfileExtension2 } * */ public ProfileExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ProfileExtension2 } * */ public void setExtension(ProfileExtension2 value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ProfileExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ProfileExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProfileExtension2", propOrder = { "any" }) public class ProfileExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/PropertyOperation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r PropertyOperation. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "PropertyOperation") @XmlEnum public enum PropertyOperation { @XmlEnumValue("Initialized") INITIALIZED("Initialized"), @XmlEnumValue("Deleted") DELETED("Deleted"), @XmlEnumValue("Changed") CHANGED("Changed"); private final String value; PropertyOperation(String v) { value = v; } public String value() { return value; } public static PropertyOperation fromValue(String v) { for (PropertyOperation c : PropertyOperation.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/RealTimeStreamingCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r RealTimeStreamingCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RealTimeStreamingCapabilities", propOrder = { "rtpMulticast", "rtptcp", "rtprtsptcp", "extension" }) public class RealTimeStreamingCapabilities { @XmlElement(name = "RTPMulticast") protected Boolean rtpMulticast; @XmlElement(name = "RTP_TCP") protected Boolean rtptcp; @XmlElement(name = "RTP_RTSP_TCP") protected Boolean rtprtsptcp; @XmlElement(name = "Extension") protected RealTimeStreamingCapabilitiesExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der rtpMulticast-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isRTPMulticast() { return rtpMulticast; } /** * Legt den Wert der rtpMulticast-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setRTPMulticast(Boolean value) { this.rtpMulticast = value; } /** * Ruft den Wert der rtptcp-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isRTPTCP() { return rtptcp; } /** * Legt den Wert der rtptcp-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setRTPTCP(Boolean value) { this.rtptcp = value; } /** * Ruft den Wert der rtprtsptcp-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isRTPRTSPTCP() { return rtprtsptcp; } /** * Legt den Wert der rtprtsptcp-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setRTPRTSPTCP(Boolean value) { this.rtprtsptcp = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link RealTimeStreamingCapabilitiesExtension } * */ public RealTimeStreamingCapabilitiesExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link RealTimeStreamingCapabilitiesExtension } * */ public void setExtension(RealTimeStreamingCapabilitiesExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RealTimeStreamingCapabilitiesExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RealTimeStreamingCapabilitiesExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RealTimeStreamingCapabilitiesExtension", propOrder = { "any" }) public class RealTimeStreamingCapabilitiesExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/Receiver.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** * * Description of a receiver, including its token and configuration. * * *

* Java-Klasse f�r Receiver complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Receiver", propOrder = { "token", "configuration", "any" }) public class Receiver { @XmlElement(name = "Token", required = true) protected String token; @XmlElement(name = "Configuration", required = true) protected ReceiverConfiguration configuration; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der token-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setToken(String value) { this.token = value; } /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return possible object is {@link ReceiverConfiguration } * */ public ReceiverConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is {@link ReceiverConfiguration } * */ public void setConfiguration(ReceiverConfiguration value) { this.configuration = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ReceiverCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ReceiverCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReceiverCapabilities", propOrder = { "xAddr", "rtpMulticast", "rtptcp", "rtprtsptcp", "supportedReceivers", "maximumRTSPURILength", "any" }) public class ReceiverCapabilities { @XmlElement(name = "XAddr", required = true) @XmlSchemaType(name = "anyURI") protected String xAddr; @XmlElement(name = "RTP_Multicast") protected boolean rtpMulticast; @XmlElement(name = "RTP_TCP") protected boolean rtptcp; @XmlElement(name = "RTP_RTSP_TCP") protected boolean rtprtsptcp; @XmlElement(name = "SupportedReceivers") protected int supportedReceivers; @XmlElement(name = "MaximumRTSPURILength") protected int maximumRTSPURILength; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der xAddr-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getXAddr() { return xAddr; } /** * Legt den Wert der xAddr-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setXAddr(String value) { this.xAddr = value; } /** * Ruft den Wert der rtpMulticast-Eigenschaft ab. * */ public boolean isRTPMulticast() { return rtpMulticast; } /** * Legt den Wert der rtpMulticast-Eigenschaft fest. * */ public void setRTPMulticast(boolean value) { this.rtpMulticast = value; } /** * Ruft den Wert der rtptcp-Eigenschaft ab. * */ public boolean isRTPTCP() { return rtptcp; } /** * Legt den Wert der rtptcp-Eigenschaft fest. * */ public void setRTPTCP(boolean value) { this.rtptcp = value; } /** * Ruft den Wert der rtprtsptcp-Eigenschaft ab. * */ public boolean isRTPRTSPTCP() { return rtprtsptcp; } /** * Legt den Wert der rtprtsptcp-Eigenschaft fest. * */ public void setRTPRTSPTCP(boolean value) { this.rtprtsptcp = value; } /** * Ruft den Wert der supportedReceivers-Eigenschaft ab. * */ public int getSupportedReceivers() { return supportedReceivers; } /** * Legt den Wert der supportedReceivers-Eigenschaft fest. * */ public void setSupportedReceivers(int value) { this.supportedReceivers = value; } /** * Ruft den Wert der maximumRTSPURILength-Eigenschaft ab. * */ public int getMaximumRTSPURILength() { return maximumRTSPURILength; } /** * Legt den Wert der maximumRTSPURILength-Eigenschaft fest. * */ public void setMaximumRTSPURILength(int value) { this.maximumRTSPURILength = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ReceiverConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** * * Describes the configuration of a receiver. * * *

* Java-Klasse f�r ReceiverConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReceiverConfiguration", propOrder = { "mode", "mediaUri", "streamSetup", "any" }) public class ReceiverConfiguration { @XmlElement(name = "Mode", required = true) protected ReceiverMode mode; @XmlElement(name = "MediaUri", required = true) @XmlSchemaType(name = "anyURI") protected String mediaUri; @XmlElement(name = "StreamSetup", required = true) protected StreamSetup streamSetup; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link ReceiverMode } * */ public ReceiverMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link ReceiverMode } * */ public void setMode(ReceiverMode value) { this.mode = value; } /** * Ruft den Wert der mediaUri-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getMediaUri() { return mediaUri; } /** * Legt den Wert der mediaUri-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setMediaUri(String value) { this.mediaUri = value; } /** * Ruft den Wert der streamSetup-Eigenschaft ab. * * @return possible object is {@link StreamSetup } * */ public StreamSetup getStreamSetup() { return streamSetup; } /** * Legt den Wert der streamSetup-Eigenschaft fest. * * @param value * allowed object is {@link StreamSetup } * */ public void setStreamSetup(StreamSetup value) { this.streamSetup = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ReceiverMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ReceiverMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "ReceiverMode") @XmlEnum public enum ReceiverMode { /** * The receiver connects on demand, as required by consumers of the media streams. * */ @XmlEnumValue("AutoConnect") AUTO_CONNECT("AutoConnect"), /** * The receiver attempts to maintain a persistent connection to the configured endpoint. * */ @XmlEnumValue("AlwaysConnect") ALWAYS_CONNECT("AlwaysConnect"), /** * The receiver does not attempt to connect. * */ @XmlEnumValue("NeverConnect") NEVER_CONNECT("NeverConnect"), /** * This case should never happen. * */ @XmlEnumValue("Unknown") UNKNOWN("Unknown"); private final String value; ReceiverMode(String v) { value = v; } public String value() { return value; } public static ReceiverMode fromValue(String v) { for (ReceiverMode c : ReceiverMode.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/ReceiverState.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ReceiverState. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "ReceiverState") @XmlEnum public enum ReceiverState { /** * The receiver is not connected. * */ @XmlEnumValue("NotConnected") NOT_CONNECTED("NotConnected"), /** * The receiver is attempting to connect. * */ @XmlEnumValue("Connecting") CONNECTING("Connecting"), /** * The receiver is connected. * */ @XmlEnumValue("Connected") CONNECTED("Connected"), /** * This case should never happen. * */ @XmlEnumValue("Unknown") UNKNOWN("Unknown"); private final String value; ReceiverState(String v) { value = v; } public String value() { return value; } public static ReceiverState fromValue(String v) { for (ReceiverState c : ReceiverState.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/ReceiverStateInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** * * Contains information about a receiver's current state. * * *

* Java-Klasse f�r ReceiverStateInformation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReceiverStateInformation", propOrder = { "state", "autoCreated", "any" }) public class ReceiverStateInformation { @XmlElement(name = "State", required = true) protected ReceiverState state; @XmlElement(name = "AutoCreated") protected boolean autoCreated; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der state-Eigenschaft ab. * * @return possible object is {@link ReceiverState } * */ public ReceiverState getState() { return state; } /** * Legt den Wert der state-Eigenschaft fest. * * @param value * allowed object is {@link ReceiverState } * */ public void setState(ReceiverState value) { this.state = value; } /** * Ruft den Wert der autoCreated-Eigenschaft ab. * */ public boolean isAutoCreated() { return autoCreated; } /** * Legt den Wert der autoCreated-Eigenschaft fest. * */ public void setAutoCreated(boolean value) { this.autoCreated = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RecordingCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingCapabilities", propOrder = { "xAddr", "receiverSource", "mediaProfileSource", "dynamicRecordings", "dynamicTracks", "maxStringLength", "any" }) public class RecordingCapabilities { @XmlElement(name = "XAddr", required = true) @XmlSchemaType(name = "anyURI") protected String xAddr; @XmlElement(name = "ReceiverSource") protected boolean receiverSource; @XmlElement(name = "MediaProfileSource") protected boolean mediaProfileSource; @XmlElement(name = "DynamicRecordings") protected boolean dynamicRecordings; @XmlElement(name = "DynamicTracks") protected boolean dynamicTracks; @XmlElement(name = "MaxStringLength") protected int maxStringLength; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der xAddr-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getXAddr() { return xAddr; } /** * Legt den Wert der xAddr-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setXAddr(String value) { this.xAddr = value; } /** * Ruft den Wert der receiverSource-Eigenschaft ab. * */ public boolean isReceiverSource() { return receiverSource; } /** * Legt den Wert der receiverSource-Eigenschaft fest. * */ public void setReceiverSource(boolean value) { this.receiverSource = value; } /** * Ruft den Wert der mediaProfileSource-Eigenschaft ab. * */ public boolean isMediaProfileSource() { return mediaProfileSource; } /** * Legt den Wert der mediaProfileSource-Eigenschaft fest. * */ public void setMediaProfileSource(boolean value) { this.mediaProfileSource = value; } /** * Ruft den Wert der dynamicRecordings-Eigenschaft ab. * */ public boolean isDynamicRecordings() { return dynamicRecordings; } /** * Legt den Wert der dynamicRecordings-Eigenschaft fest. * */ public void setDynamicRecordings(boolean value) { this.dynamicRecordings = value; } /** * Ruft den Wert der dynamicTracks-Eigenschaft ab. * */ public boolean isDynamicTracks() { return dynamicTracks; } /** * Legt den Wert der dynamicTracks-Eigenschaft fest. * */ public void setDynamicTracks(boolean value) { this.dynamicTracks = value; } /** * Ruft den Wert der maxStringLength-Eigenschaft ab. * */ public int getMaxStringLength() { return maxStringLength; } /** * Legt den Wert der maxStringLength-Eigenschaft fest. * */ public void setMaxStringLength(int value) { this.maxStringLength = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RecordingConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingConfiguration", propOrder = { "source", "content", "maximumRetentionTime", "any" }) public class RecordingConfiguration { @XmlElement(name = "Source", required = true) protected RecordingSourceInformation source; @XmlElement(name = "Content", required = true) protected String content; @XmlElement(name = "MaximumRetentionTime", required = true) protected Duration maximumRetentionTime; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der source-Eigenschaft ab. * * @return possible object is {@link RecordingSourceInformation } * */ public RecordingSourceInformation getSource() { return source; } /** * Legt den Wert der source-Eigenschaft fest. * * @param value * allowed object is {@link RecordingSourceInformation } * */ public void setSource(RecordingSourceInformation value) { this.source = value; } /** * Ruft den Wert der content-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getContent() { return content; } /** * Legt den Wert der content-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setContent(String value) { this.content = value; } /** * Ruft den Wert der maximumRetentionTime-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getMaximumRetentionTime() { return maximumRetentionTime; } /** * Legt den Wert der maximumRetentionTime-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setMaximumRetentionTime(Duration value) { this.maximumRetentionTime = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RecordingInformation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingInformation", propOrder = { "recordingToken", "source", "earliestRecording", "latestRecording", "content", "track", "recordingStatus", "any" }) public class RecordingInformation { @XmlElement(name = "RecordingToken", required = true) protected String recordingToken; @XmlElement(name = "Source", required = true) protected RecordingSourceInformation source; @XmlElement(name = "EarliestRecording") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar earliestRecording; @XmlElement(name = "LatestRecording") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar latestRecording; @XmlElement(name = "Content", required = true) protected String content; @XmlElement(name = "Track") protected List track; @XmlElement(name = "RecordingStatus", required = true) protected RecordingStatus recordingStatus; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der recordingToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getRecordingToken() { return recordingToken; } /** * Legt den Wert der recordingToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setRecordingToken(String value) { this.recordingToken = value; } /** * Ruft den Wert der source-Eigenschaft ab. * * @return possible object is {@link RecordingSourceInformation } * */ public RecordingSourceInformation getSource() { return source; } /** * Legt den Wert der source-Eigenschaft fest. * * @param value * allowed object is {@link RecordingSourceInformation } * */ public void setSource(RecordingSourceInformation value) { this.source = value; } /** * Ruft den Wert der earliestRecording-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getEarliestRecording() { return earliestRecording; } /** * Legt den Wert der earliestRecording-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setEarliestRecording(XMLGregorianCalendar value) { this.earliestRecording = value; } /** * Ruft den Wert der latestRecording-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLatestRecording() { return latestRecording; } /** * Legt den Wert der latestRecording-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setLatestRecording(XMLGregorianCalendar value) { this.latestRecording = value; } /** * Ruft den Wert der content-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getContent() { return content; } /** * Legt den Wert der content-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setContent(String value) { this.content = value; } /** * Gets the value of the track property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the track property. * *

* For example, to add a new item, do as follows: * *

	 * getTrack().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link TrackInformation } * * */ public List getTrack() { if (track == null) { track = new ArrayList(); } return this.track; } /** * Ruft den Wert der recordingStatus-Eigenschaft ab. * * @return possible object is {@link RecordingStatus } * */ public RecordingStatus getRecordingStatus() { return recordingStatus; } /** * Legt den Wert der recordingStatus-Eigenschaft fest. * * @param value * allowed object is {@link RecordingStatus } * */ public void setRecordingStatus(RecordingStatus value) { this.recordingStatus = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingJobConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r RecordingJobConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingJobConfiguration", propOrder = { "recordingToken", "mode", "priority", "source", "extension" }) public class RecordingJobConfiguration { @XmlElement(name = "RecordingToken", required = true) protected String recordingToken; @XmlElement(name = "Mode", required = true) protected String mode; @XmlElement(name = "Priority") protected int priority; @XmlElement(name = "Source") protected List source; @XmlElement(name = "Extension") protected RecordingJobConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der recordingToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getRecordingToken() { return recordingToken; } /** * Legt den Wert der recordingToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setRecordingToken(String value) { this.recordingToken = value; } /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setMode(String value) { this.mode = value; } /** * Ruft den Wert der priority-Eigenschaft ab. * */ public int getPriority() { return priority; } /** * Legt den Wert der priority-Eigenschaft fest. * */ public void setPriority(int value) { this.priority = value; } /** * Gets the value of the source property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the source property. * *

* For example, to add a new item, do as follows: * *

	 * getSource().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link RecordingJobSource } * * */ public List getSource() { if (source == null) { source = new ArrayList(); } return this.source; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link RecordingJobConfigurationExtension } * */ public RecordingJobConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link RecordingJobConfigurationExtension } * */ public void setExtension(RecordingJobConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingJobConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RecordingJobConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingJobConfigurationExtension", propOrder = { "any" }) public class RecordingJobConfigurationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingJobSource.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r RecordingJobSource complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingJobSource", propOrder = { "sourceToken", "autoCreateReceiver", "tracks", "extension" }) public class RecordingJobSource { @XmlElement(name = "SourceToken") protected SourceReference sourceToken; @XmlElement(name = "AutoCreateReceiver") protected Boolean autoCreateReceiver; @XmlElement(name = "Tracks") protected List tracks; @XmlElement(name = "Extension") protected RecordingJobSourceExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der sourceToken-Eigenschaft ab. * * @return possible object is {@link SourceReference } * */ public SourceReference getSourceToken() { return sourceToken; } /** * Legt den Wert der sourceToken-Eigenschaft fest. * * @param value * allowed object is {@link SourceReference } * */ public void setSourceToken(SourceReference value) { this.sourceToken = value; } /** * Ruft den Wert der autoCreateReceiver-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isAutoCreateReceiver() { return autoCreateReceiver; } /** * Legt den Wert der autoCreateReceiver-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setAutoCreateReceiver(Boolean value) { this.autoCreateReceiver = value; } /** * Gets the value of the tracks property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the tracks property. * *

* For example, to add a new item, do as follows: * *

	 * getTracks().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link RecordingJobTrack } * * */ public List getTracks() { if (tracks == null) { tracks = new ArrayList(); } return this.tracks; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link RecordingJobSourceExtension } * */ public RecordingJobSourceExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link RecordingJobSourceExtension } * */ public void setExtension(RecordingJobSourceExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingJobSourceExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RecordingJobSourceExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingJobSourceExtension", propOrder = { "any" }) public class RecordingJobSourceExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingJobStateInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r RecordingJobStateInformation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingJobStateInformation", propOrder = { "recordingToken", "state", "sources", "extension" }) public class RecordingJobStateInformation { @XmlElement(name = "RecordingToken", required = true) protected String recordingToken; @XmlElement(name = "State", required = true) protected String state; @XmlElement(name = "Sources") protected List sources; @XmlElement(name = "Extension") protected RecordingJobStateInformationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der recordingToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getRecordingToken() { return recordingToken; } /** * Legt den Wert der recordingToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setRecordingToken(String value) { this.recordingToken = value; } /** * Ruft den Wert der state-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getState() { return state; } /** * Legt den Wert der state-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setState(String value) { this.state = value; } /** * Gets the value of the sources property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the sources property. * *

* For example, to add a new item, do as follows: * *

	 * getSources().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link RecordingJobStateSource } * * */ public List getSources() { if (sources == null) { sources = new ArrayList(); } return this.sources; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link RecordingJobStateInformationExtension } * */ public RecordingJobStateInformationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link RecordingJobStateInformationExtension } * */ public void setExtension(RecordingJobStateInformationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingJobStateInformationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RecordingJobStateInformationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingJobStateInformationExtension", propOrder = { "any" }) public class RecordingJobStateInformationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingJobStateSource.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RecordingJobStateSource complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingJobStateSource", propOrder = { "sourceToken", "state", "tracks", "any" }) public class RecordingJobStateSource { @XmlElement(name = "SourceToken", required = true) protected SourceReference sourceToken; @XmlElement(name = "State", required = true) protected String state; @XmlElement(name = "Tracks", required = true) protected RecordingJobStateTracks tracks; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der sourceToken-Eigenschaft ab. * * @return possible object is {@link SourceReference } * */ public SourceReference getSourceToken() { return sourceToken; } /** * Legt den Wert der sourceToken-Eigenschaft fest. * * @param value * allowed object is {@link SourceReference } * */ public void setSourceToken(SourceReference value) { this.sourceToken = value; } /** * Ruft den Wert der state-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getState() { return state; } /** * Legt den Wert der state-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setState(String value) { this.state = value; } /** * Ruft den Wert der tracks-Eigenschaft ab. * * @return possible object is {@link RecordingJobStateTracks } * */ public RecordingJobStateTracks getTracks() { return tracks; } /** * Legt den Wert der tracks-Eigenschaft fest. * * @param value * allowed object is {@link RecordingJobStateTracks } * */ public void setTracks(RecordingJobStateTracks value) { this.tracks = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingJobStateTrack.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RecordingJobStateTrack complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingJobStateTrack", propOrder = { "sourceTag", "destination", "error", "state", "any" }) public class RecordingJobStateTrack { @XmlElement(name = "SourceTag", required = true) protected String sourceTag; @XmlElement(name = "Destination", required = true) protected String destination; @XmlElement(name = "Error") protected String error; @XmlElement(name = "State", required = true) protected String state; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der sourceTag-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSourceTag() { return sourceTag; } /** * Legt den Wert der sourceTag-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSourceTag(String value) { this.sourceTag = value; } /** * Ruft den Wert der destination-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDestination() { return destination; } /** * Legt den Wert der destination-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDestination(String value) { this.destination = value; } /** * Ruft den Wert der error-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getError() { return error; } /** * Legt den Wert der error-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setError(String value) { this.error = value; } /** * Ruft den Wert der state-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getState() { return state; } /** * Legt den Wert der state-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setState(String value) { this.state = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingJobStateTracks.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r RecordingJobStateTracks complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingJobStateTracks", propOrder = { "track" }) public class RecordingJobStateTracks { @XmlElement(name = "Track") protected List track; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the track property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the track property. * *

* For example, to add a new item, do as follows: * *

	 * getTrack().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link RecordingJobStateTrack } * * */ public List getTrack() { if (track == null) { track = new ArrayList(); } return this.track; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingJobTrack.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RecordingJobTrack complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingJobTrack", propOrder = { "sourceTag", "destination", "any" }) public class RecordingJobTrack { @XmlElement(name = "SourceTag", required = true) protected String sourceTag; @XmlElement(name = "Destination", required = true) protected String destination; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der sourceTag-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSourceTag() { return sourceTag; } /** * Legt den Wert der sourceTag-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSourceTag(String value) { this.sourceTag = value; } /** * Ruft den Wert der destination-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDestination() { return destination; } /** * Legt den Wert der destination-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDestination(String value) { this.destination = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingSourceInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** * * A set of informative desciptions of a data source. The Search searvice allows a client to filter on recordings based on information in this structure. * * *

* Java-Klasse f�r RecordingSourceInformation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingSourceInformation", propOrder = { "sourceId", "name", "location", "description", "address", "any" }) public class RecordingSourceInformation { @XmlElement(name = "SourceId", required = true) @XmlSchemaType(name = "anyURI") protected String sourceId; @XmlElement(name = "Name", required = true) protected String name; @XmlElement(name = "Location", required = true) protected String location; @XmlElement(name = "Description", required = true) protected String description; @XmlElement(name = "Address", required = true) @XmlSchemaType(name = "anyURI") protected String address; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der sourceId-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSourceId() { return sourceId; } /** * Legt den Wert der sourceId-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSourceId(String value) { this.sourceId = value; } /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der location-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getLocation() { return location; } /** * Legt den Wert der location-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setLocation(String value) { this.location = value; } /** * Ruft den Wert der description-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDescription() { return description; } /** * Legt den Wert der description-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Ruft den Wert der address-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getAddress() { return address; } /** * Legt den Wert der address-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setAddress(String value) { this.address = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingStatus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r RecordingStatus. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "RecordingStatus") @XmlEnum public enum RecordingStatus { @XmlEnumValue("Initiated") INITIATED("Initiated"), @XmlEnumValue("Recording") RECORDING("Recording"), @XmlEnumValue("Stopped") STOPPED("Stopped"), @XmlEnumValue("Removing") REMOVING("Removing"), @XmlEnumValue("Removed") REMOVED("Removed"), /** * This case should never happen. * */ @XmlEnumValue("Unknown") UNKNOWN("Unknown"); private final String value; RecordingStatus(String v) { value = v; } public String value() { return value; } public static RecordingStatus fromValue(String v) { for (RecordingStatus c : RecordingStatus.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/RecordingSummary.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RecordingSummary complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordingSummary", propOrder = { "dataFrom", "dataUntil", "numberRecordings", "any" }) public class RecordingSummary { @XmlElement(name = "DataFrom", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dataFrom; @XmlElement(name = "DataUntil", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dataUntil; @XmlElement(name = "NumberRecordings") protected int numberRecordings; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der dataFrom-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDataFrom() { return dataFrom; } /** * Legt den Wert der dataFrom-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setDataFrom(XMLGregorianCalendar value) { this.dataFrom = value; } /** * Ruft den Wert der dataUntil-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDataUntil() { return dataUntil; } /** * Legt den Wert der dataUntil-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setDataUntil(XMLGregorianCalendar value) { this.dataUntil = value; } /** * Ruft den Wert der numberRecordings-Eigenschaft ab. * */ public int getNumberRecordings() { return numberRecordings; } /** * Legt den Wert der numberRecordings-Eigenschaft fest. * */ public void setNumberRecordings(int value) { this.numberRecordings = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Rectangle.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Rectangle complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Rectangle") public class Rectangle { @XmlAttribute(name = "bottom") protected Float bottom; @XmlAttribute(name = "top") protected Float top; @XmlAttribute(name = "right") protected Float right; @XmlAttribute(name = "left") protected Float left; /** * Ruft den Wert der bottom-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getBottom() { return bottom; } /** * Legt den Wert der bottom-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setBottom(Float value) { this.bottom = value; } /** * Ruft den Wert der top-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getTop() { return top; } /** * Legt den Wert der top-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setTop(Float value) { this.top = value; } /** * Ruft den Wert der right-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getRight() { return right; } /** * Legt den Wert der right-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setRight(Float value) { this.right = value; } /** * Ruft den Wert der left-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getLeft() { return left; } /** * Legt den Wert der left-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setLeft(Float value) { this.left = value; } } ================================================ FILE: src/org/onvif/ver10/schema/RelativeFocus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r RelativeFocus complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RelativeFocus", propOrder = { "distance", "speed" }) public class RelativeFocus { @XmlElement(name = "Distance") protected float distance; @XmlElement(name = "Speed") protected Float speed; /** * Ruft den Wert der distance-Eigenschaft ab. * */ public float getDistance() { return distance; } /** * Legt den Wert der distance-Eigenschaft fest. * */ public void setDistance(float value) { this.distance = value; } /** * Ruft den Wert der speed-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getSpeed() { return speed; } /** * Legt den Wert der speed-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setSpeed(Float value) { this.speed = value; } } ================================================ FILE: src/org/onvif/ver10/schema/RelativeFocusOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r RelativeFocusOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RelativeFocusOptions", propOrder = { "distance", "speed" }) public class RelativeFocusOptions { @XmlElement(name = "Distance", required = true) protected FloatRange distance; @XmlElement(name = "Speed", required = true) protected FloatRange speed; /** * Ruft den Wert der distance-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getDistance() { return distance; } /** * Legt den Wert der distance-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setDistance(FloatRange value) { this.distance = value; } /** * Ruft den Wert der speed-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getSpeed() { return speed; } /** * Legt den Wert der speed-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setSpeed(FloatRange value) { this.speed = value; } } ================================================ FILE: src/org/onvif/ver10/schema/RelativeFocusOptions20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r RelativeFocusOptions20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RelativeFocusOptions20", propOrder = { "distance", "speed" }) public class RelativeFocusOptions20 { @XmlElement(name = "Distance", required = true) protected FloatRange distance; @XmlElement(name = "Speed") protected FloatRange speed; /** * Ruft den Wert der distance-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getDistance() { return distance; } /** * Legt den Wert der distance-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setDistance(FloatRange value) { this.distance = value; } /** * Ruft den Wert der speed-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getSpeed() { return speed; } /** * Legt den Wert der speed-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setSpeed(FloatRange value) { this.speed = value; } } ================================================ FILE: src/org/onvif/ver10/schema/RelayIdleState.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r RelayIdleState. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "RelayIdleState") @XmlEnum public enum RelayIdleState { @XmlEnumValue("closed") CLOSED("closed"), @XmlEnumValue("open") OPEN("open"); private final String value; RelayIdleState(String v) { value = v; } public String value() { return value; } public static RelayIdleState fromValue(String v) { for (RelayIdleState c : RelayIdleState.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/RelayLogicalState.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r RelayLogicalState. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "RelayLogicalState") @XmlEnum public enum RelayLogicalState { @XmlEnumValue("active") ACTIVE("active"), @XmlEnumValue("inactive") INACTIVE("inactive"); private final String value; RelayLogicalState(String v) { value = v; } public String value() { return value; } public static RelayLogicalState fromValue(String v) { for (RelayLogicalState c : RelayLogicalState.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/RelayMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r RelayMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "RelayMode") @XmlEnum public enum RelayMode { @XmlEnumValue("Monostable") MONOSTABLE("Monostable"), @XmlEnumValue("Bistable") BISTABLE("Bistable"); private final String value; RelayMode(String v) { value = v; } public String value() { return value; } public static RelayMode fromValue(String v) { for (RelayMode c : RelayMode.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/RelayOutput.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RelayOutput complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RelayOutput", propOrder = { "properties", "any" }) public class RelayOutput extends DeviceEntity { @XmlElement(name = "Properties", required = true) protected RelayOutputSettings properties; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der properties-Eigenschaft ab. * * @return possible object is {@link RelayOutputSettings } * */ public RelayOutputSettings getProperties() { return properties; } /** * Legt den Wert der properties-Eigenschaft fest. * * @param value * allowed object is {@link RelayOutputSettings } * */ public void setProperties(RelayOutputSettings value) { this.properties = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RelayOutputSettings.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; /** *

* Java-Klasse f�r RelayOutputSettings complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RelayOutputSettings", propOrder = { "mode", "delayTime", "idleState" }) public class RelayOutputSettings { @XmlElement(name = "Mode", required = true) protected RelayMode mode; @XmlElement(name = "DelayTime", required = true) protected Duration delayTime; @XmlElement(name = "IdleState", required = true) protected RelayIdleState idleState; /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link RelayMode } * */ public RelayMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link RelayMode } * */ public void setMode(RelayMode value) { this.mode = value; } /** * Ruft den Wert der delayTime-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getDelayTime() { return delayTime; } /** * Legt den Wert der delayTime-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setDelayTime(Duration value) { this.delayTime = value; } /** * Ruft den Wert der idleState-Eigenschaft ab. * * @return possible object is {@link RelayIdleState } * */ public RelayIdleState getIdleState() { return idleState; } /** * Legt den Wert der idleState-Eigenschaft fest. * * @param value * allowed object is {@link RelayIdleState } * */ public void setIdleState(RelayIdleState value) { this.idleState = value; } } ================================================ FILE: src/org/onvif/ver10/schema/RemoteUser.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RemoteUser complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RemoteUser", propOrder = { "username", "password", "useDerivedPassword", "any" }) public class RemoteUser { @XmlElement(name = "Username", required = true) protected String username; @XmlElement(name = "Password") protected String password; @XmlElement(name = "UseDerivedPassword") protected boolean useDerivedPassword; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der username-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getUsername() { return username; } /** * Legt den Wert der username-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setUsername(String value) { this.username = value; } /** * Ruft den Wert der password-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPassword() { return password; } /** * Legt den Wert der password-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPassword(String value) { this.password = value; } /** * Ruft den Wert der useDerivedPassword-Eigenschaft ab. * */ public boolean isUseDerivedPassword() { return useDerivedPassword; } /** * Legt den Wert der useDerivedPassword-Eigenschaft fest. * */ public void setUseDerivedPassword(boolean value) { this.useDerivedPassword = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Rename.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Rename complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Rename", propOrder = { "from", "to" }) public class Rename { @XmlElement(required = true) protected ObjectId from; @XmlElement(required = true) protected ObjectId to; /** * Ruft den Wert der from-Eigenschaft ab. * * @return possible object is {@link ObjectId } * */ public ObjectId getFrom() { return from; } /** * Legt den Wert der from-Eigenschaft fest. * * @param value * allowed object is {@link ObjectId } * */ public void setFrom(ObjectId value) { this.from = value; } /** * Ruft den Wert der to-Eigenschaft ab. * * @return possible object is {@link ObjectId } * */ public ObjectId getTo() { return to; } /** * Legt den Wert der to-Eigenschaft fest. * * @param value * allowed object is {@link ObjectId } * */ public void setTo(ObjectId value) { this.to = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ReplayCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ReplayCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReplayCapabilities", propOrder = { "xAddr", "any" }) public class ReplayCapabilities { @XmlElement(name = "XAddr", required = true) @XmlSchemaType(name = "anyURI") protected String xAddr; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der xAddr-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getXAddr() { return xAddr; } /** * Legt den Wert der xAddr-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setXAddr(String value) { this.xAddr = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ReplayConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** * * Configuration parameters for the replay service. * * *

* Java-Klasse f�r ReplayConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReplayConfiguration", propOrder = { "sessionTimeout", "any" }) public class ReplayConfiguration { @XmlElement(name = "SessionTimeout", required = true) protected Duration sessionTimeout; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der sessionTimeout-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getSessionTimeout() { return sessionTimeout; } /** * Legt den Wert der sessionTimeout-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setSessionTimeout(Duration value) { this.sessionTimeout = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Reverse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Reverse complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Reverse", propOrder = { "mode", "any" }) public class Reverse { @XmlElement(name = "Mode", required = true) protected ReverseMode mode; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link ReverseMode } * */ public ReverseMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link ReverseMode } * */ public void setMode(ReverseMode value) { this.mode = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ReverseMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ReverseMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "ReverseMode") @XmlEnum public enum ReverseMode { OFF("OFF"), ON("ON"), AUTO("AUTO"), @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; ReverseMode(String v) { value = v; } public String value() { return value; } public static ReverseMode fromValue(String v) { for (ReverseMode c : ReverseMode.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/ReverseOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r ReverseOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReverseOptions", propOrder = { "mode", "extension" }) public class ReverseOptions { @XmlElement(name = "Mode") protected List mode; @XmlElement(name = "Extension") protected ReverseOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the mode property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the mode property. * *

* For example, to add a new item, do as follows: * *

	 * getMode().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ReverseMode } * * */ public List getMode() { if (mode == null) { mode = new ArrayList(); } return this.mode; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ReverseOptionsExtension } * */ public ReverseOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ReverseOptionsExtension } * */ public void setExtension(ReverseOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ReverseOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ReverseOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReverseOptionsExtension", propOrder = { "any" }) public class ReverseOptionsExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/Rotate.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r Rotate complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Rotate", propOrder = { "mode", "degree", "extension" }) public class Rotate { @XmlElement(name = "Mode", required = true) protected RotateMode mode; @XmlElement(name = "Degree") protected Integer degree; @XmlElement(name = "Extension") protected RotateExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link RotateMode } * */ public RotateMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link RotateMode } * */ public void setMode(RotateMode value) { this.mode = value; } /** * Ruft den Wert der degree-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getDegree() { return degree; } /** * Legt den Wert der degree-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setDegree(Integer value) { this.degree = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link RotateExtension } * */ public RotateExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link RotateExtension } * */ public void setExtension(RotateExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RotateExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RotateExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RotateExtension", propOrder = { "any" }) public class RotateExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/RotateMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r RotateMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "RotateMode") @XmlEnum public enum RotateMode { OFF, ON, AUTO; public String value() { return name(); } public static RotateMode fromValue(String v) { return valueOf(v); } } ================================================ FILE: src/org/onvif/ver10/schema/RotateOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r RotateOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RotateOptions", propOrder = { "mode", "degreeList", "extension" }) public class RotateOptions { @XmlElement(name = "Mode", required = true) protected List mode; @XmlElement(name = "DegreeList") protected IntList degreeList; @XmlElement(name = "Extension") protected RotateOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the mode property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the mode property. * *

* For example, to add a new item, do as follows: * *

	 * getMode().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link RotateMode } * * */ public List getMode() { if (mode == null) { mode = new ArrayList(); } return this.mode; } /** * Ruft den Wert der degreeList-Eigenschaft ab. * * @return possible object is {@link IntList } * */ public IntList getDegreeList() { return degreeList; } /** * Legt den Wert der degreeList-Eigenschaft fest. * * @param value * allowed object is {@link IntList } * */ public void setDegreeList(IntList value) { this.degreeList = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link RotateOptionsExtension } * */ public RotateOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link RotateOptionsExtension } * */ public void setExtension(RotateOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RotateOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RotateOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RotateOptionsExtension", propOrder = { "any" }) public class RotateOptionsExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/RuleEngineConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r RuleEngineConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RuleEngineConfiguration", propOrder = { "rule", "extension" }) public class RuleEngineConfiguration { @XmlElement(name = "Rule") protected List rule; @XmlElement(name = "Extension") protected RuleEngineConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the rule property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the rule property. * *

* For example, to add a new item, do as follows: * *

	 * getRule().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Config } * * */ public List getRule() { if (rule == null) { rule = new ArrayList(); } return this.rule; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link RuleEngineConfigurationExtension } * */ public RuleEngineConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link RuleEngineConfigurationExtension } * */ public void setExtension(RuleEngineConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/RuleEngineConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r RuleEngineConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RuleEngineConfigurationExtension", propOrder = { "any" }) public class RuleEngineConfigurationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/Scope.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Scope complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Scope", propOrder = { "scopeDef", "scopeItem" }) public class Scope { @XmlElement(name = "ScopeDef", required = true) protected ScopeDefinition scopeDef; @XmlElement(name = "ScopeItem", required = true) @XmlSchemaType(name = "anyURI") protected String scopeItem; /** * Ruft den Wert der scopeDef-Eigenschaft ab. * * @return possible object is {@link ScopeDefinition } * */ public ScopeDefinition getScopeDef() { return scopeDef; } /** * Legt den Wert der scopeDef-Eigenschaft fest. * * @param value * allowed object is {@link ScopeDefinition } * */ public void setScopeDef(ScopeDefinition value) { this.scopeDef = value; } /** * Ruft den Wert der scopeItem-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getScopeItem() { return scopeItem; } /** * Legt den Wert der scopeItem-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setScopeItem(String value) { this.scopeItem = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ScopeDefinition.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ScopeDefinition. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "ScopeDefinition") @XmlEnum public enum ScopeDefinition { @XmlEnumValue("Fixed") FIXED("Fixed"), @XmlEnumValue("Configurable") CONFIGURABLE("Configurable"); private final String value; ScopeDefinition(String v) { value = v; } public String value() { return value; } public static ScopeDefinition fromValue(String v) { for (ScopeDefinition c : ScopeDefinition.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/SearchCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r SearchCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchCapabilities", propOrder = { "xAddr", "metadataSearch", "any" }) public class SearchCapabilities { @XmlElement(name = "XAddr", required = true) @XmlSchemaType(name = "anyURI") protected String xAddr; @XmlElement(name = "MetadataSearch") protected boolean metadataSearch; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der xAddr-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getXAddr() { return xAddr; } /** * Legt den Wert der xAddr-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setXAddr(String value) { this.xAddr = value; } /** * Ruft den Wert der metadataSearch-Eigenschaft ab. * */ public boolean isMetadataSearch() { return metadataSearch; } /** * Legt den Wert der metadataSearch-Eigenschaft fest. * */ public void setMetadataSearch(boolean value) { this.metadataSearch = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/SearchScope.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * A structure for defining a limited scope when searching in recorded data. * *

* Java-Klasse f�r SearchScope complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchScope", propOrder = { "includedSources", "includedRecordings", "recordingInformationFilter", "extension" }) public class SearchScope { @XmlElement(name = "IncludedSources") protected List includedSources; @XmlElement(name = "IncludedRecordings") protected List includedRecordings; @XmlElement(name = "RecordingInformationFilter") protected String recordingInformationFilter; @XmlElement(name = "Extension") protected SearchScopeExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the includedSources property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the includedSources property. * *

* For example, to add a new item, do as follows: * *

	 * getIncludedSources().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link SourceReference } * * */ public List getIncludedSources() { if (includedSources == null) { includedSources = new ArrayList(); } return this.includedSources; } /** * Gets the value of the includedRecordings property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the includedRecordings property. * *

* For example, to add a new item, do as follows: * *

	 * getIncludedRecordings().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getIncludedRecordings() { if (includedRecordings == null) { includedRecordings = new ArrayList(); } return this.includedRecordings; } /** * Ruft den Wert der recordingInformationFilter-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getRecordingInformationFilter() { return recordingInformationFilter; } /** * Legt den Wert der recordingInformationFilter-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setRecordingInformationFilter(String value) { this.recordingInformationFilter = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link SearchScopeExtension } * */ public SearchScopeExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link SearchScopeExtension } * */ public void setExtension(SearchScopeExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/SearchScopeExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r SearchScopeExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchScopeExtension", propOrder = { "any" }) public class SearchScopeExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/SearchState.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r SearchState. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "SearchState") @XmlEnum public enum SearchState { /** * The search is queued and not yet started. * */ @XmlEnumValue("Queued") QUEUED("Queued"), /** * The search is underway and not yet completed. * */ @XmlEnumValue("Searching") SEARCHING("Searching"), /** * The search has been completed and no new results will be found. * */ @XmlEnumValue("Completed") COMPLETED("Completed"), /** * The state of the search is unknown. (This is not a valid response from GetSearchState.) * */ @XmlEnumValue("Unknown") UNKNOWN("Unknown"); private final String value; SearchState(String v) { value = v; } public String value() { return value; } public static SearchState fromValue(String v) { for (SearchState c : SearchState.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/SecurityCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r SecurityCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SecurityCapabilities", propOrder = { "tls11", "tls12", "onboardKeyGeneration", "accessPolicyConfig", "x509Token", "samlToken", "kerberosToken", "relToken", "any", "extension" }) public class SecurityCapabilities { @XmlElement(name = "TLS1.1") protected boolean tls11; @XmlElement(name = "TLS1.2") protected boolean tls12; @XmlElement(name = "OnboardKeyGeneration") protected boolean onboardKeyGeneration; @XmlElement(name = "AccessPolicyConfig") protected boolean accessPolicyConfig; @XmlElement(name = "X.509Token") protected boolean x509Token; @XmlElement(name = "SAMLToken") protected boolean samlToken; @XmlElement(name = "KerberosToken") protected boolean kerberosToken; @XmlElement(name = "RELToken") protected boolean relToken; @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "Extension") protected SecurityCapabilitiesExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der tls11-Eigenschaft ab. * */ public boolean isTLS11() { return tls11; } /** * Legt den Wert der tls11-Eigenschaft fest. * */ public void setTLS11(boolean value) { this.tls11 = value; } /** * Ruft den Wert der tls12-Eigenschaft ab. * */ public boolean isTLS12() { return tls12; } /** * Legt den Wert der tls12-Eigenschaft fest. * */ public void setTLS12(boolean value) { this.tls12 = value; } /** * Ruft den Wert der onboardKeyGeneration-Eigenschaft ab. * */ public boolean isOnboardKeyGeneration() { return onboardKeyGeneration; } /** * Legt den Wert der onboardKeyGeneration-Eigenschaft fest. * */ public void setOnboardKeyGeneration(boolean value) { this.onboardKeyGeneration = value; } /** * Ruft den Wert der accessPolicyConfig-Eigenschaft ab. * */ public boolean isAccessPolicyConfig() { return accessPolicyConfig; } /** * Legt den Wert der accessPolicyConfig-Eigenschaft fest. * */ public void setAccessPolicyConfig(boolean value) { this.accessPolicyConfig = value; } /** * Ruft den Wert der x509Token-Eigenschaft ab. * */ public boolean isX509Token() { return x509Token; } /** * Legt den Wert der x509Token-Eigenschaft fest. * */ public void setX509Token(boolean value) { this.x509Token = value; } /** * Ruft den Wert der samlToken-Eigenschaft ab. * */ public boolean isSAMLToken() { return samlToken; } /** * Legt den Wert der samlToken-Eigenschaft fest. * */ public void setSAMLToken(boolean value) { this.samlToken = value; } /** * Ruft den Wert der kerberosToken-Eigenschaft ab. * */ public boolean isKerberosToken() { return kerberosToken; } /** * Legt den Wert der kerberosToken-Eigenschaft fest. * */ public void setKerberosToken(boolean value) { this.kerberosToken = value; } /** * Ruft den Wert der relToken-Eigenschaft ab. * */ public boolean isRELToken() { return relToken; } /** * Legt den Wert der relToken-Eigenschaft fest. * */ public void setRELToken(boolean value) { this.relToken = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link SecurityCapabilitiesExtension } * */ public SecurityCapabilitiesExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link SecurityCapabilitiesExtension } * */ public void setExtension(SecurityCapabilitiesExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/SecurityCapabilitiesExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r SecurityCapabilitiesExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SecurityCapabilitiesExtension", propOrder = { "tls10", "extension" }) public class SecurityCapabilitiesExtension { @XmlElement(name = "TLS1.0") protected boolean tls10; @XmlElement(name = "Extension") protected SecurityCapabilitiesExtension2 extension; /** * Ruft den Wert der tls10-Eigenschaft ab. * */ public boolean isTLS10() { return tls10; } /** * Legt den Wert der tls10-Eigenschaft fest. * */ public void setTLS10(boolean value) { this.tls10 = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link SecurityCapabilitiesExtension2 } * */ public SecurityCapabilitiesExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link SecurityCapabilitiesExtension2 } * */ public void setExtension(SecurityCapabilitiesExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/SecurityCapabilitiesExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r SecurityCapabilitiesExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SecurityCapabilitiesExtension2", propOrder = { "dot1X", "supportedEAPMethod", "remoteUserHandling", "any" }) public class SecurityCapabilitiesExtension2 { @XmlElement(name = "Dot1X") protected boolean dot1X; @XmlElement(name = "SupportedEAPMethod", type = Integer.class) protected List supportedEAPMethod; @XmlElement(name = "RemoteUserHandling") protected boolean remoteUserHandling; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der dot1X-Eigenschaft ab. * */ public boolean isDot1X() { return dot1X; } /** * Legt den Wert der dot1X-Eigenschaft fest. * */ public void setDot1X(boolean value) { this.dot1X = value; } /** * Gets the value of the supportedEAPMethod property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the supportedEAPMethod property. * *

* For example, to add a new item, do as follows: * *

	 * getSupportedEAPMethod().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Integer } * * */ public List getSupportedEAPMethod() { if (supportedEAPMethod == null) { supportedEAPMethod = new ArrayList(); } return this.supportedEAPMethod; } /** * Ruft den Wert der remoteUserHandling-Eigenschaft ab. * */ public boolean isRemoteUserHandling() { return remoteUserHandling; } /** * Legt den Wert der remoteUserHandling-Eigenschaft fest. * */ public void setRemoteUserHandling(boolean value) { this.remoteUserHandling = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/SetDateTimeType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r SetDateTimeType. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "SetDateTimeType") @XmlEnum public enum SetDateTimeType { /** * Indicates that the date and time are set manually. * */ @XmlEnumValue("Manual") MANUAL("Manual"), /** * Indicates that the date and time are set through NTP * */ NTP("NTP"); private final String value; SetDateTimeType(String v) { value = v; } public String value() { return value; } public static SetDateTimeType fromValue(String v) { for (SetDateTimeType c : SetDateTimeType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/ShapeDescriptor.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r ShapeDescriptor complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ShapeDescriptor", propOrder = { "boundingBox", "centerOfGravity", "polygon", "extension" }) public class ShapeDescriptor { @XmlElement(name = "BoundingBox", required = true) protected Rectangle boundingBox; @XmlElement(name = "CenterOfGravity", required = true) protected Vector centerOfGravity; @XmlElement(name = "Polygon") protected List polygon; @XmlElement(name = "Extension") protected ShapeDescriptorExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der boundingBox-Eigenschaft ab. * * @return possible object is {@link Rectangle } * */ public Rectangle getBoundingBox() { return boundingBox; } /** * Legt den Wert der boundingBox-Eigenschaft fest. * * @param value * allowed object is {@link Rectangle } * */ public void setBoundingBox(Rectangle value) { this.boundingBox = value; } /** * Ruft den Wert der centerOfGravity-Eigenschaft ab. * * @return possible object is {@link Vector } * */ public Vector getCenterOfGravity() { return centerOfGravity; } /** * Legt den Wert der centerOfGravity-Eigenschaft fest. * * @param value * allowed object is {@link Vector } * */ public void setCenterOfGravity(Vector value) { this.centerOfGravity = value; } /** * Gets the value of the polygon property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the polygon property. * *

* For example, to add a new item, do as follows: * *

	 * getPolygon().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Polygon } * * */ public List getPolygon() { if (polygon == null) { polygon = new ArrayList(); } return this.polygon; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link ShapeDescriptorExtension } * */ public ShapeDescriptorExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link ShapeDescriptorExtension } * */ public void setExtension(ShapeDescriptorExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ShapeDescriptorExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ShapeDescriptorExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ShapeDescriptorExtension", propOrder = { "any" }) public class ShapeDescriptorExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/SourceIdentification.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r SourceIdentification complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SourceIdentification", propOrder = { "name", "token", "extension" }) public class SourceIdentification { @XmlElement(name = "Name", required = true) protected String name; @XmlElement(name = "Token", required = true) protected List token; @XmlElement(name = "Extension") protected SourceIdentificationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the token property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the token property. * *

* For example, to add a new item, do as follows: * *

	 * getToken().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getToken() { if (token == null) { token = new ArrayList(); } return this.token; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link SourceIdentificationExtension } * */ public SourceIdentificationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link SourceIdentificationExtension } * */ public void setExtension(SourceIdentificationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/SourceIdentificationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r SourceIdentificationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SourceIdentificationExtension", propOrder = { "any" }) public class SourceIdentificationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/SourceReference.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r SourceReference complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SourceReference", propOrder = { "token", "any" }) public class SourceReference { @XmlElement(name = "Token", required = true) protected String token; @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "Type") @XmlSchemaType(name = "anyURI") protected String type; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der token-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setToken(String value) { this.token = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getType() { if (type == null) { return "http://www.onvif.org/ver10/schema/Receiver"; } else { return type; } } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Space1DDescription.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Space1DDescription complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Space1DDescription", propOrder = { "uri", "xRange" }) public class Space1DDescription { @XmlElement(name = "URI", required = true) @XmlSchemaType(name = "anyURI") protected String uri; @XmlElement(name = "XRange", required = true) protected FloatRange xRange; /** * Ruft den Wert der uri-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getURI() { return uri; } /** * Legt den Wert der uri-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setURI(String value) { this.uri = value; } /** * Ruft den Wert der xRange-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getXRange() { return xRange; } /** * Legt den Wert der xRange-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setXRange(FloatRange value) { this.xRange = value; } } ================================================ FILE: src/org/onvif/ver10/schema/Space2DDescription.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Space2DDescription complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Space2DDescription", propOrder = { "uri", "xRange", "yRange" }) public class Space2DDescription { @XmlElement(name = "URI", required = true) @XmlSchemaType(name = "anyURI") protected String uri; @XmlElement(name = "XRange", required = true) protected FloatRange xRange; @XmlElement(name = "YRange", required = true) protected FloatRange yRange; /** * Ruft den Wert der uri-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getURI() { return uri; } /** * Legt den Wert der uri-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setURI(String value) { this.uri = value; } /** * Ruft den Wert der xRange-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getXRange() { return xRange; } /** * Legt den Wert der xRange-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setXRange(FloatRange value) { this.xRange = value; } /** * Ruft den Wert der yRange-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getYRange() { return yRange; } /** * Legt den Wert der yRange-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setYRange(FloatRange value) { this.yRange = value; } } ================================================ FILE: src/org/onvif/ver10/schema/Split.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Split complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Split", propOrder = { "from", "to" }) public class Split { @XmlElement(required = true) protected ObjectId from; @XmlElement(required = true) protected List to; /** * Ruft den Wert der from-Eigenschaft ab. * * @return possible object is {@link ObjectId } * */ public ObjectId getFrom() { return from; } /** * Legt den Wert der from-Eigenschaft fest. * * @param value * allowed object is {@link ObjectId } * */ public void setFrom(ObjectId value) { this.from = value; } /** * Gets the value of the to property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the to property. * *

* For example, to add a new item, do as follows: * *

	 * getTo().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ObjectId } * * */ public List getTo() { if (to == null) { to = new ArrayList(); } return this.to; } } ================================================ FILE: src/org/onvif/ver10/schema/StorageReferencePath.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

Java-Klasse fr StorageReferencePath complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="StorageReferencePath">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="StorageToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *         <element name="RelativePath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Extension" type="{http://www.onvif.org/ver10/schema}StorageReferencePathExtension" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StorageReferencePath", propOrder = { "storageToken", "relativePath", "extension" }) public class StorageReferencePath { @XmlElement(name = "StorageToken", required = true) protected String storageToken; @XmlElement(name = "RelativePath") protected String relativePath; @XmlElement(name = "Extension") protected StorageReferencePathExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der storageToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getStorageToken() { return storageToken; } /** * Legt den Wert der storageToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setStorageToken(String value) { this.storageToken = value; } /** * Ruft den Wert der relativePath-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getRelativePath() { return relativePath; } /** * Legt den Wert der relativePath-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setRelativePath(String value) { this.relativePath = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return * possible object is * {@link StorageReferencePathExtension } * */ public StorageReferencePathExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is * {@link StorageReferencePathExtension } * */ public void setExtension(StorageReferencePathExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/StorageReferencePathExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr StorageReferencePathExtension complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="StorageReferencePathExtension">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StorageReferencePathExtension", propOrder = { "any" }) public class StorageReferencePathExtension { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/StreamSetup.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r StreamSetup complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StreamSetup", propOrder = { "stream", "transport", "any" }) public class StreamSetup { @XmlElement(name = "Stream", required = true) protected StreamType stream; @XmlElement(name = "Transport", required = true) protected Transport transport; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der stream-Eigenschaft ab. * * @return possible object is {@link StreamType } * */ public StreamType getStream() { return stream; } /** * Legt den Wert der stream-Eigenschaft fest. * * @param value * allowed object is {@link StreamType } * */ public void setStream(StreamType value) { this.stream = value; } /** * Ruft den Wert der transport-Eigenschaft ab. * * @return possible object is {@link Transport } * */ public Transport getTransport() { return transport; } /** * Legt den Wert der transport-Eigenschaft fest. * * @param value * allowed object is {@link Transport } * */ public void setTransport(Transport value) { this.transport = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/StreamType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r StreamType. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "StreamType") @XmlEnum public enum StreamType { @XmlEnumValue("RTP-Unicast") RTP_UNICAST("RTP-Unicast"), @XmlEnumValue("RTP-Multicast") RTP_MULTICAST("RTP-Multicast"); private final String value; StreamType(String v) { value = v; } public String value() { return value; } public static StreamType fromValue(String v) { for (StreamType c : StreamType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/SupportInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r SupportInformation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SupportInformation", propOrder = { "binary", "string" }) public class SupportInformation { @XmlElement(name = "Binary") protected AttachmentData binary; @XmlElement(name = "String") protected String string; /** * Ruft den Wert der binary-Eigenschaft ab. * * @return possible object is {@link AttachmentData } * */ public AttachmentData getBinary() { return binary; } /** * Legt den Wert der binary-Eigenschaft fest. * * @param value * allowed object is {@link AttachmentData } * */ public void setBinary(AttachmentData value) { this.binary = value; } /** * Ruft den Wert der string-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getString() { return string; } /** * Legt den Wert der string-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setString(String value) { this.string = value; } } ================================================ FILE: src/org/onvif/ver10/schema/SupportedAnalyticsModules.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r SupportedAnalyticsModules complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SupportedAnalyticsModules", propOrder = { "analyticsModuleContentSchemaLocation", "analyticsModuleDescription", "extension" }) public class SupportedAnalyticsModules { @XmlElement(name = "AnalyticsModuleContentSchemaLocation") @XmlSchemaType(name = "anyURI") protected List analyticsModuleContentSchemaLocation; @XmlElement(name = "AnalyticsModuleDescription") protected List analyticsModuleDescription; @XmlElement(name = "Extension") protected SupportedAnalyticsModulesExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the analyticsModuleContentSchemaLocation property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the analyticsModuleContentSchemaLocation property. * *

* For example, to add a new item, do as follows: * *

	 * getAnalyticsModuleContentSchemaLocation().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getAnalyticsModuleContentSchemaLocation() { if (analyticsModuleContentSchemaLocation == null) { analyticsModuleContentSchemaLocation = new ArrayList(); } return this.analyticsModuleContentSchemaLocation; } /** * Gets the value of the analyticsModuleDescription property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the analyticsModuleDescription property. * *

* For example, to add a new item, do as follows: * *

	 * getAnalyticsModuleDescription().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ConfigDescription } * * */ public List getAnalyticsModuleDescription() { if (analyticsModuleDescription == null) { analyticsModuleDescription = new ArrayList(); } return this.analyticsModuleDescription; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link SupportedAnalyticsModulesExtension } * */ public SupportedAnalyticsModulesExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link SupportedAnalyticsModulesExtension } * */ public void setExtension(SupportedAnalyticsModulesExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/SupportedAnalyticsModulesExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r SupportedAnalyticsModulesExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SupportedAnalyticsModulesExtension", propOrder = { "any" }) public class SupportedAnalyticsModulesExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/SupportedRules.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r SupportedRules complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SupportedRules", propOrder = { "ruleContentSchemaLocation", "ruleDescription", "extension" }) public class SupportedRules { @XmlElement(name = "RuleContentSchemaLocation") @XmlSchemaType(name = "anyURI") protected List ruleContentSchemaLocation; @XmlElement(name = "RuleDescription") protected List ruleDescription; @XmlElement(name = "Extension") protected SupportedRulesExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the ruleContentSchemaLocation property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the ruleContentSchemaLocation property. * *

* For example, to add a new item, do as follows: * *

	 * getRuleContentSchemaLocation().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getRuleContentSchemaLocation() { if (ruleContentSchemaLocation == null) { ruleContentSchemaLocation = new ArrayList(); } return this.ruleContentSchemaLocation; } /** * Gets the value of the ruleDescription property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the ruleDescription property. * *

* For example, to add a new item, do as follows: * *

	 * getRuleDescription().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link ConfigDescription } * * */ public List getRuleDescription() { if (ruleDescription == null) { ruleDescription = new ArrayList(); } return this.ruleDescription; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link SupportedRulesExtension } * */ public SupportedRulesExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link SupportedRulesExtension } * */ public void setExtension(SupportedRulesExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/SupportedRulesExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r SupportedRulesExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SupportedRulesExtension", propOrder = { "any" }) public class SupportedRulesExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/SystemCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r SystemCapabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SystemCapabilities", propOrder = { "discoveryResolve", "discoveryBye", "remoteDiscovery", "systemBackup", "systemLogging", "firmwareUpgrade", "supportedVersions", "extension" }) public class SystemCapabilities { @XmlElement(name = "DiscoveryResolve") protected boolean discoveryResolve; @XmlElement(name = "DiscoveryBye") protected boolean discoveryBye; @XmlElement(name = "RemoteDiscovery") protected boolean remoteDiscovery; @XmlElement(name = "SystemBackup") protected boolean systemBackup; @XmlElement(name = "SystemLogging") protected boolean systemLogging; @XmlElement(name = "FirmwareUpgrade") protected boolean firmwareUpgrade; @XmlElement(name = "SupportedVersions", required = true) protected List supportedVersions; @XmlElement(name = "Extension") protected SystemCapabilitiesExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der discoveryResolve-Eigenschaft ab. * */ public boolean isDiscoveryResolve() { return discoveryResolve; } /** * Legt den Wert der discoveryResolve-Eigenschaft fest. * */ public void setDiscoveryResolve(boolean value) { this.discoveryResolve = value; } /** * Ruft den Wert der discoveryBye-Eigenschaft ab. * */ public boolean isDiscoveryBye() { return discoveryBye; } /** * Legt den Wert der discoveryBye-Eigenschaft fest. * */ public void setDiscoveryBye(boolean value) { this.discoveryBye = value; } /** * Ruft den Wert der remoteDiscovery-Eigenschaft ab. * */ public boolean isRemoteDiscovery() { return remoteDiscovery; } /** * Legt den Wert der remoteDiscovery-Eigenschaft fest. * */ public void setRemoteDiscovery(boolean value) { this.remoteDiscovery = value; } /** * Ruft den Wert der systemBackup-Eigenschaft ab. * */ public boolean isSystemBackup() { return systemBackup; } /** * Legt den Wert der systemBackup-Eigenschaft fest. * */ public void setSystemBackup(boolean value) { this.systemBackup = value; } /** * Ruft den Wert der systemLogging-Eigenschaft ab. * */ public boolean isSystemLogging() { return systemLogging; } /** * Legt den Wert der systemLogging-Eigenschaft fest. * */ public void setSystemLogging(boolean value) { this.systemLogging = value; } /** * Ruft den Wert der firmwareUpgrade-Eigenschaft ab. * */ public boolean isFirmwareUpgrade() { return firmwareUpgrade; } /** * Legt den Wert der firmwareUpgrade-Eigenschaft fest. * */ public void setFirmwareUpgrade(boolean value) { this.firmwareUpgrade = value; } /** * Gets the value of the supportedVersions property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the supportedVersions property. * *

* For example, to add a new item, do as follows: * *

	 * getSupportedVersions().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link OnvifVersion } * * */ public List getSupportedVersions() { if (supportedVersions == null) { supportedVersions = new ArrayList(); } return this.supportedVersions; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link SystemCapabilitiesExtension } * */ public SystemCapabilitiesExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link SystemCapabilitiesExtension } * */ public void setExtension(SystemCapabilitiesExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/SystemCapabilitiesExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r SystemCapabilitiesExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SystemCapabilitiesExtension", propOrder = { "any", "httpFirmwareUpgrade", "httpSystemBackup", "httpSystemLogging", "httpSupportInformation", "extension" }) public class SystemCapabilitiesExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "HttpFirmwareUpgrade") protected Boolean httpFirmwareUpgrade; @XmlElement(name = "HttpSystemBackup") protected Boolean httpSystemBackup; @XmlElement(name = "HttpSystemLogging") protected Boolean httpSystemLogging; @XmlElement(name = "HttpSupportInformation") protected Boolean httpSupportInformation; @XmlElement(name = "Extension") protected SystemCapabilitiesExtension2 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der httpFirmwareUpgrade-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isHttpFirmwareUpgrade() { return httpFirmwareUpgrade; } /** * Legt den Wert der httpFirmwareUpgrade-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setHttpFirmwareUpgrade(Boolean value) { this.httpFirmwareUpgrade = value; } /** * Ruft den Wert der httpSystemBackup-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isHttpSystemBackup() { return httpSystemBackup; } /** * Legt den Wert der httpSystemBackup-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setHttpSystemBackup(Boolean value) { this.httpSystemBackup = value; } /** * Ruft den Wert der httpSystemLogging-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isHttpSystemLogging() { return httpSystemLogging; } /** * Legt den Wert der httpSystemLogging-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setHttpSystemLogging(Boolean value) { this.httpSystemLogging = value; } /** * Ruft den Wert der httpSupportInformation-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isHttpSupportInformation() { return httpSupportInformation; } /** * Legt den Wert der httpSupportInformation-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setHttpSupportInformation(Boolean value) { this.httpSupportInformation = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link SystemCapabilitiesExtension2 } * */ public SystemCapabilitiesExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link SystemCapabilitiesExtension2 } * */ public void setExtension(SystemCapabilitiesExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/SystemCapabilitiesExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r SystemCapabilitiesExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SystemCapabilitiesExtension2", propOrder = { "any" }) public class SystemCapabilitiesExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/SystemDateTime.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * General date time inforamtion returned by the GetSystemDateTime method. * *

* Java-Klasse f�r SystemDateTime complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SystemDateTime", propOrder = { "dateTimeType", "daylightSavings", "timeZone", "utcDateTime", "localDateTime", "extension" }) public class SystemDateTime { @XmlElement(name = "DateTimeType", required = true) protected SetDateTimeType dateTimeType; @XmlElement(name = "DaylightSavings") protected boolean daylightSavings; @XmlElement(name = "TimeZone") protected TimeZone timeZone; @XmlElement(name = "UTCDateTime") protected DateTime utcDateTime; @XmlElement(name = "LocalDateTime") protected DateTime localDateTime; @XmlElement(name = "Extension") protected SystemDateTimeExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der dateTimeType-Eigenschaft ab. * * @return possible object is {@link SetDateTimeType } * */ public SetDateTimeType getDateTimeType() { return dateTimeType; } /** * Legt den Wert der dateTimeType-Eigenschaft fest. * * @param value * allowed object is {@link SetDateTimeType } * */ public void setDateTimeType(SetDateTimeType value) { this.dateTimeType = value; } /** * Ruft den Wert der daylightSavings-Eigenschaft ab. * */ public boolean isDaylightSavings() { return daylightSavings; } /** * Legt den Wert der daylightSavings-Eigenschaft fest. * */ public void setDaylightSavings(boolean value) { this.daylightSavings = value; } /** * Ruft den Wert der timeZone-Eigenschaft ab. * * @return possible object is {@link TimeZone } * */ public TimeZone getTimeZone() { return timeZone; } /** * Legt den Wert der timeZone-Eigenschaft fest. * * @param value * allowed object is {@link TimeZone } * */ public void setTimeZone(TimeZone value) { this.timeZone = value; } /** * Ruft den Wert der utcDateTime-Eigenschaft ab. * * @return possible object is {@link DateTime } * */ public DateTime getUTCDateTime() { return utcDateTime; } /** * Legt den Wert der utcDateTime-Eigenschaft fest. * * @param value * allowed object is {@link DateTime } * */ public void setUTCDateTime(DateTime value) { this.utcDateTime = value; } /** * Ruft den Wert der localDateTime-Eigenschaft ab. * * @return possible object is {@link DateTime } * */ public DateTime getLocalDateTime() { return localDateTime; } /** * Legt den Wert der localDateTime-Eigenschaft fest. * * @param value * allowed object is {@link DateTime } * */ public void setLocalDateTime(DateTime value) { this.localDateTime = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link SystemDateTimeExtension } * */ public SystemDateTimeExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link SystemDateTimeExtension } * */ public void setExtension(SystemDateTimeExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/SystemDateTimeExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r SystemDateTimeExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SystemDateTimeExtension", propOrder = { "any" }) public class SystemDateTimeExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/SystemLog.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r SystemLog complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SystemLog", propOrder = { "binary", "string" }) public class SystemLog { @XmlElement(name = "Binary") protected AttachmentData binary; @XmlElement(name = "String") protected String string; /** * Ruft den Wert der binary-Eigenschaft ab. * * @return possible object is {@link AttachmentData } * */ public AttachmentData getBinary() { return binary; } /** * Legt den Wert der binary-Eigenschaft fest. * * @param value * allowed object is {@link AttachmentData } * */ public void setBinary(AttachmentData value) { this.binary = value; } /** * Ruft den Wert der string-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getString() { return string; } /** * Legt den Wert der string-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setString(String value) { this.string = value; } } ================================================ FILE: src/org/onvif/ver10/schema/SystemLogType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r SystemLogType. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "SystemLogType") @XmlEnum public enum SystemLogType { /** * Indicates that a system log is requested. * */ @XmlEnumValue("System") SYSTEM("System"), /** * Indicates that a access log is requested. * */ @XmlEnumValue("Access") ACCESS("Access"); private final String value; SystemLogType(String v) { value = v; } public String value() { return value; } public static SystemLogType fromValue(String v) { for (SystemLogType c : SystemLogType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/SystemLogUri.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r SystemLogUri complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SystemLogUri", propOrder = { "type", "uri", "any" }) public class SystemLogUri { @XmlElement(name = "Type", required = true) protected SystemLogType type; @XmlElement(name = "Uri", required = true) @XmlSchemaType(name = "anyURI") protected String uri; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der type-Eigenschaft ab. * * @return possible object is {@link SystemLogType } * */ public SystemLogType getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is {@link SystemLogType } * */ public void setType(SystemLogType value) { this.type = value; } /** * Ruft den Wert der uri-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getUri() { return uri; } /** * Legt den Wert der uri-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setUri(String value) { this.uri = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/SystemLogUriList.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r SystemLogUriList complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SystemLogUriList", propOrder = { "systemLog" }) public class SystemLogUriList { @XmlElement(name = "SystemLog") protected List systemLog; /** * Gets the value of the systemLog property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the systemLog property. * *

* For example, to add a new item, do as follows: * *

	 * getSystemLog().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link SystemLogUri } * * */ public List getSystemLog() { if (systemLog == null) { systemLog = new ArrayList(); } return this.systemLog; } } ================================================ FILE: src/org/onvif/ver10/schema/TLSConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r TLSConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TLSConfiguration", propOrder = { "certificateID", "any" }) public class TLSConfiguration { @XmlElement(name = "CertificateID", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String certificateID; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der certificateID-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getCertificateID() { return certificateID; } /** * Legt den Wert der certificateID-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setCertificateID(String value) { this.certificateID = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/Time.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Time complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Time", propOrder = { "hour", "minute", "second" }) public class Time { @XmlElement(name = "Hour") protected int hour; @XmlElement(name = "Minute") protected int minute; @XmlElement(name = "Second") protected int second; /** * Ruft den Wert der hour-Eigenschaft ab. * */ public int getHour() { return hour; } /** * Legt den Wert der hour-Eigenschaft fest. * */ public void setHour(int value) { this.hour = value; } /** * Ruft den Wert der minute-Eigenschaft ab. * */ public int getMinute() { return minute; } /** * Legt den Wert der minute-Eigenschaft fest. * */ public void setMinute(int value) { this.minute = value; } /** * Ruft den Wert der second-Eigenschaft ab. * */ public int getSecond() { return second; } /** * Legt den Wert der second-Eigenschaft fest. * */ public void setSecond(int value) { this.second = value; } } ================================================ FILE: src/org/onvif/ver10/schema/TimeZone.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * * The TZ format is specified by POSIX, please refer to POSIX 1003.1 section 8.3 * *
 * 
 * 
 * Example: Europe, Paris TZ=CET-1CEST,M3.5.0/2,M10.5.0/3
 * 
 * 
 * 
 * 
 * CET = designation for standard time when daylight saving is not in force
 * 
 * 
 * 
 * 
 * -1 = offset in hours = negative so 1 hour east of Greenwich meridian
 * 
 * 
 * 
 * 
 * CEST = designation when daylight saving is in force ("Central European Summer Time")
 * 
 * 
 * 
 * 
 * , = no offset number between code and comma, so default to one hour ahead for daylight saving
 * 
 * 
 * 
 * 
 * M3.5.0 = when daylight saving starts = the last Sunday in March (the "5th" week means the last in the month)
 * 
 * 
 * 
 * 
 * /2, = the local time when the switch occurs = 2 a.m. in this case
 * 
 * 
 * 
 * 
 * M10.5.0 = when daylight saving ends = the last Sunday in October.
 * 
 * 
 * 
 * 
 * /3, = the local time when the switch occurs = 3 a.m. in this case
 * 
 * 
 * 
 * 
 * 
 * 

* Java-Klasse f�r TimeZone complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TimeZone", propOrder = { "tz" }) public class TimeZone { @XmlElement(name = "TZ", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String tz; /** * Ruft den Wert der tz-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getTZ() { return tz; } /** * Legt den Wert der tz-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setTZ(String value) { this.tz = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ToneCompensation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

Java-Klasse fr ToneCompensation complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="ToneCompensation">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Mode" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Level" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
 *         <element name="Extension" type="{http://www.onvif.org/ver10/schema}ToneCompensationExtension" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ToneCompensation", propOrder = { "mode", "level", "extension" }) public class ToneCompensation { @XmlElement(name = "Mode", required = true) protected String mode; @XmlElement(name = "Level") protected Float level; @XmlElement(name = "Extension") protected ToneCompensationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der mode-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setMode(String value) { this.mode = value; } /** * Ruft den Wert der level-Eigenschaft ab. * * @return * possible object is * {@link Float } * */ public Float getLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * * @param value * allowed object is * {@link Float } * */ public void setLevel(Float value) { this.level = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return * possible object is * {@link ToneCompensationExtension } * */ public ToneCompensationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is * {@link ToneCompensationExtension } * */ public void setExtension(ToneCompensationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/ToneCompensationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

Java-Klasse fr ToneCompensationExtension complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="ToneCompensationExtension">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <any processContents='lax' namespace='http://www.onvif.org/ver10/schema' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ToneCompensationExtension", propOrder = { "any" }) public class ToneCompensationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/ToneCompensationMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr ToneCompensationMode. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

*

 * <simpleType name="ToneCompensationMode">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="OFF"/>
 *     <enumeration value="ON"/>
 *     <enumeration value="AUTO"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ToneCompensationMode") @XmlEnum public enum ToneCompensationMode { OFF, ON, AUTO; public String value() { return name(); } public static ToneCompensationMode fromValue(String v) { return valueOf(v); } } ================================================ FILE: src/org/onvif/ver10/schema/ToneCompensationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr ToneCompensationOptions complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="ToneCompensationOptions">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Mode" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
 *         <element name="Level" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ToneCompensationOptions", propOrder = { "mode", "level", "any" }) public class ToneCompensationOptions { @XmlElement(name = "Mode", required = true) protected List mode; @XmlElement(name = "Level") protected boolean level; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the mode property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the mode property. * *

* For example, to add a new item, do as follows: *

     *    getMode().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getMode() { if (mode == null) { mode = new ArrayList(); } return this.mode; } /** * Ruft den Wert der level-Eigenschaft ab. * */ public boolean isLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * */ public void setLevel(boolean value) { this.level = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/TrackAttributes.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r TrackAttributes complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TrackAttributes", propOrder = { "trackInformation", "videoAttributes", "audioAttributes", "metadataAttributes", "extension" }) public class TrackAttributes { @XmlElement(name = "TrackInformation", required = true) protected TrackInformation trackInformation; @XmlElement(name = "VideoAttributes") protected VideoAttributes videoAttributes; @XmlElement(name = "AudioAttributes") protected AudioAttributes audioAttributes; @XmlElement(name = "MetadataAttributes") protected MetadataAttributes metadataAttributes; @XmlElement(name = "Extension") protected TrackAttributesExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der trackInformation-Eigenschaft ab. * * @return possible object is {@link TrackInformation } * */ public TrackInformation getTrackInformation() { return trackInformation; } /** * Legt den Wert der trackInformation-Eigenschaft fest. * * @param value * allowed object is {@link TrackInformation } * */ public void setTrackInformation(TrackInformation value) { this.trackInformation = value; } /** * Ruft den Wert der videoAttributes-Eigenschaft ab. * * @return possible object is {@link VideoAttributes } * */ public VideoAttributes getVideoAttributes() { return videoAttributes; } /** * Legt den Wert der videoAttributes-Eigenschaft fest. * * @param value * allowed object is {@link VideoAttributes } * */ public void setVideoAttributes(VideoAttributes value) { this.videoAttributes = value; } /** * Ruft den Wert der audioAttributes-Eigenschaft ab. * * @return possible object is {@link AudioAttributes } * */ public AudioAttributes getAudioAttributes() { return audioAttributes; } /** * Legt den Wert der audioAttributes-Eigenschaft fest. * * @param value * allowed object is {@link AudioAttributes } * */ public void setAudioAttributes(AudioAttributes value) { this.audioAttributes = value; } /** * Ruft den Wert der metadataAttributes-Eigenschaft ab. * * @return possible object is {@link MetadataAttributes } * */ public MetadataAttributes getMetadataAttributes() { return metadataAttributes; } /** * Legt den Wert der metadataAttributes-Eigenschaft fest. * * @param value * allowed object is {@link MetadataAttributes } * */ public void setMetadataAttributes(MetadataAttributes value) { this.metadataAttributes = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link TrackAttributesExtension } * */ public TrackAttributesExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link TrackAttributesExtension } * */ public void setExtension(TrackAttributesExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/TrackAttributesExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r TrackAttributesExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TrackAttributesExtension", propOrder = { "any" }) public class TrackAttributesExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/TrackConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r TrackConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TrackConfiguration", propOrder = { "trackType", "description", "any" }) public class TrackConfiguration { @XmlElement(name = "TrackType", required = true) protected TrackType trackType; @XmlElement(name = "Description", required = true) protected String description; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der trackType-Eigenschaft ab. * * @return possible object is {@link TrackType } * */ public TrackType getTrackType() { return trackType; } /** * Legt den Wert der trackType-Eigenschaft fest. * * @param value * allowed object is {@link TrackType } * */ public void setTrackType(TrackType value) { this.trackType = value; } /** * Ruft den Wert der description-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDescription() { return description; } /** * Legt den Wert der description-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/TrackInformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r TrackInformation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TrackInformation", propOrder = { "trackToken", "trackType", "description", "dataFrom", "dataTo", "any" }) public class TrackInformation { @XmlElement(name = "TrackToken", required = true) protected String trackToken; @XmlElement(name = "TrackType", required = true) protected TrackType trackType; @XmlElement(name = "Description", required = true) protected String description; @XmlElement(name = "DataFrom", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dataFrom; @XmlElement(name = "DataTo", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dataTo; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der trackToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getTrackToken() { return trackToken; } /** * Legt den Wert der trackToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setTrackToken(String value) { this.trackToken = value; } /** * Ruft den Wert der trackType-Eigenschaft ab. * * @return possible object is {@link TrackType } * */ public TrackType getTrackType() { return trackType; } /** * Legt den Wert der trackType-Eigenschaft fest. * * @param value * allowed object is {@link TrackType } * */ public void setTrackType(TrackType value) { this.trackType = value; } /** * Ruft den Wert der description-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getDescription() { return description; } /** * Legt den Wert der description-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Ruft den Wert der dataFrom-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDataFrom() { return dataFrom; } /** * Legt den Wert der dataFrom-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setDataFrom(XMLGregorianCalendar value) { this.dataFrom = value; } /** * Ruft den Wert der dataTo-Eigenschaft ab. * * @return possible object is {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDataTo() { return dataTo; } /** * Legt den Wert der dataTo-Eigenschaft fest. * * @param value * allowed object is {@link XMLGregorianCalendar } * */ public void setDataTo(XMLGregorianCalendar value) { this.dataTo = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/TrackType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r TrackType. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "TrackType") @XmlEnum public enum TrackType { @XmlEnumValue("Video") VIDEO("Video"), @XmlEnumValue("Audio") AUDIO("Audio"), @XmlEnumValue("Metadata") METADATA("Metadata"), /** * Placeholder for future extension. * */ @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; TrackType(String v) { value = v; } public String value() { return value; } public static TrackType fromValue(String v) { for (TrackType c : TrackType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/Transformation.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r Transformation complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Transformation", propOrder = { "translate", "scale", "extension" }) public class Transformation { @XmlElement(name = "Translate") protected Vector translate; @XmlElement(name = "Scale") protected Vector scale; @XmlElement(name = "Extension") protected TransformationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der translate-Eigenschaft ab. * * @return possible object is {@link Vector } * */ public Vector getTranslate() { return translate; } /** * Legt den Wert der translate-Eigenschaft fest. * * @param value * allowed object is {@link Vector } * */ public void setTranslate(Vector value) { this.translate = value; } /** * Ruft den Wert der scale-Eigenschaft ab. * * @return possible object is {@link Vector } * */ public Vector getScale() { return scale; } /** * Legt den Wert der scale-Eigenschaft fest. * * @param value * allowed object is {@link Vector } * */ public void setScale(Vector value) { this.scale = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link TransformationExtension } * */ public TransformationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link TransformationExtension } * */ public void setExtension(TransformationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/TransformationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r TransformationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TransformationExtension", propOrder = { "any" }) public class TransformationExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/Transport.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Transport complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Transport", propOrder = { "protocol", "tunnel" }) public class Transport { @XmlElement(name = "Protocol", required = true) protected TransportProtocol protocol; @XmlElement(name = "Tunnel") protected Transport tunnel; /** * Ruft den Wert der protocol-Eigenschaft ab. * * @return possible object is {@link TransportProtocol } * */ public TransportProtocol getProtocol() { return protocol; } /** * Legt den Wert der protocol-Eigenschaft fest. * * @param value * allowed object is {@link TransportProtocol } * */ public void setProtocol(TransportProtocol value) { this.protocol = value; } /** * Ruft den Wert der tunnel-Eigenschaft ab. * * @return possible object is {@link Transport } * */ public Transport getTunnel() { return tunnel; } /** * Legt den Wert der tunnel-Eigenschaft fest. * * @param value * allowed object is {@link Transport } * */ public void setTunnel(Transport value) { this.tunnel = value; } } ================================================ FILE: src/org/onvif/ver10/schema/TransportProtocol.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r TransportProtocol. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "TransportProtocol") @XmlEnum public enum TransportProtocol { UDP, TCP, RTSP, HTTP; public String value() { return name(); } public static TransportProtocol fromValue(String v) { return valueOf(v); } } ================================================ FILE: src/org/onvif/ver10/schema/User.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r User complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "User", propOrder = { "username", "password", "userLevel", "extension" }) public class User { @XmlElement(name = "Username", required = true) protected String username; @XmlElement(name = "Password") protected String password; @XmlElement(name = "UserLevel", required = true) protected UserLevel userLevel; @XmlElement(name = "Extension") protected UserExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der username-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getUsername() { return username; } /** * Legt den Wert der username-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setUsername(String value) { this.username = value; } /** * Ruft den Wert der password-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPassword() { return password; } /** * Legt den Wert der password-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPassword(String value) { this.password = value; } /** * Ruft den Wert der userLevel-Eigenschaft ab. * * @return possible object is {@link UserLevel } * */ public UserLevel getUserLevel() { return userLevel; } /** * Legt den Wert der userLevel-Eigenschaft fest. * * @param value * allowed object is {@link UserLevel } * */ public void setUserLevel(UserLevel value) { this.userLevel = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link UserExtension } * */ public UserExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link UserExtension } * */ public void setExtension(UserExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/UserExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r UserExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UserExtension", propOrder = { "any" }) public class UserExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/UserLevel.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r UserLevel. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "UserLevel") @XmlEnum public enum UserLevel { @XmlEnumValue("Administrator") ADMINISTRATOR("Administrator"), @XmlEnumValue("Operator") OPERATOR("Operator"), @XmlEnumValue("User") USER("User"), @XmlEnumValue("Anonymous") ANONYMOUS("Anonymous"), @XmlEnumValue("Extended") EXTENDED("Extended"); private final String value; UserLevel(String v) { value = v; } public String value() { return value; } public static UserLevel fromValue(String v) { for (UserLevel c : UserLevel.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/Vector.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Vector complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Vector") public class Vector { @XmlAttribute(name = "x") protected Float x; @XmlAttribute(name = "y") protected Float y; /** * Ruft den Wert der x-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getX() { return x; } /** * Legt den Wert der x-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setX(Float value) { this.x = value; } /** * Ruft den Wert der y-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getY() { return y; } /** * Legt den Wert der y-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setY(Float value) { this.y = value; } } ================================================ FILE: src/org/onvif/ver10/schema/Vector1D.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Vector1D complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Vector1D") public class Vector1D { @XmlAttribute(name = "x", required = true) protected float x; @XmlAttribute(name = "space") @XmlSchemaType(name = "anyURI") protected String space; /** * Ruft den Wert der x-Eigenschaft ab. * */ public float getX() { return x; } /** * Legt den Wert der x-Eigenschaft fest. * */ public void setX(float value) { this.x = value; } /** * Ruft den Wert der space-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSpace() { return space; } /** * Legt den Wert der space-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSpace(String value) { this.space = value; } } ================================================ FILE: src/org/onvif/ver10/schema/Vector2D.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r Vector2D complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Vector2D") public class Vector2D { @XmlAttribute(name = "x", required = true) protected float x; @XmlAttribute(name = "y", required = true) protected float y; @XmlAttribute(name = "space") @XmlSchemaType(name = "anyURI") protected String space; /** * Ruft den Wert der x-Eigenschaft ab. * */ public float getX() { return x; } /** * Legt den Wert der x-Eigenschaft fest. * */ public void setX(float value) { this.x = value; } /** * Ruft den Wert der y-Eigenschaft ab. * */ public float getY() { return y; } /** * Legt den Wert der y-Eigenschaft fest. * */ public void setY(float value) { this.y = value; } /** * Ruft den Wert der space-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSpace() { return space; } /** * Legt den Wert der space-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSpace(String value) { this.space = value; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoAnalyticsConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoAnalyticsConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoAnalyticsConfiguration", propOrder = { "analyticsEngineConfiguration", "ruleEngineConfiguration", "any" }) public class VideoAnalyticsConfiguration extends ConfigurationEntity { @XmlElement(name = "AnalyticsEngineConfiguration", required = true) protected AnalyticsEngineConfiguration analyticsEngineConfiguration; @XmlElement(name = "RuleEngineConfiguration", required = true) protected RuleEngineConfiguration ruleEngineConfiguration; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der analyticsEngineConfiguration-Eigenschaft ab. * * @return possible object is {@link AnalyticsEngineConfiguration } * */ public AnalyticsEngineConfiguration getAnalyticsEngineConfiguration() { return analyticsEngineConfiguration; } /** * Legt den Wert der analyticsEngineConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link AnalyticsEngineConfiguration } * */ public void setAnalyticsEngineConfiguration(AnalyticsEngineConfiguration value) { this.analyticsEngineConfiguration = value; } /** * Ruft den Wert der ruleEngineConfiguration-Eigenschaft ab. * * @return possible object is {@link RuleEngineConfiguration } * */ public RuleEngineConfiguration getRuleEngineConfiguration() { return ruleEngineConfiguration; } /** * Legt den Wert der ruleEngineConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link RuleEngineConfiguration } * */ public void setRuleEngineConfiguration(RuleEngineConfiguration value) { this.ruleEngineConfiguration = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoAnalyticsStream.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElements; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r VideoAnalyticsStream complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoAnalyticsStream", propOrder = { "frameOrExtension" }) public class VideoAnalyticsStream { @XmlElements({ @XmlElement(name = "Frame", type = Frame.class), @XmlElement(name = "Extension", type = VideoAnalyticsStreamExtension.class) }) protected List frameOrExtension; /** * Gets the value of the frameOrExtension property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the frameOrExtension property. * *

* For example, to add a new item, do as follows: * *

	 * getFrameOrExtension().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Frame } {@link VideoAnalyticsStreamExtension } * * */ public List getFrameOrExtension() { if (frameOrExtension == null) { frameOrExtension = new ArrayList(); } return this.frameOrExtension; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoAnalyticsStreamExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoAnalyticsStreamExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoAnalyticsStreamExtension", propOrder = { "any" }) public class VideoAnalyticsStreamExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoAttributes.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoAttributes complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoAttributes", propOrder = { "bitrate", "width", "height", "encoding", "framerate", "any" }) public class VideoAttributes { @XmlElement(name = "Bitrate") protected Integer bitrate; @XmlElement(name = "Width") protected int width; @XmlElement(name = "Height") protected int height; @XmlElement(name = "Encoding", required = true) protected VideoEncoding encoding; @XmlElement(name = "Framerate") protected float framerate; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der bitrate-Eigenschaft ab. * * @return possible object is {@link Integer } * */ public Integer getBitrate() { return bitrate; } /** * Legt den Wert der bitrate-Eigenschaft fest. * * @param value * allowed object is {@link Integer } * */ public void setBitrate(Integer value) { this.bitrate = value; } /** * Ruft den Wert der width-Eigenschaft ab. * */ public int getWidth() { return width; } /** * Legt den Wert der width-Eigenschaft fest. * */ public void setWidth(int value) { this.width = value; } /** * Ruft den Wert der height-Eigenschaft ab. * */ public int getHeight() { return height; } /** * Legt den Wert der height-Eigenschaft fest. * */ public void setHeight(int value) { this.height = value; } /** * Ruft den Wert der encoding-Eigenschaft ab. * * @return possible object is {@link VideoEncoding } * */ public VideoEncoding getEncoding() { return encoding; } /** * Legt den Wert der encoding-Eigenschaft fest. * * @param value * allowed object is {@link VideoEncoding } * */ public void setEncoding(VideoEncoding value) { this.encoding = value; } /** * Ruft den Wert der framerate-Eigenschaft ab. * */ public float getFramerate() { return framerate; } /** * Legt den Wert der framerate-Eigenschaft fest. * */ public void setFramerate(float value) { this.framerate = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoDecoderConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r VideoDecoderConfigurationOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoDecoderConfigurationOptions", propOrder = { "jpegDecOptions", "h264DecOptions", "mpeg4DecOptions", "extension" }) public class VideoDecoderConfigurationOptions { @XmlElement(name = "JpegDecOptions") protected JpegDecOptions jpegDecOptions; @XmlElement(name = "H264DecOptions") protected H264DecOptions h264DecOptions; @XmlElement(name = "Mpeg4DecOptions") protected Mpeg4DecOptions mpeg4DecOptions; @XmlElement(name = "Extension") protected VideoDecoderConfigurationOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der jpegDecOptions-Eigenschaft ab. * * @return possible object is {@link JpegDecOptions } * */ public JpegDecOptions getJpegDecOptions() { return jpegDecOptions; } /** * Legt den Wert der jpegDecOptions-Eigenschaft fest. * * @param value * allowed object is {@link JpegDecOptions } * */ public void setJpegDecOptions(JpegDecOptions value) { this.jpegDecOptions = value; } /** * Ruft den Wert der h264DecOptions-Eigenschaft ab. * * @return possible object is {@link H264DecOptions } * */ public H264DecOptions getH264DecOptions() { return h264DecOptions; } /** * Legt den Wert der h264DecOptions-Eigenschaft fest. * * @param value * allowed object is {@link H264DecOptions } * */ public void setH264DecOptions(H264DecOptions value) { this.h264DecOptions = value; } /** * Ruft den Wert der mpeg4DecOptions-Eigenschaft ab. * * @return possible object is {@link Mpeg4DecOptions } * */ public Mpeg4DecOptions getMpeg4DecOptions() { return mpeg4DecOptions; } /** * Legt den Wert der mpeg4DecOptions-Eigenschaft fest. * * @param value * allowed object is {@link Mpeg4DecOptions } * */ public void setMpeg4DecOptions(Mpeg4DecOptions value) { this.mpeg4DecOptions = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link VideoDecoderConfigurationOptionsExtension } * */ public VideoDecoderConfigurationOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link VideoDecoderConfigurationOptionsExtension } * */ public void setExtension(VideoDecoderConfigurationOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoDecoderConfigurationOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoDecoderConfigurationOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoDecoderConfigurationOptionsExtension", propOrder = { "any" }) public class VideoDecoderConfigurationOptionsExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoEncoder2Configuration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr VideoEncoder2Configuration complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="VideoEncoder2Configuration">
 *   <complexContent>
 *     <extension base="{http://www.onvif.org/ver10/schema}ConfigurationEntity">
 *       <sequence>
 *         <element name="Encoding" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Resolution" type="{http://www.onvif.org/ver10/schema}VideoResolution2"/>
 *         <element name="RateControl" type="{http://www.onvif.org/ver10/schema}VideoRateControl2" minOccurs="0"/>
 *         <element name="Multicast" type="{http://www.onvif.org/ver10/schema}MulticastConfiguration" minOccurs="0"/>
 *         <element name="Quality" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="GovLength" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="Profile" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <anyAttribute processContents='lax'/>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoEncoder2Configuration", propOrder = { "encoding", "resolution", "rateControl", "multicast", "quality", "any" }) public class VideoEncoder2Configuration extends ConfigurationEntity { @XmlElement(name = "Encoding", required = true) protected String encoding; @XmlElement(name = "Resolution", required = true) protected VideoResolution2 resolution; @XmlElement(name = "RateControl") protected VideoRateControl2 rateControl; @XmlElement(name = "Multicast") protected MulticastConfiguration multicast; @XmlElement(name = "Quality") protected float quality; @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "GovLength") protected Integer govLength; @XmlAttribute(name = "Profile") protected String profile; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der encoding-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getEncoding() { return encoding; } /** * Legt den Wert der encoding-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setEncoding(String value) { this.encoding = value; } /** * Ruft den Wert der resolution-Eigenschaft ab. * * @return * possible object is * {@link VideoResolution2 } * */ public VideoResolution2 getResolution() { return resolution; } /** * Legt den Wert der resolution-Eigenschaft fest. * * @param value * allowed object is * {@link VideoResolution2 } * */ public void setResolution(VideoResolution2 value) { this.resolution = value; } /** * Ruft den Wert der rateControl-Eigenschaft ab. * * @return * possible object is * {@link VideoRateControl2 } * */ public VideoRateControl2 getRateControl() { return rateControl; } /** * Legt den Wert der rateControl-Eigenschaft fest. * * @param value * allowed object is * {@link VideoRateControl2 } * */ public void setRateControl(VideoRateControl2 value) { this.rateControl = value; } /** * Ruft den Wert der multicast-Eigenschaft ab. * * @return * possible object is * {@link MulticastConfiguration } * */ public MulticastConfiguration getMulticast() { return multicast; } /** * Legt den Wert der multicast-Eigenschaft fest. * * @param value * allowed object is * {@link MulticastConfiguration } * */ public void setMulticast(MulticastConfiguration value) { this.multicast = value; } /** * Ruft den Wert der quality-Eigenschaft ab. * */ public float getQuality() { return quality; } /** * Legt den Wert der quality-Eigenschaft fest. * */ public void setQuality(float value) { this.quality = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der govLength-Eigenschaft ab. * * @return * possible object is * {@link Integer } * */ public Integer getGovLength() { return govLength; } /** * Legt den Wert der govLength-Eigenschaft fest. * * @param value * allowed object is * {@link Integer } * */ public void setGovLength(Integer value) { this.govLength = value; } /** * Ruft den Wert der profile-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getProfile() { return profile; } /** * Legt den Wert der profile-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setProfile(String value) { this.profile = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoEncoder2ConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr VideoEncoder2ConfigurationOptions complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="VideoEncoder2ConfigurationOptions">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Encoding" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="QualityRange" type="{http://www.onvif.org/ver10/schema}IntRange"/>
 *         <element name="ResolutionsAvailable" type="{http://www.onvif.org/ver10/schema}VideoResolution2" maxOccurs="unbounded"/>
 *         <element name="BitrateRange" type="{http://www.onvif.org/ver10/schema}IntRange"/>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="GovLengthRange" type="{http://www.onvif.org/ver10/schema}IntAttrList" />
 *       <attribute name="FrameRatesSupported" type="{http://www.onvif.org/ver10/schema}FloatAttrList" />
 *       <attribute name="ProfilesSupported" type="{http://www.onvif.org/ver10/schema}StringAttrList" />
 *       <attribute name="ConstantBitRateSupported" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="GuaranteedInstances" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoEncoder2ConfigurationOptions", propOrder = { "encoding", "qualityRange", "resolutionsAvailable", "bitrateRange", "any" }) public class VideoEncoder2ConfigurationOptions { @XmlElement(name = "Encoding", required = true) protected String encoding; @XmlElement(name = "QualityRange", required = true) protected IntRange qualityRange; @XmlElement(name = "ResolutionsAvailable", required = true) protected List resolutionsAvailable; @XmlElement(name = "BitrateRange", required = true) protected IntRange bitrateRange; @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "GovLengthRange") protected List govLengthRange; @XmlAttribute(name = "FrameRatesSupported") protected List frameRatesSupported; @XmlAttribute(name = "ProfilesSupported") protected List profilesSupported; @XmlAttribute(name = "ConstantBitRateSupported") protected Boolean constantBitRateSupported; @XmlAttribute(name = "GuaranteedInstances") protected Integer guaranteedInstances; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der encoding-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getEncoding() { return encoding; } /** * Legt den Wert der encoding-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setEncoding(String value) { this.encoding = value; } /** * Ruft den Wert der qualityRange-Eigenschaft ab. * * @return * possible object is * {@link IntRange } * */ public IntRange getQualityRange() { return qualityRange; } /** * Legt den Wert der qualityRange-Eigenschaft fest. * * @param value * allowed object is * {@link IntRange } * */ public void setQualityRange(IntRange value) { this.qualityRange = value; } /** * Gets the value of the resolutionsAvailable property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the resolutionsAvailable property. * *

* For example, to add a new item, do as follows: *

     *    getResolutionsAvailable().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VideoResolution2 } * * */ public List getResolutionsAvailable() { if (resolutionsAvailable == null) { resolutionsAvailable = new ArrayList(); } return this.resolutionsAvailable; } /** * Ruft den Wert der bitrateRange-Eigenschaft ab. * * @return * possible object is * {@link IntRange } * */ public IntRange getBitrateRange() { return bitrateRange; } /** * Legt den Wert der bitrateRange-Eigenschaft fest. * * @param value * allowed object is * {@link IntRange } * */ public void setBitrateRange(IntRange value) { this.bitrateRange = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets the value of the govLengthRange property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the govLengthRange property. * *

* For example, to add a new item, do as follows: *

     *    getGovLengthRange().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Integer } * * */ public List getGovLengthRange() { if (govLengthRange == null) { govLengthRange = new ArrayList(); } return this.govLengthRange; } /** * Gets the value of the frameRatesSupported property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the frameRatesSupported property. * *

* For example, to add a new item, do as follows: *

     *    getFrameRatesSupported().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Float } * * */ public List getFrameRatesSupported() { if (frameRatesSupported == null) { frameRatesSupported = new ArrayList(); } return this.frameRatesSupported; } /** * Gets the value of the profilesSupported property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the profilesSupported property. * *

* For example, to add a new item, do as follows: *

     *    getProfilesSupported().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getProfilesSupported() { if (profilesSupported == null) { profilesSupported = new ArrayList(); } return this.profilesSupported; } /** * Ruft den Wert der constantBitRateSupported-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isConstantBitRateSupported() { return constantBitRateSupported; } /** * Legt den Wert der constantBitRateSupported-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setConstantBitRateSupported(Boolean value) { this.constantBitRateSupported = value; } /** * Ruft den Wert der guaranteedInstances-Eigenschaft ab. * * @return * possible object is * {@link Integer } * */ public Integer getGuaranteedInstances() { return guaranteedInstances; } /** * Legt den Wert der guaranteedInstances-Eigenschaft fest. * * @param value * allowed object is * {@link Integer } * */ public void setGuaranteedInstances(Integer value) { this.guaranteedInstances = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoEncoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoEncoderConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoEncoderConfiguration", propOrder = { "encoding", "resolution", "quality", "rateControl", "mpeg4", "h264", "multicast", "sessionTimeout", "any" }) public class VideoEncoderConfiguration extends ConfigurationEntity { @XmlElement(name = "Encoding", required = true) protected VideoEncoding encoding; @XmlElement(name = "Resolution", required = true) protected VideoResolution resolution; @XmlElement(name = "Quality") protected float quality; @XmlElement(name = "RateControl") protected VideoRateControl rateControl; @XmlElement(name = "MPEG4") protected Mpeg4Configuration mpeg4; @XmlElement(name = "H264") protected H264Configuration h264; @XmlElement(name = "Multicast", required = true) protected MulticastConfiguration multicast; @XmlElement(name = "SessionTimeout", required = true) protected Duration sessionTimeout; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der encoding-Eigenschaft ab. * * @return possible object is {@link VideoEncoding } * */ public VideoEncoding getEncoding() { return encoding; } /** * Legt den Wert der encoding-Eigenschaft fest. * * @param value * allowed object is {@link VideoEncoding } * */ public void setEncoding(VideoEncoding value) { this.encoding = value; } /** * Ruft den Wert der resolution-Eigenschaft ab. * * @return possible object is {@link VideoResolution } * */ public VideoResolution getResolution() { return resolution; } /** * Legt den Wert der resolution-Eigenschaft fest. * * @param value * allowed object is {@link VideoResolution } * */ public void setResolution(VideoResolution value) { this.resolution = value; } /** * Ruft den Wert der quality-Eigenschaft ab. * */ public float getQuality() { return quality; } /** * Legt den Wert der quality-Eigenschaft fest. * */ public void setQuality(float value) { this.quality = value; } /** * Ruft den Wert der rateControl-Eigenschaft ab. * * @return possible object is {@link VideoRateControl } * */ public VideoRateControl getRateControl() { return rateControl; } /** * Legt den Wert der rateControl-Eigenschaft fest. * * @param value * allowed object is {@link VideoRateControl } * */ public void setRateControl(VideoRateControl value) { this.rateControl = value; } /** * Ruft den Wert der mpeg4-Eigenschaft ab. * * @return possible object is {@link Mpeg4Configuration } * */ public Mpeg4Configuration getMPEG4() { return mpeg4; } /** * Legt den Wert der mpeg4-Eigenschaft fest. * * @param value * allowed object is {@link Mpeg4Configuration } * */ public void setMPEG4(Mpeg4Configuration value) { this.mpeg4 = value; } /** * Ruft den Wert der h264-Eigenschaft ab. * * @return possible object is {@link H264Configuration } * */ public H264Configuration getH264() { return h264; } /** * Legt den Wert der h264-Eigenschaft fest. * * @param value * allowed object is {@link H264Configuration } * */ public void setH264(H264Configuration value) { this.h264 = value; } /** * Ruft den Wert der multicast-Eigenschaft ab. * * @return possible object is {@link MulticastConfiguration } * */ public MulticastConfiguration getMulticast() { return multicast; } /** * Legt den Wert der multicast-Eigenschaft fest. * * @param value * allowed object is {@link MulticastConfiguration } * */ public void setMulticast(MulticastConfiguration value) { this.multicast = value; } /** * Ruft den Wert der sessionTimeout-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getSessionTimeout() { return sessionTimeout; } /** * Legt den Wert der sessionTimeout-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setSessionTimeout(Duration value) { this.sessionTimeout = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoEncoderConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r VideoEncoderConfigurationOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoEncoderConfigurationOptions", propOrder = { "qualityRange", "jpeg", "mpeg4", "h264", "extension" }) public class VideoEncoderConfigurationOptions { @XmlElement(name = "QualityRange", required = true) protected IntRange qualityRange; @XmlElement(name = "JPEG") protected JpegOptions jpeg; @XmlElement(name = "MPEG4") protected Mpeg4Options mpeg4; @XmlElement(name = "H264") protected H264Options h264; @XmlElement(name = "Extension") protected VideoEncoderOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der qualityRange-Eigenschaft ab. * * @return possible object is {@link IntRange } * */ public IntRange getQualityRange() { return qualityRange; } /** * Legt den Wert der qualityRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRange } * */ public void setQualityRange(IntRange value) { this.qualityRange = value; } /** * Ruft den Wert der jpeg-Eigenschaft ab. * * @return possible object is {@link JpegOptions } * */ public JpegOptions getJPEG() { return jpeg; } /** * Legt den Wert der jpeg-Eigenschaft fest. * * @param value * allowed object is {@link JpegOptions } * */ public void setJPEG(JpegOptions value) { this.jpeg = value; } /** * Ruft den Wert der mpeg4-Eigenschaft ab. * * @return possible object is {@link Mpeg4Options } * */ public Mpeg4Options getMPEG4() { return mpeg4; } /** * Legt den Wert der mpeg4-Eigenschaft fest. * * @param value * allowed object is {@link Mpeg4Options } * */ public void setMPEG4(Mpeg4Options value) { this.mpeg4 = value; } /** * Ruft den Wert der h264-Eigenschaft ab. * * @return possible object is {@link H264Options } * */ public H264Options getH264() { return h264; } /** * Legt den Wert der h264-Eigenschaft fest. * * @param value * allowed object is {@link H264Options } * */ public void setH264(H264Options value) { this.h264 = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link VideoEncoderOptionsExtension } * */ public VideoEncoderOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link VideoEncoderOptionsExtension } * */ public void setExtension(VideoEncoderOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoEncoderOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoEncoderOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoEncoderOptionsExtension", propOrder = { "any", "jpeg", "mpeg4", "h264", "extension" }) public class VideoEncoderOptionsExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "JPEG") protected JpegOptions2 jpeg; @XmlElement(name = "MPEG4") protected Mpeg4Options2 mpeg4; @XmlElement(name = "H264") protected H264Options2 h264; @XmlElement(name = "Extension") protected VideoEncoderOptionsExtension2 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der jpeg-Eigenschaft ab. * * @return possible object is {@link JpegOptions2 } * */ public JpegOptions2 getJPEG() { return jpeg; } /** * Legt den Wert der jpeg-Eigenschaft fest. * * @param value * allowed object is {@link JpegOptions2 } * */ public void setJPEG(JpegOptions2 value) { this.jpeg = value; } /** * Ruft den Wert der mpeg4-Eigenschaft ab. * * @return possible object is {@link Mpeg4Options2 } * */ public Mpeg4Options2 getMPEG4() { return mpeg4; } /** * Legt den Wert der mpeg4-Eigenschaft fest. * * @param value * allowed object is {@link Mpeg4Options2 } * */ public void setMPEG4(Mpeg4Options2 value) { this.mpeg4 = value; } /** * Ruft den Wert der h264-Eigenschaft ab. * * @return possible object is {@link H264Options2 } * */ public H264Options2 getH264() { return h264; } /** * Legt den Wert der h264-Eigenschaft fest. * * @param value * allowed object is {@link H264Options2 } * */ public void setH264(H264Options2 value) { this.h264 = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link VideoEncoderOptionsExtension2 } * */ public VideoEncoderOptionsExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link VideoEncoderOptionsExtension2 } * */ public void setExtension(VideoEncoderOptionsExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoEncoderOptionsExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoEncoderOptionsExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoEncoderOptionsExtension2", propOrder = { "any" }) public class VideoEncoderOptionsExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoEncoding.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r VideoEncoding. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "VideoEncoding") @XmlEnum public enum VideoEncoding { JPEG("JPEG"), @XmlEnumValue("MPEG4") MPEG_4("MPEG4"), @XmlEnumValue("H264") H_264("H264"); private final String value; VideoEncoding(String v) { value = v; } public String value() { return value; } public static VideoEncoding fromValue(String v) { for (VideoEncoding c : VideoEncoding.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/VideoEncodingMimeNames.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr VideoEncodingMimeNames. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

*

 * <simpleType name="VideoEncodingMimeNames">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="JPEG"/>
 *     <enumeration value="MPV4-ES"/>
 *     <enumeration value="H264"/>
 *     <enumeration value="H265"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "VideoEncodingMimeNames") @XmlEnum public enum VideoEncodingMimeNames { JPEG("JPEG"), @XmlEnumValue("MPV4-ES") MPV_4_ES("MPV4-ES"), @XmlEnumValue("H264") H_264("H264"), @XmlEnumValue("H265") H_265("H265"); private final String value; VideoEncodingMimeNames(String v) { value = v; } public String value() { return value; } public static VideoEncodingMimeNames fromValue(String v) { for (VideoEncodingMimeNames c: VideoEncodingMimeNames.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/VideoEncodingProfiles.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr VideoEncodingProfiles. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

*

 * <simpleType name="VideoEncodingProfiles">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="Simple"/>
 *     <enumeration value="AdvancedSimple"/>
 *     <enumeration value="Baseline"/>
 *     <enumeration value="Main"/>
 *     <enumeration value="Main10"/>
 *     <enumeration value="Extended"/>
 *     <enumeration value="High"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "VideoEncodingProfiles") @XmlEnum public enum VideoEncodingProfiles { @XmlEnumValue("Simple") SIMPLE("Simple"), @XmlEnumValue("AdvancedSimple") ADVANCED_SIMPLE("AdvancedSimple"), @XmlEnumValue("Baseline") BASELINE("Baseline"), @XmlEnumValue("Main") MAIN("Main"), @XmlEnumValue("Main10") MAIN_10("Main10"), @XmlEnumValue("Extended") EXTENDED("Extended"), @XmlEnumValue("High") HIGH("High"); private final String value; VideoEncodingProfiles(String v) { value = v; } public String value() { return value; } public static VideoEncodingProfiles fromValue(String v) { for (VideoEncodingProfiles c: VideoEncodingProfiles.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver10/schema/VideoOutput.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * Representation of a physical video outputs. * *

* Java-Klasse f�r VideoOutput complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoOutput", propOrder = { "layout", "resolution", "refreshRate", "aspectRatio", "extension" }) public class VideoOutput extends DeviceEntity { @XmlElement(name = "Layout", required = true) protected Layout layout; @XmlElement(name = "Resolution") protected VideoResolution resolution; @XmlElement(name = "RefreshRate") protected Float refreshRate; @XmlElement(name = "AspectRatio") protected Float aspectRatio; @XmlElement(name = "Extension") protected VideoOutputExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der layout-Eigenschaft ab. * * @return possible object is {@link Layout } * */ public Layout getLayout() { return layout; } /** * Legt den Wert der layout-Eigenschaft fest. * * @param value * allowed object is {@link Layout } * */ public void setLayout(Layout value) { this.layout = value; } /** * Ruft den Wert der resolution-Eigenschaft ab. * * @return possible object is {@link VideoResolution } * */ public VideoResolution getResolution() { return resolution; } /** * Legt den Wert der resolution-Eigenschaft fest. * * @param value * allowed object is {@link VideoResolution } * */ public void setResolution(VideoResolution value) { this.resolution = value; } /** * Ruft den Wert der refreshRate-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getRefreshRate() { return refreshRate; } /** * Legt den Wert der refreshRate-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setRefreshRate(Float value) { this.refreshRate = value; } /** * Ruft den Wert der aspectRatio-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getAspectRatio() { return aspectRatio; } /** * Legt den Wert der aspectRatio-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setAspectRatio(Float value) { this.aspectRatio = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link VideoOutputExtension } * */ public VideoOutputExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link VideoOutputExtension } * */ public void setExtension(VideoOutputExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoOutputConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoOutputConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoOutputConfiguration", propOrder = { "outputToken", "any" }) public class VideoOutputConfiguration extends ConfigurationEntity { @XmlElement(name = "OutputToken", required = true) protected String outputToken; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der outputToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getOutputToken() { return outputToken; } /** * Legt den Wert der outputToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setOutputToken(String value) { this.outputToken = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoOutputConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoOutputConfigurationOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoOutputConfigurationOptions", propOrder = { "any" }) public class VideoOutputConfigurationOptions { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoOutputExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoOutputExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoOutputExtension", propOrder = { "any" }) public class VideoOutputExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoRateControl.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r VideoRateControl complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoRateControl", propOrder = { "frameRateLimit", "encodingInterval", "bitrateLimit" }) public class VideoRateControl { @XmlElement(name = "FrameRateLimit") protected int frameRateLimit; @XmlElement(name = "EncodingInterval") protected int encodingInterval; @XmlElement(name = "BitrateLimit") protected int bitrateLimit; /** * Ruft den Wert der frameRateLimit-Eigenschaft ab. * */ public int getFrameRateLimit() { return frameRateLimit; } /** * Legt den Wert der frameRateLimit-Eigenschaft fest. * */ public void setFrameRateLimit(int value) { this.frameRateLimit = value; } /** * Ruft den Wert der encodingInterval-Eigenschaft ab. * */ public int getEncodingInterval() { return encodingInterval; } /** * Legt den Wert der encodingInterval-Eigenschaft fest. * */ public void setEncodingInterval(int value) { this.encodingInterval = value; } /** * Ruft den Wert der bitrateLimit-Eigenschaft ab. * */ public int getBitrateLimit() { return bitrateLimit; } /** * Legt den Wert der bitrateLimit-Eigenschaft fest. * */ public void setBitrateLimit(int value) { this.bitrateLimit = value; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoRateControl2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr VideoRateControl2 complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="VideoRateControl2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="FrameRateLimit" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <element name="BitrateLimit" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="ConstantBitRate" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoRateControl2", propOrder = { "frameRateLimit", "bitrateLimit", "any" }) public class VideoRateControl2 { @XmlElement(name = "FrameRateLimit") protected float frameRateLimit; @XmlElement(name = "BitrateLimit") protected int bitrateLimit; @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "ConstantBitRate") protected Boolean constantBitRate; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der frameRateLimit-Eigenschaft ab. * */ public float getFrameRateLimit() { return frameRateLimit; } /** * Legt den Wert der frameRateLimit-Eigenschaft fest. * */ public void setFrameRateLimit(float value) { this.frameRateLimit = value; } /** * Ruft den Wert der bitrateLimit-Eigenschaft ab. * */ public int getBitrateLimit() { return bitrateLimit; } /** * Legt den Wert der bitrateLimit-Eigenschaft fest. * */ public void setBitrateLimit(int value) { this.bitrateLimit = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der constantBitRate-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isConstantBitRate() { return constantBitRate; } /** * Legt den Wert der constantBitRate-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setConstantBitRate(Boolean value) { this.constantBitRate = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoResolution.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r VideoResolution complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoResolution", propOrder = { "width", "height" }) public class VideoResolution { @XmlElement(name = "Width") protected int width; @XmlElement(name = "Height") protected int height; /** * Ruft den Wert der width-Eigenschaft ab. * */ public int getWidth() { return width; } /** * Legt den Wert der width-Eigenschaft fest. * */ public void setWidth(int value) { this.width = value; } /** * Ruft den Wert der height-Eigenschaft ab. * */ public int getHeight() { return height; } /** * Legt den Wert der height-Eigenschaft fest. * */ public void setHeight(int value) { this.height = value; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoResolution2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr VideoResolution2 complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="VideoResolution2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Width" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="Height" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoResolution2", propOrder = { "width", "height", "any" }) public class VideoResolution2 { @XmlElement(name = "Width") protected int width; @XmlElement(name = "Height") protected int height; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der width-Eigenschaft ab. * */ public int getWidth() { return width; } /** * Legt den Wert der width-Eigenschaft fest. * */ public void setWidth(int value) { this.width = value; } /** * Ruft den Wert der height-Eigenschaft ab. * */ public int getHeight() { return height; } /** * Legt den Wert der height-Eigenschaft fest. * */ public void setHeight(int value) { this.height = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoSource.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * Representation of a physical video input. * *

* Java-Klasse f�r VideoSource complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoSource", propOrder = { "framerate", "resolution", "imaging", "extension" }) public class VideoSource extends DeviceEntity { @XmlElement(name = "Framerate") protected float framerate; @XmlElement(name = "Resolution", required = true) protected VideoResolution resolution; @XmlElement(name = "Imaging") protected ImagingSettings imaging; @XmlElement(name = "Extension") protected VideoSourceExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der framerate-Eigenschaft ab. * */ public float getFramerate() { return framerate; } /** * Legt den Wert der framerate-Eigenschaft fest. * */ public void setFramerate(float value) { this.framerate = value; } /** * Ruft den Wert der resolution-Eigenschaft ab. * * @return possible object is {@link VideoResolution } * */ public VideoResolution getResolution() { return resolution; } /** * Legt den Wert der resolution-Eigenschaft fest. * * @param value * allowed object is {@link VideoResolution } * */ public void setResolution(VideoResolution value) { this.resolution = value; } /** * Ruft den Wert der imaging-Eigenschaft ab. * * @return possible object is {@link ImagingSettings } * */ public ImagingSettings getImaging() { return imaging; } /** * Legt den Wert der imaging-Eigenschaft fest. * * @param value * allowed object is {@link ImagingSettings } * */ public void setImaging(ImagingSettings value) { this.imaging = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link VideoSourceExtension } * */ public VideoSourceExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link VideoSourceExtension } * */ public void setExtension(VideoSourceExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoSourceConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoSourceConfiguration complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoSourceConfiguration", propOrder = { "sourceToken", "bounds", "any", "extension" }) public class VideoSourceConfiguration extends ConfigurationEntity { @XmlElement(name = "SourceToken", required = true) protected String sourceToken; @XmlElement(name = "Bounds", required = true) protected IntRectangle bounds; @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "Extension") protected VideoSourceConfigurationExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der sourceToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSourceToken() { return sourceToken; } /** * Legt den Wert der sourceToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSourceToken(String value) { this.sourceToken = value; } /** * Ruft den Wert der bounds-Eigenschaft ab. * * @return possible object is {@link IntRectangle } * */ public IntRectangle getBounds() { return bounds; } /** * Legt den Wert der bounds-Eigenschaft fest. * * @param value * allowed object is {@link IntRectangle } * */ public void setBounds(IntRectangle value) { this.bounds = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link VideoSourceConfigurationExtension } * */ public VideoSourceConfigurationExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link VideoSourceConfigurationExtension } * */ public void setExtension(VideoSourceConfigurationExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoSourceConfigurationExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r VideoSourceConfigurationExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoSourceConfigurationExtension", propOrder = { "rotate", "extension" }) public class VideoSourceConfigurationExtension { @XmlElement(name = "Rotate") protected Rotate rotate; @XmlElement(name = "Extension") protected VideoSourceConfigurationExtension2 extension; /** * Ruft den Wert der rotate-Eigenschaft ab. * * @return possible object is {@link Rotate } * */ public Rotate getRotate() { return rotate; } /** * Legt den Wert der rotate-Eigenschaft fest. * * @param value * allowed object is {@link Rotate } * */ public void setRotate(Rotate value) { this.rotate = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link VideoSourceConfigurationExtension2 } * */ public VideoSourceConfigurationExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link VideoSourceConfigurationExtension2 } * */ public void setExtension(VideoSourceConfigurationExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoSourceConfigurationExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoSourceConfigurationExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoSourceConfigurationExtension2", propOrder = { "any" }) public class VideoSourceConfigurationExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoSourceConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r VideoSourceConfigurationOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoSourceConfigurationOptions", propOrder = { "boundsRange", "videoSourceTokensAvailable", "extension" }) public class VideoSourceConfigurationOptions { @XmlElement(name = "BoundsRange", required = true) protected IntRectangleRange boundsRange; @XmlElement(name = "VideoSourceTokensAvailable", required = true) protected List videoSourceTokensAvailable; @XmlElement(name = "Extension") protected VideoSourceConfigurationOptionsExtension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der boundsRange-Eigenschaft ab. * * @return possible object is {@link IntRectangleRange } * */ public IntRectangleRange getBoundsRange() { return boundsRange; } /** * Legt den Wert der boundsRange-Eigenschaft fest. * * @param value * allowed object is {@link IntRectangleRange } * */ public void setBoundsRange(IntRectangleRange value) { this.boundsRange = value; } /** * Gets the value of the videoSourceTokensAvailable property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the videoSourceTokensAvailable property. * *

* For example, to add a new item, do as follows: * *

	 * getVideoSourceTokensAvailable().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } * * */ public List getVideoSourceTokensAvailable() { if (videoSourceTokensAvailable == null) { videoSourceTokensAvailable = new ArrayList(); } return this.videoSourceTokensAvailable; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link VideoSourceConfigurationOptionsExtension } * */ public VideoSourceConfigurationOptionsExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link VideoSourceConfigurationOptionsExtension } * */ public void setExtension(VideoSourceConfigurationOptionsExtension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoSourceConfigurationOptionsExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoSourceConfigurationOptionsExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoSourceConfigurationOptionsExtension", propOrder = { "any", "rotate", "extension" }) public class VideoSourceConfigurationOptionsExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "Rotate") protected RotateOptions rotate; @XmlElement(name = "Extension") protected VideoSourceConfigurationOptionsExtension2 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der rotate-Eigenschaft ab. * * @return possible object is {@link RotateOptions } * */ public RotateOptions getRotate() { return rotate; } /** * Legt den Wert der rotate-Eigenschaft fest. * * @param value * allowed object is {@link RotateOptions } * */ public void setRotate(RotateOptions value) { this.rotate = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link VideoSourceConfigurationOptionsExtension2 } * */ public VideoSourceConfigurationOptionsExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link VideoSourceConfigurationOptionsExtension2 } * */ public void setExtension(VideoSourceConfigurationOptionsExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoSourceConfigurationOptionsExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoSourceConfigurationOptionsExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoSourceConfigurationOptionsExtension2", propOrder = { "any" }) public class VideoSourceConfigurationOptionsExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoSourceExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoSourceExtension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoSourceExtension", propOrder = { "any", "imaging", "extension" }) public class VideoSourceExtension { @XmlAnyElement(lax = true) protected List any; @XmlElement(name = "Imaging") protected ImagingSettings20 imaging; @XmlElement(name = "Extension") protected VideoSourceExtension2 extension; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der imaging-Eigenschaft ab. * * @return possible object is {@link ImagingSettings20 } * */ public ImagingSettings20 getImaging() { return imaging; } /** * Legt den Wert der imaging-Eigenschaft fest. * * @param value * allowed object is {@link ImagingSettings20 } * */ public void setImaging(ImagingSettings20 value) { this.imaging = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link VideoSourceExtension2 } * */ public VideoSourceExtension2 getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link VideoSourceExtension2 } * */ public void setExtension(VideoSourceExtension2 value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/VideoSourceExtension2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r VideoSourceExtension2 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoSourceExtension2", propOrder = { "any" }) public class VideoSourceExtension2 { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/WhiteBalance.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r WhiteBalance complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WhiteBalance", propOrder = { "mode", "crGain", "cbGain", "any" }) public class WhiteBalance { @XmlElement(name = "Mode", required = true) protected WhiteBalanceMode mode; @XmlElement(name = "CrGain") protected float crGain; @XmlElement(name = "CbGain") protected float cbGain; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link WhiteBalanceMode } * */ public WhiteBalanceMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link WhiteBalanceMode } * */ public void setMode(WhiteBalanceMode value) { this.mode = value; } /** * Ruft den Wert der crGain-Eigenschaft ab. * */ public float getCrGain() { return crGain; } /** * Legt den Wert der crGain-Eigenschaft fest. * */ public void setCrGain(float value) { this.crGain = value; } /** * Ruft den Wert der cbGain-Eigenschaft ab. * */ public float getCbGain() { return cbGain; } /** * Legt den Wert der cbGain-Eigenschaft fest. * */ public void setCbGain(float value) { this.cbGain = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/WhiteBalance20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r WhiteBalance20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WhiteBalance20", propOrder = { "mode", "crGain", "cbGain", "extension" }) public class WhiteBalance20 { @XmlElement(name = "Mode", required = true) protected WhiteBalanceMode mode; @XmlElement(name = "CrGain") protected Float crGain; @XmlElement(name = "CbGain") protected Float cbGain; @XmlElement(name = "Extension") protected WhiteBalance20Extension extension; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link WhiteBalanceMode } * */ public WhiteBalanceMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link WhiteBalanceMode } * */ public void setMode(WhiteBalanceMode value) { this.mode = value; } /** * Ruft den Wert der crGain-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getCrGain() { return crGain; } /** * Legt den Wert der crGain-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setCrGain(Float value) { this.crGain = value; } /** * Ruft den Wert der cbGain-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getCbGain() { return cbGain; } /** * Legt den Wert der cbGain-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setCbGain(Float value) { this.cbGain = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link WhiteBalance20Extension } * */ public WhiteBalance20Extension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link WhiteBalance20Extension } * */ public void setExtension(WhiteBalance20Extension value) { this.extension = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver10/schema/WhiteBalance20Extension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r WhiteBalance20Extension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WhiteBalance20Extension", propOrder = { "any" }) public class WhiteBalance20Extension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/WhiteBalanceMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r WhiteBalanceMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "WhiteBalanceMode") @XmlEnum public enum WhiteBalanceMode { AUTO, MANUAL; public String value() { return name(); } public static WhiteBalanceMode fromValue(String v) { return valueOf(v); } } ================================================ FILE: src/org/onvif/ver10/schema/WhiteBalanceOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r WhiteBalanceOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WhiteBalanceOptions", propOrder = { "mode", "yrGain", "ybGain" }) public class WhiteBalanceOptions { @XmlElement(name = "Mode", required = true) protected List mode; @XmlElement(name = "YrGain", required = true) protected FloatRange yrGain; @XmlElement(name = "YbGain", required = true) protected FloatRange ybGain; /** * Gets the value of the mode property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the mode property. * *

* For example, to add a new item, do as follows: * *

	 * getMode().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link WhiteBalanceMode } * * */ public List getMode() { if (mode == null) { mode = new ArrayList(); } return this.mode; } /** * Ruft den Wert der yrGain-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getYrGain() { return yrGain; } /** * Legt den Wert der yrGain-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setYrGain(FloatRange value) { this.yrGain = value; } /** * Ruft den Wert der ybGain-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getYbGain() { return ybGain; } /** * Legt den Wert der ybGain-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setYbGain(FloatRange value) { this.ybGain = value; } } ================================================ FILE: src/org/onvif/ver10/schema/WhiteBalanceOptions20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r WhiteBalanceOptions20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WhiteBalanceOptions20", propOrder = { "mode", "yrGain", "ybGain", "extension" }) public class WhiteBalanceOptions20 { @XmlElement(name = "Mode", required = true) protected List mode; @XmlElement(name = "YrGain") protected FloatRange yrGain; @XmlElement(name = "YbGain") protected FloatRange ybGain; @XmlElement(name = "Extension") protected WhiteBalanceOptions20Extension extension; /** * Gets the value of the mode property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the mode property. * *

* For example, to add a new item, do as follows: * *

	 * getMode().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link WhiteBalanceMode } * * */ public List getMode() { if (mode == null) { mode = new ArrayList(); } return this.mode; } /** * Ruft den Wert der yrGain-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getYrGain() { return yrGain; } /** * Legt den Wert der yrGain-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setYrGain(FloatRange value) { this.yrGain = value; } /** * Ruft den Wert der ybGain-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getYbGain() { return ybGain; } /** * Legt den Wert der ybGain-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setYbGain(FloatRange value) { this.ybGain = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return possible object is {@link WhiteBalanceOptions20Extension } * */ public WhiteBalanceOptions20Extension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is {@link WhiteBalanceOptions20Extension } * */ public void setExtension(WhiteBalanceOptions20Extension value) { this.extension = value; } } ================================================ FILE: src/org/onvif/ver10/schema/WhiteBalanceOptions20Extension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

* Java-Klasse f�r WhiteBalanceOptions20Extension complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WhiteBalanceOptions20Extension", propOrder = { "any" }) public class WhiteBalanceOptions20Extension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link java.lang.Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver10/schema/WideDynamicMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r WideDynamicMode. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

* *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* */ @XmlType(name = "WideDynamicMode") @XmlEnum public enum WideDynamicMode { OFF, ON; public String value() { return name(); } public static WideDynamicMode fromValue(String v) { return valueOf(v); } } ================================================ FILE: src/org/onvif/ver10/schema/WideDynamicRange.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r WideDynamicRange complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WideDynamicRange", propOrder = { "mode", "level" }) public class WideDynamicRange { @XmlElement(name = "Mode", required = true) protected WideDynamicMode mode; @XmlElement(name = "Level") protected float level; /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link WideDynamicMode } * */ public WideDynamicMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link WideDynamicMode } * */ public void setMode(WideDynamicMode value) { this.mode = value; } /** * Ruft den Wert der level-Eigenschaft ab. * */ public float getLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * */ public void setLevel(float value) { this.level = value; } } ================================================ FILE: src/org/onvif/ver10/schema/WideDynamicRange20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Type describing whether WDR mode is enabled or disabled (on/off). * *

* Java-Klasse f�r WideDynamicRange20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WideDynamicRange20", propOrder = { "mode", "level" }) public class WideDynamicRange20 { @XmlElement(name = "Mode", required = true) protected WideDynamicMode mode; @XmlElement(name = "Level") protected Float level; /** * Ruft den Wert der mode-Eigenschaft ab. * * @return possible object is {@link WideDynamicMode } * */ public WideDynamicMode getMode() { return mode; } /** * Legt den Wert der mode-Eigenschaft fest. * * @param value * allowed object is {@link WideDynamicMode } * */ public void setMode(WideDynamicMode value) { this.mode = value; } /** * Ruft den Wert der level-Eigenschaft ab. * * @return possible object is {@link Float } * */ public Float getLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * * @param value * allowed object is {@link Float } * */ public void setLevel(Float value) { this.level = value; } } ================================================ FILE: src/org/onvif/ver10/schema/WideDynamicRangeOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r WideDynamicRangeOptions complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WideDynamicRangeOptions", propOrder = { "mode", "level" }) public class WideDynamicRangeOptions { @XmlElement(name = "Mode", required = true) protected List mode; @XmlElement(name = "Level", required = true) protected FloatRange level; /** * Gets the value of the mode property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the mode property. * *

* For example, to add a new item, do as follows: * *

	 * getMode().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link WideDynamicMode } * * */ public List getMode() { if (mode == null) { mode = new ArrayList(); } return this.mode; } /** * Ruft den Wert der level-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setLevel(FloatRange value) { this.level = value; } } ================================================ FILE: src/org/onvif/ver10/schema/WideDynamicRangeOptions20.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r WideDynamicRangeOptions20 complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WideDynamicRangeOptions20", propOrder = { "mode", "level" }) public class WideDynamicRangeOptions20 { @XmlElement(name = "Mode", required = true) protected List mode; @XmlElement(name = "Level") protected FloatRange level; /** * Gets the value of the mode property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the mode property. * *

* For example, to add a new item, do as follows: * *

	 * getMode().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link WideDynamicMode } * * */ public List getMode() { if (mode == null) { mode = new ArrayList(); } return this.mode; } /** * Ruft den Wert der level-Eigenschaft ab. * * @return possible object is {@link FloatRange } * */ public FloatRange getLevel() { return level; } /** * Legt den Wert der level-Eigenschaft fest. * * @param value * allowed object is {@link FloatRange } * */ public void setLevel(FloatRange value) { this.level = value; } } ================================================ FILE: src/org/onvif/ver10/schema/ZoomLimits.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.onvif.ver10.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r ZoomLimits complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ZoomLimits", propOrder = { "range" }) public class ZoomLimits { @XmlElement(name = "Range", required = true) protected Space1DDescription range; /** * Ruft den Wert der range-Eigenschaft ab. * * @return possible object is {@link Space1DDescription } * */ public Space1DDescription getRange() { return range; } /** * Legt den Wert der range-Eigenschaft fest. * * @param value * allowed object is {@link Space1DDescription } * */ public void setRange(Space1DDescription value) { this.range = value; } } ================================================ FILE: src/org/onvif/ver10/schema/package-info.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver10/schema", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) package org.onvif.ver10.schema; ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/Capabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr Capabilities complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="Capabilities">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="ImageStabilization" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Capabilities", propOrder = { "any" }) public class Capabilities { @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "ImageStabilization") protected Boolean imageStabilization; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der imageStabilization-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isImageStabilization() { return imageStabilization; } /** * Legt den Wert der imageStabilization-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setImageStabilization(Boolean value) { this.imageStabilization = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/GetImagingSettings.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="VideoSourceToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "videoSourceToken" }) @XmlRootElement(name = "GetImagingSettings") public class GetImagingSettings { @XmlElement(name = "VideoSourceToken", required = true) protected String videoSourceToken; /** * Ruft den Wert der videoSourceToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getVideoSourceToken() { return videoSourceToken; } /** * Legt den Wert der videoSourceToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setVideoSourceToken(String value) { this.videoSourceToken = value; } } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/GetImagingSettingsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.ImagingSettings20; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ImagingSettings" type="{http://www.onvif.org/ver10/schema}ImagingSettings20"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "imagingSettings" }) @XmlRootElement(name = "GetImagingSettingsResponse") public class GetImagingSettingsResponse { @XmlElement(name = "ImagingSettings", required = true) protected ImagingSettings20 imagingSettings; /** * Ruft den Wert der imagingSettings-Eigenschaft ab. * * @return * possible object is * {@link ImagingSettings20 } * */ public ImagingSettings20 getImagingSettings() { return imagingSettings; } /** * Legt den Wert der imagingSettings-Eigenschaft fest. * * @param value * allowed object is * {@link ImagingSettings20 } * */ public void setImagingSettings(ImagingSettings20 value) { this.imagingSettings = value; } } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/GetMoveOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="VideoSourceToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "videoSourceToken" }) @XmlRootElement(name = "GetMoveOptions") public class GetMoveOptions { @XmlElement(name = "VideoSourceToken", required = true) protected String videoSourceToken; /** * Ruft den Wert der videoSourceToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getVideoSourceToken() { return videoSourceToken; } /** * Legt den Wert der videoSourceToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setVideoSourceToken(String value) { this.videoSourceToken = value; } } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/GetMoveOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.MoveOptions20; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="MoveOptions" type="{http://www.onvif.org/ver10/schema}MoveOptions20"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "moveOptions" }) @XmlRootElement(name = "GetMoveOptionsResponse") public class GetMoveOptionsResponse { @XmlElement(name = "MoveOptions", required = true) protected MoveOptions20 moveOptions; /** * Ruft den Wert der moveOptions-Eigenschaft ab. * * @return * possible object is * {@link MoveOptions20 } * */ public MoveOptions20 getMoveOptions() { return moveOptions; } /** * Legt den Wert der moveOptions-Eigenschaft fest. * * @param value * allowed object is * {@link MoveOptions20 } * */ public void setMoveOptions(MoveOptions20 value) { this.moveOptions = value; } } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/GetOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="VideoSourceToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "videoSourceToken" }) @XmlRootElement(name = "GetOptions") public class GetOptions { @XmlElement(name = "VideoSourceToken", required = true) protected String videoSourceToken; /** * Ruft den Wert der videoSourceToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getVideoSourceToken() { return videoSourceToken; } /** * Legt den Wert der videoSourceToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setVideoSourceToken(String value) { this.videoSourceToken = value; } } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/GetOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.ImagingOptions20; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ImagingOptions" type="{http://www.onvif.org/ver10/schema}ImagingOptions20"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "imagingOptions" }) @XmlRootElement(name = "GetOptionsResponse") public class GetOptionsResponse { @XmlElement(name = "ImagingOptions", required = true) protected ImagingOptions20 imagingOptions; /** * Ruft den Wert der imagingOptions-Eigenschaft ab. * * @return * possible object is * {@link ImagingOptions20 } * */ public ImagingOptions20 getImagingOptions() { return imagingOptions; } /** * Legt den Wert der imagingOptions-Eigenschaft fest. * * @param value * allowed object is * {@link ImagingOptions20 } * */ public void setImagingOptions(ImagingOptions20 value) { this.imagingOptions = value; } } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/GetServiceCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetServiceCapabilities") public class GetServiceCapabilities { } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/GetServiceCapabilitiesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Capabilities" type="{http://www.onvif.org/ver20/imaging/wsdl}Capabilities"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "capabilities" }) @XmlRootElement(name = "GetServiceCapabilitiesResponse") public class GetServiceCapabilitiesResponse { @XmlElement(name = "Capabilities", required = true) protected Capabilities capabilities; /** * Ruft den Wert der capabilities-Eigenschaft ab. * * @return * possible object is * {@link Capabilities } * */ public Capabilities getCapabilities() { return capabilities; } /** * Legt den Wert der capabilities-Eigenschaft fest. * * @param value * allowed object is * {@link Capabilities } * */ public void setCapabilities(Capabilities value) { this.capabilities = value; } } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/GetStatus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="VideoSourceToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "videoSourceToken" }) @XmlRootElement(name = "GetStatus") public class GetStatus { @XmlElement(name = "VideoSourceToken", required = true) protected String videoSourceToken; /** * Ruft den Wert der videoSourceToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getVideoSourceToken() { return videoSourceToken; } /** * Legt den Wert der videoSourceToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setVideoSourceToken(String value) { this.videoSourceToken = value; } } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/GetStatusResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.ImagingStatus20; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Status" type="{http://www.onvif.org/ver10/schema}ImagingStatus20"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "status" }) @XmlRootElement(name = "GetStatusResponse") public class GetStatusResponse { @XmlElement(name = "Status", required = true) protected ImagingStatus20 status; /** * Ruft den Wert der status-Eigenschaft ab. * * @return * possible object is * {@link ImagingStatus20 } * */ public ImagingStatus20 getStatus() { return status; } /** * Legt den Wert der status-Eigenschaft fest. * * @param value * allowed object is * {@link ImagingStatus20 } * */ public void setStatus(ImagingStatus20 value) { this.status = value; } } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/Move.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.FocusMove; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="VideoSourceToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *         <element name="Focus" type="{http://www.onvif.org/ver10/schema}FocusMove"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "videoSourceToken", "focus" }) @XmlRootElement(name = "Move") public class Move { @XmlElement(name = "VideoSourceToken", required = true) protected String videoSourceToken; @XmlElement(name = "Focus", required = true) protected FocusMove focus; /** * Ruft den Wert der videoSourceToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getVideoSourceToken() { return videoSourceToken; } /** * Legt den Wert der videoSourceToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setVideoSourceToken(String value) { this.videoSourceToken = value; } /** * Ruft den Wert der focus-Eigenschaft ab. * * @return * possible object is * {@link FocusMove } * */ public FocusMove getFocus() { return focus; } /** * Legt den Wert der focus-Eigenschaft fest. * * @param value * allowed object is * {@link FocusMove } * */ public void setFocus(FocusMove value) { this.focus = value; } } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/MoveResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "MoveResponse") public class MoveResponse { } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/ObjectFactory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each * Java content interface and Java element interface * generated in the org.onvif.ver20.imaging.wsdl package. *

An ObjectFactory allows you to programatically * construct new instances of the Java representation * for XML content. The Java representation of XML * content can consist of schema derived interfaces * and classes representing the binding of schema * type definitions, element declarations and model * groups. Factory methods for each of these are * provided in this class. * */ @XmlRegistry public class ObjectFactory { private final static QName _Capabilities_QNAME = new QName("http://www.onvif.org/ver20/imaging/wsdl", "Capabilities"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.onvif.ver20.imaging.wsdl * */ public ObjectFactory() { } /** * Create an instance of {@link GetOptions } * */ public GetOptions createGetOptions() { return new GetOptions(); } /** * Create an instance of {@link MoveResponse } * */ public MoveResponse createMoveResponse() { return new MoveResponse(); } /** * Create an instance of {@link GetImagingSettings } * */ public GetImagingSettings createGetImagingSettings() { return new GetImagingSettings(); } /** * Create an instance of {@link GetStatus } * */ public GetStatus createGetStatus() { return new GetStatus(); } /** * Create an instance of {@link GetOptionsResponse } * */ public GetOptionsResponse createGetOptionsResponse() { return new GetOptionsResponse(); } /** * Create an instance of {@link GetServiceCapabilitiesResponse } * */ public GetServiceCapabilitiesResponse createGetServiceCapabilitiesResponse() { return new GetServiceCapabilitiesResponse(); } /** * Create an instance of {@link Capabilities } * */ public Capabilities createCapabilities() { return new Capabilities(); } /** * Create an instance of {@link Stop } * */ public Stop createStop() { return new Stop(); } /** * Create an instance of {@link SetImagingSettingsResponse } * */ public SetImagingSettingsResponse createSetImagingSettingsResponse() { return new SetImagingSettingsResponse(); } /** * Create an instance of {@link StopResponse } * */ public StopResponse createStopResponse() { return new StopResponse(); } /** * Create an instance of {@link GetStatusResponse } * */ public GetStatusResponse createGetStatusResponse() { return new GetStatusResponse(); } /** * Create an instance of {@link GetServiceCapabilities } * */ public GetServiceCapabilities createGetServiceCapabilities() { return new GetServiceCapabilities(); } /** * Create an instance of {@link Move } * */ public Move createMove() { return new Move(); } /** * Create an instance of {@link GetImagingSettingsResponse } * */ public GetImagingSettingsResponse createGetImagingSettingsResponse() { return new GetImagingSettingsResponse(); } /** * Create an instance of {@link SetImagingSettings } * */ public SetImagingSettings createSetImagingSettings() { return new SetImagingSettings(); } /** * Create an instance of {@link GetMoveOptions } * */ public GetMoveOptions createGetMoveOptions() { return new GetMoveOptions(); } /** * Create an instance of {@link GetMoveOptionsResponse } * */ public GetMoveOptionsResponse createGetMoveOptionsResponse() { return new GetMoveOptionsResponse(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Capabilities }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/imaging/wsdl", name = "Capabilities") public JAXBElement createCapabilities(Capabilities value) { return new JAXBElement(_Capabilities_QNAME, Capabilities.class, null, value); } } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/SetImagingSettings.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.ImagingSettings20; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="VideoSourceToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *         <element name="ImagingSettings" type="{http://www.onvif.org/ver10/schema}ImagingSettings20"/>
 *         <element name="ForcePersistence" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "videoSourceToken", "imagingSettings", "forcePersistence" }) @XmlRootElement(name = "SetImagingSettings") public class SetImagingSettings { @XmlElement(name = "VideoSourceToken", required = true) protected String videoSourceToken; @XmlElement(name = "ImagingSettings", required = true) protected ImagingSettings20 imagingSettings; @XmlElement(name = "ForcePersistence") protected Boolean forcePersistence; /** * Ruft den Wert der videoSourceToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getVideoSourceToken() { return videoSourceToken; } /** * Legt den Wert der videoSourceToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setVideoSourceToken(String value) { this.videoSourceToken = value; } /** * Ruft den Wert der imagingSettings-Eigenschaft ab. * * @return * possible object is * {@link ImagingSettings20 } * */ public ImagingSettings20 getImagingSettings() { return imagingSettings; } /** * Legt den Wert der imagingSettings-Eigenschaft fest. * * @param value * allowed object is * {@link ImagingSettings20 } * */ public void setImagingSettings(ImagingSettings20 value) { this.imagingSettings = value; } /** * Ruft den Wert der forcePersistence-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isForcePersistence() { return forcePersistence; } /** * Legt den Wert der forcePersistence-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setForcePersistence(Boolean value) { this.forcePersistence = value; } } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/SetImagingSettingsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetImagingSettingsResponse") public class SetImagingSettingsResponse { } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/Stop.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="VideoSourceToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "videoSourceToken" }) @XmlRootElement(name = "Stop") public class Stop { @XmlElement(name = "VideoSourceToken", required = true) protected String videoSourceToken; /** * Ruft den Wert der videoSourceToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getVideoSourceToken() { return videoSourceToken; } /** * Legt den Wert der videoSourceToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setVideoSourceToken(String value) { this.videoSourceToken = value; } } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/StopResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // package org.onvif.ver20.imaging.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "StopResponse") public class StopResponse { } ================================================ FILE: src/org/onvif/ver20/imaging/wsdl/package-info.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.04.25 um 04:22:13 PM CEST // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver20/imaging/wsdl", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) package org.onvif.ver20.imaging.wsdl; ================================================ FILE: src/org/onvif/ver20/media/wsdl/AddConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ProfileToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *         <element name="Name" type="{http://www.onvif.org/ver10/schema}Name" minOccurs="0"/>
 *         <element name="Configuration" type="{http://www.onvif.org/ver20/media/wsdl}ConfigurationRef" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "name", "configuration" }) @XmlRootElement(name = "AddConfiguration") public class AddConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "Name") protected String name; @XmlElement(name = "Configuration") protected List configuration; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der name-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the configuration property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the configuration property. * *

* For example, to add a new item, do as follows: *

     *    getConfiguration().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ConfigurationRef } * * */ public List getConfiguration() { if (configuration == null) { configuration = new ArrayList(); } return this.configuration; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/AddConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "AddConfigurationResponse") public class AddConfigurationResponse { } ================================================ FILE: src/org/onvif/ver20/media/wsdl/Capabilities2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr Capabilities2 complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="Capabilities2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ProfileCapabilities" type="{http://www.onvif.org/ver20/media/wsdl}ProfileCapabilities"/>
 *         <element name="StreamingCapabilities" type="{http://www.onvif.org/ver20/media/wsdl}StreamingCapabilities"/>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="SnapshotUri" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="Rotation" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="VideoSourceMode" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="OSD" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Capabilities2", propOrder = { "profileCapabilities", "streamingCapabilities", "any" }) public class Capabilities2 { @XmlElement(name = "ProfileCapabilities", required = true) protected ProfileCapabilities profileCapabilities; @XmlElement(name = "StreamingCapabilities", required = true) protected StreamingCapabilities streamingCapabilities; @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "SnapshotUri") protected Boolean snapshotUri; @XmlAttribute(name = "Rotation") protected Boolean rotation; @XmlAttribute(name = "VideoSourceMode") protected Boolean videoSourceMode; @XmlAttribute(name = "OSD") protected Boolean osd; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der profileCapabilities-Eigenschaft ab. * * @return * possible object is * {@link ProfileCapabilities } * */ public ProfileCapabilities getProfileCapabilities() { return profileCapabilities; } /** * Legt den Wert der profileCapabilities-Eigenschaft fest. * * @param value * allowed object is * {@link ProfileCapabilities } * */ public void setProfileCapabilities(ProfileCapabilities value) { this.profileCapabilities = value; } /** * Ruft den Wert der streamingCapabilities-Eigenschaft ab. * * @return * possible object is * {@link StreamingCapabilities } * */ public StreamingCapabilities getStreamingCapabilities() { return streamingCapabilities; } /** * Legt den Wert der streamingCapabilities-Eigenschaft fest. * * @param value * allowed object is * {@link StreamingCapabilities } * */ public void setStreamingCapabilities(StreamingCapabilities value) { this.streamingCapabilities = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der snapshotUri-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isSnapshotUri() { return snapshotUri; } /** * Legt den Wert der snapshotUri-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setSnapshotUri(Boolean value) { this.snapshotUri = value; } /** * Ruft den Wert der rotation-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isRotation() { return rotation; } /** * Legt den Wert der rotation-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setRotation(Boolean value) { this.rotation = value; } /** * Ruft den Wert der videoSourceMode-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isVideoSourceMode() { return videoSourceMode; } /** * Legt den Wert der videoSourceMode-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setVideoSourceMode(Boolean value) { this.videoSourceMode = value; } /** * Ruft den Wert der osd-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isOSD() { return osd; } /** * Legt den Wert der osd-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setOSD(Boolean value) { this.osd = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/ConfigurationEnumeration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr ConfigurationEnumeration. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

*

 * <simpleType name="ConfigurationEnumeration">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="All"/>
 *     <enumeration value="VideoSource"/>
 *     <enumeration value="VideoEncoder"/>
 *     <enumeration value="AudioSource"/>
 *     <enumeration value="AudioEncoder"/>
 *     <enumeration value="AudioOutput"/>
 *     <enumeration value="AudioDecoder"/>
 *     <enumeration value="Metadata"/>
 *     <enumeration value="Analytics"/>
 *     <enumeration value="PTZ"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ConfigurationEnumeration") @XmlEnum public enum ConfigurationEnumeration { @XmlEnumValue("All") ALL("All"), @XmlEnumValue("VideoSource") VIDEO_SOURCE("VideoSource"), @XmlEnumValue("VideoEncoder") VIDEO_ENCODER("VideoEncoder"), @XmlEnumValue("AudioSource") AUDIO_SOURCE("AudioSource"), @XmlEnumValue("AudioEncoder") AUDIO_ENCODER("AudioEncoder"), @XmlEnumValue("AudioOutput") AUDIO_OUTPUT("AudioOutput"), @XmlEnumValue("AudioDecoder") AUDIO_DECODER("AudioDecoder"), @XmlEnumValue("Metadata") METADATA("Metadata"), @XmlEnumValue("Analytics") ANALYTICS("Analytics"), PTZ("PTZ"); private final String value; ConfigurationEnumeration(String v) { value = v; } public String value() { return value; } public static ConfigurationEnumeration fromValue(String v) { for (ConfigurationEnumeration c: ConfigurationEnumeration.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/ConfigurationRef.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr ConfigurationRef complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="ConfigurationRef">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Token" type="{http://www.onvif.org/ver10/schema}ReferenceToken" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConfigurationRef", propOrder = { "type", "token" }) public class ConfigurationRef { @XmlElement(name = "Type", required = true) protected String type; @XmlElement(name = "Token") protected String token; /** * Ruft den Wert der type-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Ruft den Wert der token-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setToken(String value) { this.token = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/ConfigurationSet.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.onvif.ver10.schema.AudioDecoderConfiguration; import org.onvif.ver10.schema.AudioEncoder2Configuration; import org.onvif.ver10.schema.AudioOutputConfiguration; import org.onvif.ver10.schema.AudioSourceConfiguration; import org.onvif.ver10.schema.ConfigurationEntity; import org.onvif.ver10.schema.MetadataConfiguration; import org.onvif.ver10.schema.PTZConfiguration; import org.onvif.ver10.schema.VideoEncoder2Configuration; import org.onvif.ver10.schema.VideoSourceConfiguration; import org.w3c.dom.Element; /** * * A set of media configurations. * * *

Java-Klasse fr ConfigurationSet complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="ConfigurationSet">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="VideoSource" type="{http://www.onvif.org/ver10/schema}VideoSourceConfiguration" minOccurs="0"/>
 *         <element name="AudioSource" type="{http://www.onvif.org/ver10/schema}AudioSourceConfiguration" minOccurs="0"/>
 *         <element name="VideoEncoder" type="{http://www.onvif.org/ver10/schema}VideoEncoder2Configuration" minOccurs="0"/>
 *         <element name="AudioEncoder" type="{http://www.onvif.org/ver10/schema}AudioEncoder2Configuration" minOccurs="0"/>
 *         <element name="Analytics" type="{http://www.onvif.org/ver10/schema}ConfigurationEntity" minOccurs="0"/>
 *         <element name="PTZ" type="{http://www.onvif.org/ver10/schema}PTZConfiguration" minOccurs="0"/>
 *         <element name="Metadata" type="{http://www.onvif.org/ver10/schema}MetadataConfiguration" minOccurs="0"/>
 *         <element name="AudioOutput" type="{http://www.onvif.org/ver10/schema}AudioOutputConfiguration" minOccurs="0"/>
 *         <element name="AudioDecoder" type="{http://www.onvif.org/ver10/schema}AudioDecoderConfiguration" minOccurs="0"/>
 *         <any processContents='skip' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConfigurationSet", propOrder = { "videoSource", "audioSource", "videoEncoder", "audioEncoder", "analytics", "ptz", "metadata", "audioOutput", "audioDecoder", "any" }) public class ConfigurationSet { @XmlElement(name = "VideoSource") protected VideoSourceConfiguration videoSource; @XmlElement(name = "AudioSource") protected AudioSourceConfiguration audioSource; @XmlElement(name = "VideoEncoder") protected VideoEncoder2Configuration videoEncoder; @XmlElement(name = "AudioEncoder") protected AudioEncoder2Configuration audioEncoder; @XmlElement(name = "Analytics") protected ConfigurationEntity analytics; @XmlElement(name = "PTZ") protected PTZConfiguration ptz; @XmlElement(name = "Metadata") protected MetadataConfiguration metadata; @XmlElement(name = "AudioOutput") protected AudioOutputConfiguration audioOutput; @XmlElement(name = "AudioDecoder") protected AudioDecoderConfiguration audioDecoder; @XmlAnyElement protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der videoSource-Eigenschaft ab. * * @return * possible object is * {@link VideoSourceConfiguration } * */ public VideoSourceConfiguration getVideoSource() { return videoSource; } /** * Legt den Wert der videoSource-Eigenschaft fest. * * @param value * allowed object is * {@link VideoSourceConfiguration } * */ public void setVideoSource(VideoSourceConfiguration value) { this.videoSource = value; } /** * Ruft den Wert der audioSource-Eigenschaft ab. * * @return * possible object is * {@link AudioSourceConfiguration } * */ public AudioSourceConfiguration getAudioSource() { return audioSource; } /** * Legt den Wert der audioSource-Eigenschaft fest. * * @param value * allowed object is * {@link AudioSourceConfiguration } * */ public void setAudioSource(AudioSourceConfiguration value) { this.audioSource = value; } /** * Ruft den Wert der videoEncoder-Eigenschaft ab. * * @return * possible object is * {@link VideoEncoder2Configuration } * */ public VideoEncoder2Configuration getVideoEncoder() { return videoEncoder; } /** * Legt den Wert der videoEncoder-Eigenschaft fest. * * @param value * allowed object is * {@link VideoEncoder2Configuration } * */ public void setVideoEncoder(VideoEncoder2Configuration value) { this.videoEncoder = value; } /** * Ruft den Wert der audioEncoder-Eigenschaft ab. * * @return * possible object is * {@link AudioEncoder2Configuration } * */ public AudioEncoder2Configuration getAudioEncoder() { return audioEncoder; } /** * Legt den Wert der audioEncoder-Eigenschaft fest. * * @param value * allowed object is * {@link AudioEncoder2Configuration } * */ public void setAudioEncoder(AudioEncoder2Configuration value) { this.audioEncoder = value; } /** * Ruft den Wert der analytics-Eigenschaft ab. * * @return * possible object is * {@link ConfigurationEntity } * */ public ConfigurationEntity getAnalytics() { return analytics; } /** * Legt den Wert der analytics-Eigenschaft fest. * * @param value * allowed object is * {@link ConfigurationEntity } * */ public void setAnalytics(ConfigurationEntity value) { this.analytics = value; } /** * Ruft den Wert der ptz-Eigenschaft ab. * * @return * possible object is * {@link PTZConfiguration } * */ public PTZConfiguration getPTZ() { return ptz; } /** * Legt den Wert der ptz-Eigenschaft fest. * * @param value * allowed object is * {@link PTZConfiguration } * */ public void setPTZ(PTZConfiguration value) { this.ptz = value; } /** * Ruft den Wert der metadata-Eigenschaft ab. * * @return * possible object is * {@link MetadataConfiguration } * */ public MetadataConfiguration getMetadata() { return metadata; } /** * Legt den Wert der metadata-Eigenschaft fest. * * @param value * allowed object is * {@link MetadataConfiguration } * */ public void setMetadata(MetadataConfiguration value) { this.metadata = value; } /** * Ruft den Wert der audioOutput-Eigenschaft ab. * * @return * possible object is * {@link AudioOutputConfiguration } * */ public AudioOutputConfiguration getAudioOutput() { return audioOutput; } /** * Legt den Wert der audioOutput-Eigenschaft fest. * * @param value * allowed object is * {@link AudioOutputConfiguration } * */ public void setAudioOutput(AudioOutputConfiguration value) { this.audioOutput = value; } /** * Ruft den Wert der audioDecoder-Eigenschaft ab. * * @return * possible object is * {@link AudioDecoderConfiguration } * */ public AudioDecoderConfiguration getAudioDecoder() { return audioDecoder; } /** * Legt den Wert der audioDecoder-Eigenschaft fest. * * @param value * allowed object is * {@link AudioDecoderConfiguration } * */ public void setAudioDecoder(AudioDecoderConfiguration value) { this.audioDecoder = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/CreateOSD.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.OSDConfiguration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="OSD" type="{http://www.onvif.org/ver10/schema}OSDConfiguration"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osd" }) @XmlRootElement(name = "CreateOSD") public class CreateOSD { @XmlElement(name = "OSD", required = true) protected OSDConfiguration osd; /** * Ruft den Wert der osd-Eigenschaft ab. * * @return * possible object is * {@link OSDConfiguration } * */ public OSDConfiguration getOSD() { return osd; } /** * Legt den Wert der osd-Eigenschaft fest. * * @param value * allowed object is * {@link OSDConfiguration } * */ public void setOSD(OSDConfiguration value) { this.osd = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/CreateOSDResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="OSDToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osdToken" }) @XmlRootElement(name = "CreateOSDResponse") public class CreateOSDResponse { @XmlElement(name = "OSDToken", required = true) protected String osdToken; /** * Ruft den Wert der osdToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getOSDToken() { return osdToken; } /** * Legt den Wert der osdToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setOSDToken(String value) { this.osdToken = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/CreateProfile.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Name" type="{http://www.onvif.org/ver10/schema}Name"/>
 *         <element name="Configuration" type="{http://www.onvif.org/ver20/media/wsdl}ConfigurationRef" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "name", "configuration" }) @XmlRootElement(name = "CreateProfile") public class CreateProfile { @XmlElement(name = "Name", required = true) protected String name; @XmlElement(name = "Configuration") protected List configuration; /** * Ruft den Wert der name-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the configuration property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the configuration property. * *

* For example, to add a new item, do as follows: *

     *    getConfiguration().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ConfigurationRef } * * */ public List getConfiguration() { if (configuration == null) { configuration = new ArrayList(); } return this.configuration; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/CreateProfileResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Token" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "token" }) @XmlRootElement(name = "CreateProfileResponse") public class CreateProfileResponse { @XmlElement(name = "Token", required = true) protected String token; /** * Ruft den Wert der token-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setToken(String value) { this.token = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/DeleteOSD.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="OSDToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osdToken" }) @XmlRootElement(name = "DeleteOSD") public class DeleteOSD { @XmlElement(name = "OSDToken", required = true) protected String osdToken; /** * Ruft den Wert der osdToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getOSDToken() { return osdToken; } /** * Legt den Wert der osdToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setOSDToken(String value) { this.osdToken = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/DeleteProfile.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Token" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "token" }) @XmlRootElement(name = "DeleteProfile") public class DeleteProfile { @XmlElement(name = "Token", required = true) protected String token; /** * Ruft den Wert der token-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setToken(String value) { this.token = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/DeleteProfileResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "DeleteProfileResponse") public class DeleteProfileResponse { } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetAnalyticsConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoAnalyticsConfiguration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configurations" type="{http://www.onvif.org/ver10/schema}VideoAnalyticsConfiguration" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetAnalyticsConfigurationsResponse") public class GetAnalyticsConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: *

     *    getConfigurations().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VideoAnalyticsConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetAudioDecoderConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioEncoder2ConfigurationOptions; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Options" type="{http://www.onvif.org/ver10/schema}AudioEncoder2ConfigurationOptions" maxOccurs="unbounded"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetAudioDecoderConfigurationOptionsResponse") public class GetAudioDecoderConfigurationOptionsResponse { @XmlElement(name = "Options", required = true) protected List options; /** * Gets the value of the options property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the options property. * *

* For example, to add a new item, do as follows: *

     *    getOptions().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AudioEncoder2ConfigurationOptions } * * */ public List getOptions() { if (options == null) { options = new ArrayList(); } return this.options; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetAudioDecoderConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioDecoderConfiguration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configurations" type="{http://www.onvif.org/ver10/schema}AudioDecoderConfiguration" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetAudioDecoderConfigurationsResponse") public class GetAudioDecoderConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: *

     *    getConfigurations().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AudioDecoderConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetAudioEncoderConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioEncoder2ConfigurationOptions; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Options" type="{http://www.onvif.org/ver10/schema}AudioEncoder2ConfigurationOptions" maxOccurs="unbounded"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetAudioEncoderConfigurationOptionsResponse") public class GetAudioEncoderConfigurationOptionsResponse { @XmlElement(name = "Options", required = true) protected List options; /** * Gets the value of the options property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the options property. * *

* For example, to add a new item, do as follows: *

     *    getOptions().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AudioEncoder2ConfigurationOptions } * * */ public List getOptions() { if (options == null) { options = new ArrayList(); } return this.options; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetAudioEncoderConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioEncoder2Configuration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configurations" type="{http://www.onvif.org/ver10/schema}AudioEncoder2Configuration" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetAudioEncoderConfigurationsResponse") public class GetAudioEncoderConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: *

     *    getConfigurations().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AudioEncoder2Configuration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetAudioOutputConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioOutputConfigurationOptions; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Options" type="{http://www.onvif.org/ver10/schema}AudioOutputConfigurationOptions"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetAudioOutputConfigurationOptionsResponse") public class GetAudioOutputConfigurationOptionsResponse { @XmlElement(name = "Options", required = true) protected AudioOutputConfigurationOptions options; /** * Ruft den Wert der options-Eigenschaft ab. * * @return * possible object is * {@link AudioOutputConfigurationOptions } * */ public AudioOutputConfigurationOptions getOptions() { return options; } /** * Legt den Wert der options-Eigenschaft fest. * * @param value * allowed object is * {@link AudioOutputConfigurationOptions } * */ public void setOptions(AudioOutputConfigurationOptions value) { this.options = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetAudioOutputConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioOutputConfiguration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configurations" type="{http://www.onvif.org/ver10/schema}AudioOutputConfiguration" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetAudioOutputConfigurationsResponse") public class GetAudioOutputConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: *

     *    getConfigurations().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AudioOutputConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetAudioSourceConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioSourceConfigurationOptions; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Options" type="{http://www.onvif.org/ver10/schema}AudioSourceConfigurationOptions"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetAudioSourceConfigurationOptionsResponse") public class GetAudioSourceConfigurationOptionsResponse { @XmlElement(name = "Options", required = true) protected AudioSourceConfigurationOptions options; /** * Ruft den Wert der options-Eigenschaft ab. * * @return * possible object is * {@link AudioSourceConfigurationOptions } * */ public AudioSourceConfigurationOptions getOptions() { return options; } /** * Legt den Wert der options-Eigenschaft fest. * * @param value * allowed object is * {@link AudioSourceConfigurationOptions } * */ public void setOptions(AudioSourceConfigurationOptions value) { this.options = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetAudioSourceConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioSourceConfiguration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configurations" type="{http://www.onvif.org/ver10/schema}AudioSourceConfiguration" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetAudioSourceConfigurationsResponse") public class GetAudioSourceConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: *

     *    getConfigurations().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AudioSourceConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr GetConfiguration complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="GetConfiguration">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ConfigurationToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken" minOccurs="0"/>
 *         <element name="ProfileToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetConfiguration", propOrder = { "configurationToken", "profileToken" }) public class GetConfiguration { @XmlElement(name = "ConfigurationToken") protected String configurationToken; @XmlElement(name = "ProfileToken") protected String profileToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetMetadataConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.MetadataConfigurationOptions; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Options" type="{http://www.onvif.org/ver10/schema}MetadataConfigurationOptions"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetMetadataConfigurationOptionsResponse") public class GetMetadataConfigurationOptionsResponse { @XmlElement(name = "Options", required = true) protected MetadataConfigurationOptions options; /** * Ruft den Wert der options-Eigenschaft ab. * * @return * possible object is * {@link MetadataConfigurationOptions } * */ public MetadataConfigurationOptions getOptions() { return options; } /** * Legt den Wert der options-Eigenschaft fest. * * @param value * allowed object is * {@link MetadataConfigurationOptions } * */ public void setOptions(MetadataConfigurationOptions value) { this.options = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetMetadataConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.MetadataConfiguration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configurations" type="{http://www.onvif.org/ver10/schema}MetadataConfiguration" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetMetadataConfigurationsResponse") public class GetMetadataConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: *

     *    getConfigurations().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link MetadataConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetOSDOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ConfigurationToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken" }) @XmlRootElement(name = "GetOSDOptions") public class GetOSDOptions { @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetOSDOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.OSDConfigurationOptions; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="OSDOptions" type="{http://www.onvif.org/ver10/schema}OSDConfigurationOptions"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osdOptions" }) @XmlRootElement(name = "GetOSDOptionsResponse") public class GetOSDOptionsResponse { @XmlElement(name = "OSDOptions", required = true) protected OSDConfigurationOptions osdOptions; /** * Ruft den Wert der osdOptions-Eigenschaft ab. * * @return * possible object is * {@link OSDConfigurationOptions } * */ public OSDConfigurationOptions getOSDOptions() { return osdOptions; } /** * Legt den Wert der osdOptions-Eigenschaft fest. * * @param value * allowed object is * {@link OSDConfigurationOptions } * */ public void setOSDOptions(OSDConfigurationOptions value) { this.osdOptions = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetOSDs.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="OSDToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken" minOccurs="0"/>
 *         <element name="ConfigurationToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osdToken", "configurationToken" }) @XmlRootElement(name = "GetOSDs") public class GetOSDs { @XmlElement(name = "OSDToken") protected String osdToken; @XmlElement(name = "ConfigurationToken") protected String configurationToken; /** * Ruft den Wert der osdToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getOSDToken() { return osdToken; } /** * Legt den Wert der osdToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setOSDToken(String value) { this.osdToken = value; } /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetOSDsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.OSDConfiguration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="OSD" type="{http://www.onvif.org/ver10/schema}OSDConfiguration"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osd" }) @XmlRootElement(name = "GetOSDsResponse") public class GetOSDsResponse { @XmlElement(name = "OSD", required = true) protected OSDConfiguration osd; /** * Ruft den Wert der osd-Eigenschaft ab. * * @return * possible object is * {@link OSDConfiguration } * */ public OSDConfiguration getOSD() { return osd; } /** * Legt den Wert der osd-Eigenschaft fest. * * @param value * allowed object is * {@link OSDConfiguration } * */ public void setOSD(OSDConfiguration value) { this.osd = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetProfiles.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <sequence>
 *           <element name="Token" type="{http://www.onvif.org/ver10/schema}ReferenceToken" minOccurs="0"/>
 *           <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         </sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "token", "type" }) @XmlRootElement(name = "GetProfiles") public class GetProfiles { @XmlElement(name = "Token") protected String token; @XmlElement(name = "Type") protected List type; /** * Ruft den Wert der token-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setToken(String value) { this.token = value; } /** * Gets the value of the type property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the type property. * *

* For example, to add a new item, do as follows: *

     *    getType().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getType() { if (type == null) { type = new ArrayList(); } return this.type; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetProfilesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Profiles" type="{http://www.onvif.org/ver20/media/wsdl}MediaProfile" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profiles" }) @XmlRootElement(name = "GetProfilesResponse") public class GetProfilesResponse { @XmlElement(name = "Profiles") protected List profiles; /** * Gets the value of the profiles property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the profiles property. * *

* For example, to add a new item, do as follows: *

     *    getProfiles().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link MediaProfile } * * */ public List getProfiles() { if (profiles == null) { profiles = new ArrayList(); } return this.profiles; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetServiceCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetServiceCapabilities") public class GetServiceCapabilities { } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetServiceCapabilitiesResponse2.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Capabilities" type="{http://www.onvif.org/ver20/media/wsdl}Capabilities2"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "capabilities" }) @XmlRootElement(name = "GetServiceCapabilitiesResponse2") public class GetServiceCapabilitiesResponse2 { @XmlElement(name = "Capabilities", required = true) protected Capabilities2 capabilities; /** * Ruft den Wert der capabilities-Eigenschaft ab. * * @return * possible object is * {@link Capabilities2 } * */ public Capabilities2 getCapabilities() { return capabilities; } /** * Legt den Wert der capabilities-Eigenschaft fest. * * @param value * allowed object is * {@link Capabilities2 } * */ public void setCapabilities(Capabilities2 value) { this.capabilities = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetSnapshotUri.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ProfileToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetSnapshotUri") public class GetSnapshotUri { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetSnapshotUriResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Uri" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "uri" }) @XmlRootElement(name = "GetSnapshotUriResponse") public class GetSnapshotUriResponse { @XmlElement(name = "Uri", required = true) @XmlSchemaType(name = "anyURI") protected String uri; /** * Ruft den Wert der uri-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getUri() { return uri; } /** * Legt den Wert der uri-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setUri(String value) { this.uri = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetStreamUri.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Protocol" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ProfileToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "protocol", "profileToken" }) @XmlRootElement(name = "GetStreamUri") public class GetStreamUri { @XmlElement(name = "Protocol", required = true) protected String protocol; @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der protocol-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getProtocol() { return protocol; } /** * Legt den Wert der protocol-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setProtocol(String value) { this.protocol = value; } /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetStreamUriResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Uri" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "uri" }) @XmlRootElement(name = "GetStreamUriResponse") public class GetStreamUriResponse { @XmlElement(name = "Uri", required = true) @XmlSchemaType(name = "anyURI") protected String uri; /** * Ruft den Wert der uri-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getUri() { return uri; } /** * Legt den Wert der uri-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setUri(String value) { this.uri = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetVideoEncoderConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoEncoder2ConfigurationOptions; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Options" type="{http://www.onvif.org/ver10/schema}VideoEncoder2ConfigurationOptions" maxOccurs="unbounded"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetVideoEncoderConfigurationOptionsResponse") public class GetVideoEncoderConfigurationOptionsResponse { @XmlElement(name = "Options", required = true) protected List options; /** * Gets the value of the options property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the options property. * *

* For example, to add a new item, do as follows: *

     *    getOptions().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VideoEncoder2ConfigurationOptions } * * */ public List getOptions() { if (options == null) { options = new ArrayList(); } return this.options; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetVideoEncoderConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoEncoder2Configuration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configurations" type="{http://www.onvif.org/ver10/schema}VideoEncoder2Configuration" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetVideoEncoderConfigurationsResponse") public class GetVideoEncoderConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: *

     *    getConfigurations().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VideoEncoder2Configuration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetVideoSourceConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoSourceConfigurationOptions; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Options" type="{http://www.onvif.org/ver10/schema}VideoSourceConfigurationOptions"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetVideoSourceConfigurationOptionsResponse") public class GetVideoSourceConfigurationOptionsResponse { @XmlElement(name = "Options", required = true) protected VideoSourceConfigurationOptions options; /** * Ruft den Wert der options-Eigenschaft ab. * * @return * possible object is * {@link VideoSourceConfigurationOptions } * */ public VideoSourceConfigurationOptions getOptions() { return options; } /** * Legt den Wert der options-Eigenschaft fest. * * @param value * allowed object is * {@link VideoSourceConfigurationOptions } * */ public void setOptions(VideoSourceConfigurationOptions value) { this.options = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetVideoSourceConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoSourceConfiguration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configurations" type="{http://www.onvif.org/ver10/schema}VideoSourceConfiguration" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurations" }) @XmlRootElement(name = "GetVideoSourceConfigurationsResponse") public class GetVideoSourceConfigurationsResponse { @XmlElement(name = "Configurations") protected List configurations; /** * Gets the value of the configurations property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the configurations property. * *

* For example, to add a new item, do as follows: *

     *    getConfigurations().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VideoSourceConfiguration } * * */ public List getConfigurations() { if (configurations == null) { configurations = new ArrayList(); } return this.configurations; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetVideoSourceModes.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="VideoSourceToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "videoSourceToken" }) @XmlRootElement(name = "GetVideoSourceModes") public class GetVideoSourceModes { @XmlElement(name = "VideoSourceToken", required = true) protected String videoSourceToken; /** * Ruft den Wert der videoSourceToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getVideoSourceToken() { return videoSourceToken; } /** * Legt den Wert der videoSourceToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setVideoSourceToken(String value) { this.videoSourceToken = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/GetVideoSourceModesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="VideoSourceModes" type="{http://www.onvif.org/ver20/media/wsdl}VideoSourceMode" maxOccurs="unbounded"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "videoSourceModes" }) @XmlRootElement(name = "GetVideoSourceModesResponse") public class GetVideoSourceModesResponse { @XmlElement(name = "VideoSourceModes", required = true) protected List videoSourceModes; /** * Gets the value of the videoSourceModes property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the videoSourceModes property. * *

* For example, to add a new item, do as follows: *

     *    getVideoSourceModes().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VideoSourceMode } * * */ public List getVideoSourceModes() { if (videoSourceModes == null) { videoSourceModes = new ArrayList(); } return this.videoSourceModes; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/MediaProfile.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * * A media profile consists of a set of media configurations. * * *

Java-Klasse fr MediaProfile complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="MediaProfile">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Name" type="{http://www.onvif.org/ver10/schema}Name"/>
 *         <element name="Configurations" type="{http://www.onvif.org/ver20/media/wsdl}ConfigurationSet"/>
 *       </sequence>
 *       <attribute name="token" use="required" type="{http://www.onvif.org/ver10/schema}ReferenceToken" />
 *       <attribute name="fixed" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MediaProfile", propOrder = { "name", "configurations" }) public class MediaProfile { @XmlElement(name = "Name", required = true) protected String name; @XmlElement(name = "Configurations", required = true) protected ConfigurationSet configurations; @XmlAttribute(name = "token", required = true) protected String token; @XmlAttribute(name = "fixed") protected Boolean fixed; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der name-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der configurations-Eigenschaft ab. * * @return * possible object is * {@link ConfigurationSet } * */ public ConfigurationSet getConfigurations() { return configurations; } /** * Legt den Wert der configurations-Eigenschaft fest. * * @param value * allowed object is * {@link ConfigurationSet } * */ public void setConfigurations(ConfigurationSet value) { this.configurations = value; } /** * Ruft den Wert der token-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setToken(String value) { this.token = value; } /** * Ruft den Wert der fixed-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isFixed() { return fixed; } /** * Legt den Wert der fixed-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setFixed(Boolean value) { this.fixed = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/ObjectFactory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each * Java content interface and Java element interface * generated in the org.onvif.ver20.media.wsdl package. *

An ObjectFactory allows you to programatically * construct new instances of the Java representation * for XML content. The Java representation of XML * content can consist of schema derived interfaces * and classes representing the binding of schema * type definitions, element declarations and model * groups. Factory methods for each of these are * provided in this class. * */ @XmlRegistry public class ObjectFactory { private final static QName _GetVideoEncoderConfigurationOptions_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetVideoEncoderConfigurationOptions"); private final static QName _Capabilities_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "Capabilities"); private final static QName _StopMulticastStreaming_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "StopMulticastStreaming"); private final static QName _GetAnalyticsConfigurations_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetAnalyticsConfigurations"); private final static QName _StartMulticastStreaming_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "StartMulticastStreaming"); private final static QName _GetVideoSourceConfigurations_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetVideoSourceConfigurations"); private final static QName _GetAudioEncoderConfigurationOptions_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetAudioEncoderConfigurationOptions"); private final static QName _GetVideoSourceConfigurationOptions_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetVideoSourceConfigurationOptions"); private final static QName _GetVideoEncoderConfigurations_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetVideoEncoderConfigurations"); private final static QName _GetMetadataConfigurationOptions_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetMetadataConfigurationOptions"); private final static QName _GetAudioOutputConfigurationOptions_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetAudioOutputConfigurationOptions"); private final static QName _ConfigurationEnumeration_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "ConfigurationEnumeration"); private final static QName _GetAudioSourceConfigurationOptions_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetAudioSourceConfigurationOptions"); private final static QName _GetAudioOutputConfigurations_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetAudioOutputConfigurations"); private final static QName _GetAudioDecoderConfigurationOptions_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetAudioDecoderConfigurationOptions"); private final static QName _GetMetadataConfigurations_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetMetadataConfigurations"); private final static QName _GetAudioSourceConfigurations_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetAudioSourceConfigurations"); private final static QName _GetAudioDecoderConfigurations_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetAudioDecoderConfigurations"); private final static QName _GetAudioEncoderConfigurations_QNAME = new QName("http://www.onvif.org/ver20/media/wsdl", "GetAudioEncoderConfigurations"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.onvif.ver20.media.wsdl * */ public ObjectFactory() { } /** * Create an instance of {@link GetConfiguration } * */ public GetConfiguration createGetConfiguration() { return new GetConfiguration(); } /** * Create an instance of {@link SetVideoSourceMode } * */ public SetVideoSourceMode createSetVideoSourceMode() { return new SetVideoSourceMode(); } /** * Create an instance of {@link GetMetadataConfigurationsResponse } * */ public GetMetadataConfigurationsResponse createGetMetadataConfigurationsResponse() { return new GetMetadataConfigurationsResponse(); } /** * Create an instance of {@link DeleteProfileResponse } * */ public DeleteProfileResponse createDeleteProfileResponse() { return new DeleteProfileResponse(); } /** * Create an instance of {@link SetMetadataConfiguration } * */ public SetMetadataConfiguration createSetMetadataConfiguration() { return new SetMetadataConfiguration(); } /** * Create an instance of {@link SetSynchronizationPointResponse } * */ public SetSynchronizationPointResponse createSetSynchronizationPointResponse() { return new SetSynchronizationPointResponse(); } /** * Create an instance of {@link GetAnalyticsConfigurationsResponse } * */ public GetAnalyticsConfigurationsResponse createGetAnalyticsConfigurationsResponse() { return new GetAnalyticsConfigurationsResponse(); } /** * Create an instance of {@link RemoveConfiguration } * */ public RemoveConfiguration createRemoveConfiguration() { return new RemoveConfiguration(); } /** * Create an instance of {@link ConfigurationRef } * */ public ConfigurationRef createConfigurationRef() { return new ConfigurationRef(); } /** * Create an instance of {@link SetVideoSourceModeResponse } * */ public SetVideoSourceModeResponse createSetVideoSourceModeResponse() { return new SetVideoSourceModeResponse(); } /** * Create an instance of {@link GetOSDOptions } * */ public GetOSDOptions createGetOSDOptions() { return new GetOSDOptions(); } /** * Create an instance of {@link SetAudioSourceConfiguration } * */ public SetAudioSourceConfiguration createSetAudioSourceConfiguration() { return new SetAudioSourceConfiguration(); } /** * Create an instance of {@link DeleteOSD } * */ public DeleteOSD createDeleteOSD() { return new DeleteOSD(); } /** * Create an instance of {@link SetVideoEncoderConfiguration } * */ public SetVideoEncoderConfiguration createSetVideoEncoderConfiguration() { return new SetVideoEncoderConfiguration(); } /** * Create an instance of {@link DeleteProfile } * */ public DeleteProfile createDeleteProfile() { return new DeleteProfile(); } /** * Create an instance of {@link GetOSDsResponse } * */ public GetOSDsResponse createGetOSDsResponse() { return new GetOSDsResponse(); } /** * Create an instance of {@link CreateProfileResponse } * */ public CreateProfileResponse createCreateProfileResponse() { return new CreateProfileResponse(); } /** * Create an instance of {@link GetVideoSourceModesResponse } * */ public GetVideoSourceModesResponse createGetVideoSourceModesResponse() { return new GetVideoSourceModesResponse(); } /** * Create an instance of {@link VideoSourceMode } * */ public VideoSourceMode createVideoSourceMode() { return new VideoSourceMode(); } /** * Create an instance of {@link GetAudioOutputConfigurationOptionsResponse } * */ public GetAudioOutputConfigurationOptionsResponse createGetAudioOutputConfigurationOptionsResponse() { return new GetAudioOutputConfigurationOptionsResponse(); } /** * Create an instance of {@link GetVideoSourceModes } * */ public GetVideoSourceModes createGetVideoSourceModes() { return new GetVideoSourceModes(); } /** * Create an instance of {@link GetStreamUriResponse } * */ public GetStreamUriResponse createGetStreamUriResponse() { return new GetStreamUriResponse(); } /** * Create an instance of {@link GetProfilesResponse } * */ public GetProfilesResponse createGetProfilesResponse() { return new GetProfilesResponse(); } /** * Create an instance of {@link MediaProfile } * */ public MediaProfile createMediaProfile() { return new MediaProfile(); } /** * Create an instance of {@link SetOSD } * */ public SetOSD createSetOSD() { return new SetOSD(); } /** * Create an instance of {@link CreateOSDResponse } * */ public CreateOSDResponse createCreateOSDResponse() { return new CreateOSDResponse(); } /** * Create an instance of {@link GetAudioEncoderConfigurationOptionsResponse } * */ public GetAudioEncoderConfigurationOptionsResponse createGetAudioEncoderConfigurationOptionsResponse() { return new GetAudioEncoderConfigurationOptionsResponse(); } /** * Create an instance of {@link AddConfiguration } * */ public AddConfiguration createAddConfiguration() { return new AddConfiguration(); } /** * Create an instance of {@link GetAudioOutputConfigurationsResponse } * */ public GetAudioOutputConfigurationsResponse createGetAudioOutputConfigurationsResponse() { return new GetAudioOutputConfigurationsResponse(); } /** * Create an instance of {@link GetProfiles } * */ public GetProfiles createGetProfiles() { return new GetProfiles(); } /** * Create an instance of {@link SetAudioEncoderConfiguration } * */ public SetAudioEncoderConfiguration createSetAudioEncoderConfiguration() { return new SetAudioEncoderConfiguration(); } /** * Create an instance of {@link GetAudioSourceConfigurationsResponse } * */ public GetAudioSourceConfigurationsResponse createGetAudioSourceConfigurationsResponse() { return new GetAudioSourceConfigurationsResponse(); } /** * Create an instance of {@link SetVideoSourceConfiguration } * */ public SetVideoSourceConfiguration createSetVideoSourceConfiguration() { return new SetVideoSourceConfiguration(); } /** * Create an instance of {@link GetSnapshotUriResponse } * */ public GetSnapshotUriResponse createGetSnapshotUriResponse() { return new GetSnapshotUriResponse(); } /** * Create an instance of {@link SetAudioDecoderConfiguration } * */ public SetAudioDecoderConfiguration createSetAudioDecoderConfiguration() { return new SetAudioDecoderConfiguration(); } /** * Create an instance of {@link GetVideoEncoderConfigurationOptionsResponse } * */ public GetVideoEncoderConfigurationOptionsResponse createGetVideoEncoderConfigurationOptionsResponse() { return new GetVideoEncoderConfigurationOptionsResponse(); } /** * Create an instance of {@link GetAudioEncoderConfigurationsResponse } * */ public GetAudioEncoderConfigurationsResponse createGetAudioEncoderConfigurationsResponse() { return new GetAudioEncoderConfigurationsResponse(); } /** * Create an instance of {@link RemoveConfigurationResponse } * */ public RemoveConfigurationResponse createRemoveConfigurationResponse() { return new RemoveConfigurationResponse(); } /** * Create an instance of {@link SetConfigurationResponse } * */ public SetConfigurationResponse createSetConfigurationResponse() { return new SetConfigurationResponse(); } /** * Create an instance of {@link StartStopMulticastStreaming } * */ public StartStopMulticastStreaming createStartStopMulticastStreaming() { return new StartStopMulticastStreaming(); } /** * Create an instance of {@link SetSynchronizationPoint } * */ public SetSynchronizationPoint createSetSynchronizationPoint() { return new SetSynchronizationPoint(); } /** * Create an instance of {@link CreateOSD } * */ public CreateOSD createCreateOSD() { return new CreateOSD(); } /** * Create an instance of {@link GetAudioDecoderConfigurationsResponse } * */ public GetAudioDecoderConfigurationsResponse createGetAudioDecoderConfigurationsResponse() { return new GetAudioDecoderConfigurationsResponse(); } /** * Create an instance of {@link GetStreamUri } * */ public GetStreamUri createGetStreamUri() { return new GetStreamUri(); } /** * Create an instance of {@link AddConfigurationResponse } * */ public AddConfigurationResponse createAddConfigurationResponse() { return new AddConfigurationResponse(); } /** * Create an instance of {@link GetAudioSourceConfigurationOptionsResponse } * */ public GetAudioSourceConfigurationOptionsResponse createGetAudioSourceConfigurationOptionsResponse() { return new GetAudioSourceConfigurationOptionsResponse(); } /** * Create an instance of {@link GetSnapshotUri } * */ public GetSnapshotUri createGetSnapshotUri() { return new GetSnapshotUri(); } /** * Create an instance of {@link SetAudioOutputConfiguration } * */ public SetAudioOutputConfiguration createSetAudioOutputConfiguration() { return new SetAudioOutputConfiguration(); } /** * Create an instance of {@link GetAudioDecoderConfigurationOptionsResponse } * */ public GetAudioDecoderConfigurationOptionsResponse createGetAudioDecoderConfigurationOptionsResponse() { return new GetAudioDecoderConfigurationOptionsResponse(); } /** * Create an instance of {@link GetOSDOptionsResponse } * */ public GetOSDOptionsResponse createGetOSDOptionsResponse() { return new GetOSDOptionsResponse(); } /** * Create an instance of {@link GetMetadataConfigurationOptionsResponse } * */ public GetMetadataConfigurationOptionsResponse createGetMetadataConfigurationOptionsResponse() { return new GetMetadataConfigurationOptionsResponse(); } /** * Create an instance of {@link GetServiceCapabilities } * */ public GetServiceCapabilities createGetServiceCapabilities() { return new GetServiceCapabilities(); } /** * Create an instance of {@link GetVideoSourceConfigurationsResponse } * */ public GetVideoSourceConfigurationsResponse createGetVideoSourceConfigurationsResponse() { return new GetVideoSourceConfigurationsResponse(); } /** * Create an instance of {@link GetOSDs } * */ public GetOSDs createGetOSDs() { return new GetOSDs(); } /** * Create an instance of {@link Capabilities2 } * */ public Capabilities2 createCapabilities2() { return new Capabilities2(); } /** * Create an instance of {@link GetVideoEncoderConfigurationsResponse } * */ public GetVideoEncoderConfigurationsResponse createGetVideoEncoderConfigurationsResponse() { return new GetVideoEncoderConfigurationsResponse(); } /** * Create an instance of {@link GetVideoSourceConfigurationOptionsResponse } * */ public GetVideoSourceConfigurationOptionsResponse createGetVideoSourceConfigurationOptionsResponse() { return new GetVideoSourceConfigurationOptionsResponse(); } /** * Create an instance of {@link CreateProfile } * */ public CreateProfile createCreateProfile() { return new CreateProfile(); } /** * Create an instance of {@link StartStopMulticastStreamingResponse } * */ public StartStopMulticastStreamingResponse createStartStopMulticastStreamingResponse() { return new StartStopMulticastStreamingResponse(); } /** * Create an instance of {@link GetServiceCapabilitiesResponse2 } * */ public GetServiceCapabilitiesResponse2 createGetServiceCapabilitiesResponse2() { return new GetServiceCapabilitiesResponse2(); } /** * Create an instance of {@link ProfileCapabilities } * */ public ProfileCapabilities createProfileCapabilities() { return new ProfileCapabilities(); } /** * Create an instance of {@link StreamingCapabilities } * */ public StreamingCapabilities createStreamingCapabilities() { return new StreamingCapabilities(); } /** * Create an instance of {@link ConfigurationSet } * */ public ConfigurationSet createConfigurationSet() { return new ConfigurationSet(); } /** * Create an instance of {@link VideoSourceModeExtension } * */ public VideoSourceModeExtension createVideoSourceModeExtension() { return new VideoSourceModeExtension(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetVideoEncoderConfigurationOptions") public JAXBElement createGetVideoEncoderConfigurationOptions(GetConfiguration value) { return new JAXBElement(_GetVideoEncoderConfigurationOptions_QNAME, GetConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Capabilities2 }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "Capabilities") public JAXBElement createCapabilities(Capabilities2 value) { return new JAXBElement(_Capabilities_QNAME, Capabilities2 .class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link StartStopMulticastStreaming }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "StopMulticastStreaming") public JAXBElement createStopMulticastStreaming(StartStopMulticastStreaming value) { return new JAXBElement(_StopMulticastStreaming_QNAME, StartStopMulticastStreaming.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetAnalyticsConfigurations") public JAXBElement createGetAnalyticsConfigurations(GetConfiguration value) { return new JAXBElement(_GetAnalyticsConfigurations_QNAME, GetConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link StartStopMulticastStreaming }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "StartMulticastStreaming") public JAXBElement createStartMulticastStreaming(StartStopMulticastStreaming value) { return new JAXBElement(_StartMulticastStreaming_QNAME, StartStopMulticastStreaming.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetVideoSourceConfigurations") public JAXBElement createGetVideoSourceConfigurations(GetConfiguration value) { return new JAXBElement(_GetVideoSourceConfigurations_QNAME, GetConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetAudioEncoderConfigurationOptions") public JAXBElement createGetAudioEncoderConfigurationOptions(GetConfiguration value) { return new JAXBElement(_GetAudioEncoderConfigurationOptions_QNAME, GetConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetVideoSourceConfigurationOptions") public JAXBElement createGetVideoSourceConfigurationOptions(GetConfiguration value) { return new JAXBElement(_GetVideoSourceConfigurationOptions_QNAME, GetConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetVideoEncoderConfigurations") public JAXBElement createGetVideoEncoderConfigurations(GetConfiguration value) { return new JAXBElement(_GetVideoEncoderConfigurations_QNAME, GetConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetMetadataConfigurationOptions") public JAXBElement createGetMetadataConfigurationOptions(GetConfiguration value) { return new JAXBElement(_GetMetadataConfigurationOptions_QNAME, GetConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetAudioOutputConfigurationOptions") public JAXBElement createGetAudioOutputConfigurationOptions(GetConfiguration value) { return new JAXBElement(_GetAudioOutputConfigurationOptions_QNAME, GetConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link ConfigurationEnumeration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "ConfigurationEnumeration") public JAXBElement createConfigurationEnumeration(ConfigurationEnumeration value) { return new JAXBElement(_ConfigurationEnumeration_QNAME, ConfigurationEnumeration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetAudioSourceConfigurationOptions") public JAXBElement createGetAudioSourceConfigurationOptions(GetConfiguration value) { return new JAXBElement(_GetAudioSourceConfigurationOptions_QNAME, GetConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetAudioOutputConfigurations") public JAXBElement createGetAudioOutputConfigurations(GetConfiguration value) { return new JAXBElement(_GetAudioOutputConfigurations_QNAME, GetConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetAudioDecoderConfigurationOptions") public JAXBElement createGetAudioDecoderConfigurationOptions(GetConfiguration value) { return new JAXBElement(_GetAudioDecoderConfigurationOptions_QNAME, GetConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetMetadataConfigurations") public JAXBElement createGetMetadataConfigurations(GetConfiguration value) { return new JAXBElement(_GetMetadataConfigurations_QNAME, GetConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetAudioSourceConfigurations") public JAXBElement createGetAudioSourceConfigurations(GetConfiguration value) { return new JAXBElement(_GetAudioSourceConfigurations_QNAME, GetConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetAudioDecoderConfigurations") public JAXBElement createGetAudioDecoderConfigurations(GetConfiguration value) { return new JAXBElement(_GetAudioDecoderConfigurations_QNAME, GetConfiguration.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link GetConfiguration }{@code >}} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/media/wsdl", name = "GetAudioEncoderConfigurations") public JAXBElement createGetAudioEncoderConfigurations(GetConfiguration value) { return new JAXBElement(_GetAudioEncoderConfigurations_QNAME, GetConfiguration.class, null, value); } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/ProfileCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr ProfileCapabilities complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="ProfileCapabilities">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="MaximumNumberOfProfiles" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="ConfigurationsSupported" type="{http://www.onvif.org/ver10/schema}StringAttrList" />
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProfileCapabilities", propOrder = { "any" }) public class ProfileCapabilities { @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "MaximumNumberOfProfiles") protected Integer maximumNumberOfProfiles; @XmlAttribute(name = "ConfigurationsSupported") protected List configurationsSupported; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der maximumNumberOfProfiles-Eigenschaft ab. * * @return * possible object is * {@link Integer } * */ public Integer getMaximumNumberOfProfiles() { return maximumNumberOfProfiles; } /** * Legt den Wert der maximumNumberOfProfiles-Eigenschaft fest. * * @param value * allowed object is * {@link Integer } * */ public void setMaximumNumberOfProfiles(Integer value) { this.maximumNumberOfProfiles = value; } /** * Gets the value of the configurationsSupported property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the configurationsSupported property. * *

* For example, to add a new item, do as follows: *

     *    getConfigurationsSupported().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getConfigurationsSupported() { if (configurationsSupported == null) { configurationsSupported = new ArrayList(); } return this.configurationsSupported; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/RemoveConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ProfileToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *         <element name="Configuration" type="{http://www.onvif.org/ver20/media/wsdl}ConfigurationRef" maxOccurs="unbounded"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "configuration" }) @XmlRootElement(name = "RemoveConfiguration") public class RemoveConfiguration { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "Configuration", required = true) protected List configuration; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Gets the value of the configuration property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the configuration property. * *

* For example, to add a new item, do as follows: *

     *    getConfiguration().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ConfigurationRef } * * */ public List getConfiguration() { if (configuration == null) { configuration = new ArrayList(); } return this.configuration; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/RemoveConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RemoveConfigurationResponse") public class RemoveConfigurationResponse { } ================================================ FILE: src/org/onvif/ver20/media/wsdl/SetAudioDecoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioDecoderConfiguration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configuration" type="{http://www.onvif.org/ver10/schema}AudioDecoderConfiguration"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "SetAudioDecoderConfiguration") public class SetAudioDecoderConfiguration { @XmlElement(name = "Configuration", required = true) protected AudioDecoderConfiguration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return * possible object is * {@link AudioDecoderConfiguration } * */ public AudioDecoderConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is * {@link AudioDecoderConfiguration } * */ public void setConfiguration(AudioDecoderConfiguration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/SetAudioEncoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioEncoder2Configuration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configuration" type="{http://www.onvif.org/ver10/schema}AudioEncoder2Configuration"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "SetAudioEncoderConfiguration") public class SetAudioEncoderConfiguration { @XmlElement(name = "Configuration", required = true) protected AudioEncoder2Configuration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return * possible object is * {@link AudioEncoder2Configuration } * */ public AudioEncoder2Configuration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is * {@link AudioEncoder2Configuration } * */ public void setConfiguration(AudioEncoder2Configuration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/SetAudioOutputConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioOutputConfiguration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configuration" type="{http://www.onvif.org/ver10/schema}AudioOutputConfiguration"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "SetAudioOutputConfiguration") public class SetAudioOutputConfiguration { @XmlElement(name = "Configuration", required = true) protected AudioOutputConfiguration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return * possible object is * {@link AudioOutputConfiguration } * */ public AudioOutputConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is * {@link AudioOutputConfiguration } * */ public void setConfiguration(AudioOutputConfiguration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/SetAudioSourceConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.AudioSourceConfiguration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configuration" type="{http://www.onvif.org/ver10/schema}AudioSourceConfiguration"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "SetAudioSourceConfiguration") public class SetAudioSourceConfiguration { @XmlElement(name = "Configuration", required = true) protected AudioSourceConfiguration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return * possible object is * {@link AudioSourceConfiguration } * */ public AudioSourceConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is * {@link AudioSourceConfiguration } * */ public void setConfiguration(AudioSourceConfiguration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/SetConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetConfigurationResponse") public class SetConfigurationResponse { } ================================================ FILE: src/org/onvif/ver20/media/wsdl/SetMetadataConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.MetadataConfiguration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configuration" type="{http://www.onvif.org/ver10/schema}MetadataConfiguration"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "SetMetadataConfiguration") public class SetMetadataConfiguration { @XmlElement(name = "Configuration", required = true) protected MetadataConfiguration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return * possible object is * {@link MetadataConfiguration } * */ public MetadataConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is * {@link MetadataConfiguration } * */ public void setConfiguration(MetadataConfiguration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/SetOSD.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.OSDConfiguration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="OSD" type="{http://www.onvif.org/ver10/schema}OSDConfiguration"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "osd" }) @XmlRootElement(name = "SetOSD") public class SetOSD { @XmlElement(name = "OSD", required = true) protected OSDConfiguration osd; /** * Ruft den Wert der osd-Eigenschaft ab. * * @return * possible object is * {@link OSDConfiguration } * */ public OSDConfiguration getOSD() { return osd; } /** * Legt den Wert der osd-Eigenschaft fest. * * @param value * allowed object is * {@link OSDConfiguration } * */ public void setOSD(OSDConfiguration value) { this.osd = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/SetSynchronizationPoint.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ProfileToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "SetSynchronizationPoint") public class SetSynchronizationPoint { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/SetSynchronizationPointResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetSynchronizationPointResponse") public class SetSynchronizationPointResponse { } ================================================ FILE: src/org/onvif/ver20/media/wsdl/SetVideoEncoderConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoEncoder2Configuration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configuration" type="{http://www.onvif.org/ver10/schema}VideoEncoder2Configuration"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "SetVideoEncoderConfiguration") public class SetVideoEncoderConfiguration { @XmlElement(name = "Configuration", required = true) protected VideoEncoder2Configuration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return * possible object is * {@link VideoEncoder2Configuration } * */ public VideoEncoder2Configuration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is * {@link VideoEncoder2Configuration } * */ public void setConfiguration(VideoEncoder2Configuration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/SetVideoSourceConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.VideoSourceConfiguration; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Configuration" type="{http://www.onvif.org/ver10/schema}VideoSourceConfiguration"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "SetVideoSourceConfiguration") public class SetVideoSourceConfiguration { @XmlElement(name = "Configuration", required = true) protected VideoSourceConfiguration configuration; /** * Ruft den Wert der configuration-Eigenschaft ab. * * @return * possible object is * {@link VideoSourceConfiguration } * */ public VideoSourceConfiguration getConfiguration() { return configuration; } /** * Legt den Wert der configuration-Eigenschaft fest. * * @param value * allowed object is * {@link VideoSourceConfiguration } * */ public void setConfiguration(VideoSourceConfiguration value) { this.configuration = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/SetVideoSourceMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="VideoSourceToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *         <element name="VideoSourceModeToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "videoSourceToken", "videoSourceModeToken" }) @XmlRootElement(name = "SetVideoSourceMode") public class SetVideoSourceMode { @XmlElement(name = "VideoSourceToken", required = true) protected String videoSourceToken; @XmlElement(name = "VideoSourceModeToken", required = true) protected String videoSourceModeToken; /** * Ruft den Wert der videoSourceToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getVideoSourceToken() { return videoSourceToken; } /** * Legt den Wert der videoSourceToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setVideoSourceToken(String value) { this.videoSourceToken = value; } /** * Ruft den Wert der videoSourceModeToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getVideoSourceModeToken() { return videoSourceModeToken; } /** * Legt den Wert der videoSourceModeToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setVideoSourceModeToken(String value) { this.videoSourceModeToken = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/SetVideoSourceModeResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Reboot" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "reboot" }) @XmlRootElement(name = "SetVideoSourceModeResponse") public class SetVideoSourceModeResponse { @XmlElement(name = "Reboot") protected boolean reboot; /** * Ruft den Wert der reboot-Eigenschaft ab. * */ public boolean isReboot() { return reboot; } /** * Legt den Wert der reboot-Eigenschaft fest. * */ public void setReboot(boolean value) { this.reboot = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/StartStopMulticastStreaming.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr StartStopMulticastStreaming complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="StartStopMulticastStreaming">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ProfileToken" type="{http://www.onvif.org/ver10/schema}ReferenceToken"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StartStopMulticastStreaming", propOrder = { "profileToken" }) public class StartStopMulticastStreaming { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/StartStopMulticastStreamingResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "StartStopMulticastStreamingResponse") public class StartStopMulticastStreamingResponse { } ================================================ FILE: src/org/onvif/ver20/media/wsdl/StreamingCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse fr StreamingCapabilities complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="StreamingCapabilities">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="RTSPStreaming" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="RTPMulticast" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="RTP_RTSP_TCP" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="NonAggregateControl" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StreamingCapabilities", propOrder = { "any" }) public class StreamingCapabilities { @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "RTSPStreaming") protected Boolean rtspStreaming; @XmlAttribute(name = "RTPMulticast") protected Boolean rtpMulticast; @XmlAttribute(name = "RTP_RTSP_TCP") protected Boolean rtprtsptcp; @XmlAttribute(name = "NonAggregateControl") protected Boolean nonAggregateControl; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der rtspStreaming-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isRTSPStreaming() { return rtspStreaming; } /** * Legt den Wert der rtspStreaming-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setRTSPStreaming(Boolean value) { this.rtspStreaming = value; } /** * Ruft den Wert der rtpMulticast-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isRTPMulticast() { return rtpMulticast; } /** * Legt den Wert der rtpMulticast-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setRTPMulticast(Boolean value) { this.rtpMulticast = value; } /** * Ruft den Wert der rtprtsptcp-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isRTPRTSPTCP() { return rtprtsptcp; } /** * Legt den Wert der rtprtsptcp-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setRTPRTSPTCP(Boolean value) { this.rtprtsptcp = value; } /** * Ruft den Wert der nonAggregateControl-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isNonAggregateControl() { return nonAggregateControl; } /** * Legt den Wert der nonAggregateControl-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setNonAggregateControl(Boolean value) { this.nonAggregateControl = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/TransportProtocol.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse fr TransportProtocol. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

*

 * <simpleType name="TransportProtocol">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="RtspUnicast"/>
 *     <enumeration value="RtspMulticast"/>
 *     <enumeration value="RTSP"/>
 *     <enumeration value="RtspOverHttp"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "TransportProtocol") @XmlEnum public enum TransportProtocol { @XmlEnumValue("RtspUnicast") RTSP_UNICAST("RtspUnicast"), @XmlEnumValue("RtspMulticast") RTSP_MULTICAST("RtspMulticast"), RTSP("RTSP"), @XmlEnumValue("RtspOverHttp") RTSP_OVER_HTTP("RtspOverHttp"); private final String value; TransportProtocol(String v) { value = v; } public String value() { return value; } public static TransportProtocol fromValue(String v) { for (TransportProtocol c: TransportProtocol.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/VideoSourceMode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlList; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.onvif.ver10.schema.VideoResolution; /** *

Java-Klasse fr VideoSourceMode complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="VideoSourceMode">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="MaxFramerate" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <element name="MaxResolution" type="{http://www.onvif.org/ver10/schema}VideoResolution"/>
 *         <element name="Encodings" type="{http://www.onvif.org/ver20/media/wsdl}EncodingTypes"/>
 *         <element name="Reboot" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="Description" type="{http://www.onvif.org/ver10/schema}Description" minOccurs="0"/>
 *         <element name="Extension" type="{http://www.onvif.org/ver20/media/wsdl}VideoSourceModeExtension" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="token" use="required" type="{http://www.onvif.org/ver10/schema}ReferenceToken" />
 *       <attribute name="Enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoSourceMode", propOrder = { "maxFramerate", "maxResolution", "encodings", "reboot", "description", "extension" }) public class VideoSourceMode { @XmlElement(name = "MaxFramerate") protected float maxFramerate; @XmlElement(name = "MaxResolution", required = true) protected VideoResolution maxResolution; @XmlList @XmlElement(name = "Encodings", required = true) protected List encodings; @XmlElement(name = "Reboot") protected boolean reboot; @XmlElement(name = "Description") protected String description; @XmlElement(name = "Extension") protected VideoSourceModeExtension extension; @XmlAttribute(name = "token", required = true) protected String token; @XmlAttribute(name = "Enabled") protected Boolean enabled; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der maxFramerate-Eigenschaft ab. * */ public float getMaxFramerate() { return maxFramerate; } /** * Legt den Wert der maxFramerate-Eigenschaft fest. * */ public void setMaxFramerate(float value) { this.maxFramerate = value; } /** * Ruft den Wert der maxResolution-Eigenschaft ab. * * @return * possible object is * {@link VideoResolution } * */ public VideoResolution getMaxResolution() { return maxResolution; } /** * Legt den Wert der maxResolution-Eigenschaft fest. * * @param value * allowed object is * {@link VideoResolution } * */ public void setMaxResolution(VideoResolution value) { this.maxResolution = value; } /** * Gets the value of the encodings property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the encodings property. * *

* For example, to add a new item, do as follows: *

     *    getEncodings().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getEncodings() { if (encodings == null) { encodings = new ArrayList(); } return this.encodings; } /** * Ruft den Wert der reboot-Eigenschaft ab. * */ public boolean isReboot() { return reboot; } /** * Legt den Wert der reboot-Eigenschaft fest. * */ public void setReboot(boolean value) { this.reboot = value; } /** * Ruft den Wert der description-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Legt den Wert der description-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Ruft den Wert der extension-Eigenschaft ab. * * @return * possible object is * {@link VideoSourceModeExtension } * */ public VideoSourceModeExtension getExtension() { return extension; } /** * Legt den Wert der extension-Eigenschaft fest. * * @param value * allowed object is * {@link VideoSourceModeExtension } * */ public void setExtension(VideoSourceModeExtension value) { this.extension = value; } /** * Ruft den Wert der token-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getToken() { return token; } /** * Legt den Wert der token-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setToken(String value) { this.token = value; } /** * Ruft den Wert der enabled-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isEnabled() { return enabled; } /** * Legt den Wert der enabled-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setEnabled(Boolean value) { this.enabled = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/VideoSourceModeExtension.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // package org.onvif.ver20.media.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

Java-Klasse fr VideoSourceModeExtension complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="VideoSourceModeExtension">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VideoSourceModeExtension", propOrder = { "any" }) public class VideoSourceModeExtension { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } ================================================ FILE: src/org/onvif/ver20/media/wsdl/package-info.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.02.05 um 06:25:30 PM CET // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver20/media/wsdl", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) package org.onvif.ver20.media.wsdl; ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/AbsoluteMove.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZSpeed; import org.onvif.ver10.schema.PTZVector; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "position", "speed" }) @XmlRootElement(name = "AbsoluteMove") public class AbsoluteMove { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "Position", required = true) protected PTZVector position; @XmlElement(name = "Speed") protected PTZSpeed speed; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der position-Eigenschaft ab. * * @return possible object is {@link PTZVector } * */ public PTZVector getPosition() { return position; } /** * Legt den Wert der position-Eigenschaft fest. * * @param value * allowed object is {@link PTZVector } * */ public void setPosition(PTZVector value) { this.position = value; } /** * Ruft den Wert der speed-Eigenschaft ab. * * @return possible object is {@link PTZSpeed } * */ public PTZSpeed getSpeed() { return speed; } /** * Legt den Wert der speed-Eigenschaft fest. * * @param value * allowed object is {@link PTZSpeed } * */ public void setSpeed(PTZSpeed value) { this.speed = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/AbsoluteMoveResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "AbsoluteMoveResponse") public class AbsoluteMoveResponse { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/Capabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Capabilities complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Capabilities", propOrder = { "any" }) public class Capabilities { @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "EFlip") protected Boolean eFlip; @XmlAttribute(name = "Reverse") protected Boolean reverse; @XmlAttribute(name = "GetCompatibleConfigurations") protected Boolean getCompatibleConfigurations; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der eFlip-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isEFlip() { return eFlip; } /** * Legt den Wert der eFlip-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setEFlip(Boolean value) { this.eFlip = value; } /** * Ruft den Wert der reverse-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isReverse() { return reverse; } /** * Legt den Wert der reverse-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setReverse(Boolean value) { this.reverse = value; } /** * Ruft den Wert der getCompatibleConfigurations-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isGetCompatibleConfigurations() { return getCompatibleConfigurations; } /** * Legt den Wert der getCompatibleConfigurations-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setGetCompatibleConfigurations(Boolean value) { this.getCompatibleConfigurations = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/ContinuousMove.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.Duration; import org.onvif.ver10.schema.PTZSpeed; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "velocity", "timeout" }) @XmlRootElement(name = "ContinuousMove") public class ContinuousMove { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "Velocity", required = true) protected PTZSpeed velocity; @XmlElement(name = "Timeout") protected Duration timeout; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der velocity-Eigenschaft ab. * * @return possible object is {@link PTZSpeed } * */ public PTZSpeed getVelocity() { return velocity; } /** * Legt den Wert der velocity-Eigenschaft fest. * * @param value * allowed object is {@link PTZSpeed } * */ public void setVelocity(PTZSpeed value) { this.velocity = value; } /** * Ruft den Wert der timeout-Eigenschaft ab. * * @return possible object is {@link Duration } * */ public Duration getTimeout() { return timeout; } /** * Legt den Wert der timeout-Eigenschaft fest. * * @param value * allowed object is {@link Duration } * */ public void setTimeout(Duration value) { this.timeout = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/ContinuousMoveResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "ContinuousMoveResponse") public class ContinuousMoveResponse { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/CreatePresetTour.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "CreatePresetTour") public class CreatePresetTour { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/CreatePresetTourResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "presetTourToken" }) @XmlRootElement(name = "CreatePresetTourResponse") public class CreatePresetTourResponse { @XmlElement(name = "PresetTourToken", required = true) protected String presetTourToken; /** * Ruft den Wert der presetTourToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPresetTourToken() { return presetTourToken; } /** * Legt den Wert der presetTourToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPresetTourToken(String value) { this.presetTourToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetCompatibleConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetCompatibleConfigurations") public class GetCompatibleConfigurations { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetCompatibleConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ptzConfiguration" }) @XmlRootElement(name = "GetCompatibleConfigurationsResponse") public class GetCompatibleConfigurationsResponse { @XmlElement(name = "PTZConfiguration") protected List ptzConfiguration; /** * Gets the value of the ptzConfiguration property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the ptzConfiguration property. * *

* For example, to add a new item, do as follows: * *

	 * getPTZConfiguration().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PTZConfiguration } * * */ public List getPTZConfiguration() { if (ptzConfiguration == null) { ptzConfiguration = new ArrayList(); } return this.ptzConfiguration; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ptzConfigurationToken" }) @XmlRootElement(name = "GetConfiguration") public class GetConfiguration { @XmlElement(name = "PTZConfigurationToken", required = true) protected String ptzConfigurationToken; /** * Ruft den Wert der ptzConfigurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPTZConfigurationToken() { return ptzConfigurationToken; } /** * Legt den Wert der ptzConfigurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPTZConfigurationToken(String value) { this.ptzConfigurationToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetConfigurationOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationToken" }) @XmlRootElement(name = "GetConfigurationOptions") public class GetConfigurationOptions { @XmlElement(name = "ConfigurationToken", required = true) protected String configurationToken; /** * Ruft den Wert der configurationToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getConfigurationToken() { return configurationToken; } /** * Legt den Wert der configurationToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setConfigurationToken(String value) { this.configurationToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetConfigurationOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZConfigurationOptions; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ptzConfigurationOptions" }) @XmlRootElement(name = "GetConfigurationOptionsResponse") public class GetConfigurationOptionsResponse { @XmlElement(name = "PTZConfigurationOptions", required = true) protected PTZConfigurationOptions ptzConfigurationOptions; /** * Ruft den Wert der ptzConfigurationOptions-Eigenschaft ab. * * @return possible object is {@link PTZConfigurationOptions } * */ public PTZConfigurationOptions getPTZConfigurationOptions() { return ptzConfigurationOptions; } /** * Legt den Wert der ptzConfigurationOptions-Eigenschaft fest. * * @param value * allowed object is {@link PTZConfigurationOptions } * */ public void setPTZConfigurationOptions(PTZConfigurationOptions value) { this.ptzConfigurationOptions = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ptzConfiguration" }) @XmlRootElement(name = "GetConfigurationResponse") public class GetConfigurationResponse { @XmlElement(name = "PTZConfiguration", required = true) protected PTZConfiguration ptzConfiguration; /** * Ruft den Wert der ptzConfiguration-Eigenschaft ab. * * @return possible object is {@link PTZConfiguration } * */ public PTZConfiguration getPTZConfiguration() { return ptzConfiguration; } /** * Legt den Wert der ptzConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link PTZConfiguration } * */ public void setPTZConfiguration(PTZConfiguration value) { this.ptzConfiguration = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetConfigurations.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetConfigurations") public class GetConfigurations { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetConfigurationsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ptzConfiguration" }) @XmlRootElement(name = "GetConfigurationsResponse") public class GetConfigurationsResponse { @XmlElement(name = "PTZConfiguration") protected List ptzConfiguration; /** * Gets the value of the ptzConfiguration property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the ptzConfiguration property. * *

* For example, to add a new item, do as follows: * *

	 * getPTZConfiguration().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PTZConfiguration } * * */ public List getPTZConfiguration() { if (ptzConfiguration == null) { ptzConfiguration = new ArrayList(); } return this.ptzConfiguration; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetNode.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "nodeToken" }) @XmlRootElement(name = "GetNode") public class GetNode { @XmlElement(name = "NodeToken", required = true) protected String nodeToken; /** * Ruft den Wert der nodeToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getNodeToken() { return nodeToken; } /** * Legt den Wert der nodeToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setNodeToken(String value) { this.nodeToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetNodeResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZNode; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ptzNode" }) @XmlRootElement(name = "GetNodeResponse") public class GetNodeResponse { @XmlElement(name = "PTZNode", required = true) protected PTZNode ptzNode; /** * Ruft den Wert der ptzNode-Eigenschaft ab. * * @return possible object is {@link PTZNode } * */ public PTZNode getPTZNode() { return ptzNode; } /** * Legt den Wert der ptzNode-Eigenschaft fest. * * @param value * allowed object is {@link PTZNode } * */ public void setPTZNode(PTZNode value) { this.ptzNode = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetNodes.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetNodes") public class GetNodes { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetNodesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZNode; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ptzNode" }) @XmlRootElement(name = "GetNodesResponse") public class GetNodesResponse { @XmlElement(name = "PTZNode") protected List ptzNode; /** * Gets the value of the ptzNode property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the ptzNode property. * *

* For example, to add a new item, do as follows: * *

	 * getPTZNode().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PTZNode } * * */ public List getPTZNode() { if (ptzNode == null) { ptzNode = new ArrayList(); } return this.ptzNode; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetPresetTour.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "presetTourToken" }) @XmlRootElement(name = "GetPresetTour") public class GetPresetTour { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "PresetTourToken", required = true) protected String presetTourToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der presetTourToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPresetTourToken() { return presetTourToken; } /** * Legt den Wert der presetTourToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPresetTourToken(String value) { this.presetTourToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetPresetTourOptions.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "presetTourToken" }) @XmlRootElement(name = "GetPresetTourOptions") public class GetPresetTourOptions { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "PresetTourToken") protected String presetTourToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der presetTourToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPresetTourToken() { return presetTourToken; } /** * Legt den Wert der presetTourToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPresetTourToken(String value) { this.presetTourToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetPresetTourOptionsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZPresetTourOptions; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "options" }) @XmlRootElement(name = "GetPresetTourOptionsResponse") public class GetPresetTourOptionsResponse { @XmlElement(name = "Options", required = true) protected PTZPresetTourOptions options; /** * Ruft den Wert der options-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourOptions } * */ public PTZPresetTourOptions getOptions() { return options; } /** * Legt den Wert der options-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourOptions } * */ public void setOptions(PTZPresetTourOptions value) { this.options = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetPresetTourResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PresetTour; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "presetTour" }) @XmlRootElement(name = "GetPresetTourResponse") public class GetPresetTourResponse { @XmlElement(name = "PresetTour", required = true) protected PresetTour presetTour; /** * Ruft den Wert der presetTour-Eigenschaft ab. * * @return possible object is {@link PresetTour } * */ public PresetTour getPresetTour() { return presetTour; } /** * Legt den Wert der presetTour-Eigenschaft fest. * * @param value * allowed object is {@link PresetTour } * */ public void setPresetTour(PresetTour value) { this.presetTour = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetPresetTours.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetPresetTours") public class GetPresetTours { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetPresetToursResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PresetTour; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "presetTour" }) @XmlRootElement(name = "GetPresetToursResponse") public class GetPresetToursResponse { @XmlElement(name = "PresetTour") protected List presetTour; /** * Gets the value of the presetTour property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the presetTour property. * *

* For example, to add a new item, do as follows: * *

	 * getPresetTour().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PresetTour } * * */ public List getPresetTour() { if (presetTour == null) { presetTour = new ArrayList(); } return this.presetTour; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetPresets.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetPresets") public class GetPresets { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetPresetsResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZPreset; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "preset" }) @XmlRootElement(name = "GetPresetsResponse") public class GetPresetsResponse { @XmlElement(name = "Preset") protected List preset; /** * Gets the value of the preset property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the preset property. * *

* For example, to add a new item, do as follows: * *

	 * getPreset().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link PTZPreset } * * */ public List getPreset() { if (preset == null) { preset = new ArrayList(); } return this.preset; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetServiceCapabilities.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GetServiceCapabilities") public class GetServiceCapabilities { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetServiceCapabilitiesResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "capabilities" }) @XmlRootElement(name = "GetServiceCapabilitiesResponse") public class GetServiceCapabilitiesResponse { @XmlElement(name = "Capabilities", required = true) protected Capabilities capabilities; /** * Ruft den Wert der capabilities-Eigenschaft ab. * * @return possible object is {@link Capabilities } * */ public Capabilities getCapabilities() { return capabilities; } /** * Legt den Wert der capabilities-Eigenschaft fest. * * @param value * allowed object is {@link Capabilities } * */ public void setCapabilities(Capabilities value) { this.capabilities = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetStatus.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "GetStatus") public class GetStatus { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GetStatusResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZStatus; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ptzStatus" }) @XmlRootElement(name = "GetStatusResponse") public class GetStatusResponse { @XmlElement(name = "PTZStatus", required = true) protected PTZStatus ptzStatus; /** * Ruft den Wert der ptzStatus-Eigenschaft ab. * * @return possible object is {@link PTZStatus } * */ public PTZStatus getPTZStatus() { return ptzStatus; } /** * Legt den Wert der ptzStatus-Eigenschaft fest. * * @param value * allowed object is {@link PTZStatus } * */ public void setPTZStatus(PTZStatus value) { this.ptzStatus = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GotoHomePosition.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZSpeed; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "speed" }) @XmlRootElement(name = "GotoHomePosition") public class GotoHomePosition { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "Speed") protected PTZSpeed speed; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der speed-Eigenschaft ab. * * @return possible object is {@link PTZSpeed } * */ public PTZSpeed getSpeed() { return speed; } /** * Legt den Wert der speed-Eigenschaft fest. * * @param value * allowed object is {@link PTZSpeed } * */ public void setSpeed(PTZSpeed value) { this.speed = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GotoHomePositionResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GotoHomePositionResponse") public class GotoHomePositionResponse { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GotoPreset.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZSpeed; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "presetToken", "speed" }) @XmlRootElement(name = "GotoPreset") public class GotoPreset { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "PresetToken", required = true) protected String presetToken; @XmlElement(name = "Speed") protected PTZSpeed speed; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der presetToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPresetToken() { return presetToken; } /** * Legt den Wert der presetToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPresetToken(String value) { this.presetToken = value; } /** * Ruft den Wert der speed-Eigenschaft ab. * * @return possible object is {@link PTZSpeed } * */ public PTZSpeed getSpeed() { return speed; } /** * Legt den Wert der speed-Eigenschaft fest. * * @param value * allowed object is {@link PTZSpeed } * */ public void setSpeed(PTZSpeed value) { this.speed = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/GotoPresetResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "GotoPresetResponse") public class GotoPresetResponse { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/ModifyPresetTour.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PresetTour; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "presetTour" }) @XmlRootElement(name = "ModifyPresetTour") public class ModifyPresetTour { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "PresetTour", required = true) protected PresetTour presetTour; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der presetTour-Eigenschaft ab. * * @return possible object is {@link PresetTour } * */ public PresetTour getPresetTour() { return presetTour; } /** * Legt den Wert der presetTour-Eigenschaft fest. * * @param value * allowed object is {@link PresetTour } * */ public void setPresetTour(PresetTour value) { this.presetTour = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/ModifyPresetTourResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "ModifyPresetTourResponse") public class ModifyPresetTourResponse { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/ObjectFactory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each Java content interface and Java element interface generated in the org.onvif.ver20.ptz.wsdl package. *

* An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema * derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this * class. * */ @XmlRegistry public class ObjectFactory { private final static QName _Capabilities_QNAME = new QName("http://www.onvif.org/ver20/ptz/wsdl", "Capabilities"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.onvif.ver20.ptz.wsdl * */ public ObjectFactory() { } /** * Create an instance of {@link GetNodes } * */ public GetNodes createGetNodes() { return new GetNodes(); } /** * Create an instance of {@link RemovePresetResponse } * */ public RemovePresetResponse createRemovePresetResponse() { return new RemovePresetResponse(); } /** * Create an instance of {@link SetHomePosition } * */ public SetHomePosition createSetHomePosition() { return new SetHomePosition(); } /** * Create an instance of {@link GotoHomePosition } * */ public GotoHomePosition createGotoHomePosition() { return new GotoHomePosition(); } /** * Create an instance of {@link RelativeMoveResponse } * */ public RelativeMoveResponse createRelativeMoveResponse() { return new RelativeMoveResponse(); } /** * Create an instance of {@link GetNode } * */ public GetNode createGetNode() { return new GetNode(); } /** * Create an instance of {@link GetServiceCapabilitiesResponse } * */ public GetServiceCapabilitiesResponse createGetServiceCapabilitiesResponse() { return new GetServiceCapabilitiesResponse(); } /** * Create an instance of {@link Capabilities } * */ public Capabilities createCapabilities() { return new Capabilities(); } /** * Create an instance of {@link GotoPresetResponse } * */ public GotoPresetResponse createGotoPresetResponse() { return new GotoPresetResponse(); } /** * Create an instance of {@link SendAuxiliaryCommand } * */ public SendAuxiliaryCommand createSendAuxiliaryCommand() { return new SendAuxiliaryCommand(); } /** * Create an instance of {@link OperatePresetTour } * */ public OperatePresetTour createOperatePresetTour() { return new OperatePresetTour(); } /** * Create an instance of {@link GotoPreset } * */ public GotoPreset createGotoPreset() { return new GotoPreset(); } /** * Create an instance of {@link SetConfigurationResponse } * */ public SetConfigurationResponse createSetConfigurationResponse() { return new SetConfigurationResponse(); } /** * Create an instance of {@link GetPresetTourResponse } * */ public GetPresetTourResponse createGetPresetTourResponse() { return new GetPresetTourResponse(); } /** * Create an instance of {@link GetConfigurationResponse } * */ public GetConfigurationResponse createGetConfigurationResponse() { return new GetConfigurationResponse(); } /** * Create an instance of {@link SetConfiguration } * */ public SetConfiguration createSetConfiguration() { return new SetConfiguration(); } /** * Create an instance of {@link GetNodesResponse } * */ public GetNodesResponse createGetNodesResponse() { return new GetNodesResponse(); } /** * Create an instance of {@link GetPresetTourOptions } * */ public GetPresetTourOptions createGetPresetTourOptions() { return new GetPresetTourOptions(); } /** * Create an instance of {@link CreatePresetTour } * */ public CreatePresetTour createCreatePresetTour() { return new CreatePresetTour(); } /** * Create an instance of {@link GetConfiguration } * */ public GetConfiguration createGetConfiguration() { return new GetConfiguration(); } /** * Create an instance of {@link GetPresetTour } * */ public GetPresetTour createGetPresetTour() { return new GetPresetTour(); } /** * Create an instance of {@link GetPresetTourOptionsResponse } * */ public GetPresetTourOptionsResponse createGetPresetTourOptionsResponse() { return new GetPresetTourOptionsResponse(); } /** * Create an instance of {@link GetPresetTours } * */ public GetPresetTours createGetPresetTours() { return new GetPresetTours(); } /** * Create an instance of {@link GetConfigurationsResponse } * */ public GetConfigurationsResponse createGetConfigurationsResponse() { return new GetConfigurationsResponse(); } /** * Create an instance of {@link AbsoluteMove } * */ public AbsoluteMove createAbsoluteMove() { return new AbsoluteMove(); } /** * Create an instance of {@link OperatePresetTourResponse } * */ public OperatePresetTourResponse createOperatePresetTourResponse() { return new OperatePresetTourResponse(); } /** * Create an instance of {@link GetNodeResponse } * */ public GetNodeResponse createGetNodeResponse() { return new GetNodeResponse(); } /** * Create an instance of {@link SendAuxiliaryCommandResponse } * */ public SendAuxiliaryCommandResponse createSendAuxiliaryCommandResponse() { return new SendAuxiliaryCommandResponse(); } /** * Create an instance of {@link GetServiceCapabilities } * */ public GetServiceCapabilities createGetServiceCapabilities() { return new GetServiceCapabilities(); } /** * Create an instance of {@link RemovePresetTour } * */ public RemovePresetTour createRemovePresetTour() { return new RemovePresetTour(); } /** * Create an instance of {@link GetPresets } * */ public GetPresets createGetPresets() { return new GetPresets(); } /** * Create an instance of {@link ContinuousMoveResponse } * */ public ContinuousMoveResponse createContinuousMoveResponse() { return new ContinuousMoveResponse(); } /** * Create an instance of {@link SetHomePositionResponse } * */ public SetHomePositionResponse createSetHomePositionResponse() { return new SetHomePositionResponse(); } /** * Create an instance of {@link GetCompatibleConfigurations } * */ public GetCompatibleConfigurations createGetCompatibleConfigurations() { return new GetCompatibleConfigurations(); } /** * Create an instance of {@link ContinuousMove } * */ public ContinuousMove createContinuousMove() { return new ContinuousMove(); } /** * Create an instance of {@link RelativeMove } * */ public RelativeMove createRelativeMove() { return new RelativeMove(); } /** * Create an instance of {@link ModifyPresetTour } * */ public ModifyPresetTour createModifyPresetTour() { return new ModifyPresetTour(); } /** * Create an instance of {@link GetPresetToursResponse } * */ public GetPresetToursResponse createGetPresetToursResponse() { return new GetPresetToursResponse(); } /** * Create an instance of {@link ModifyPresetTourResponse } * */ public ModifyPresetTourResponse createModifyPresetTourResponse() { return new ModifyPresetTourResponse(); } /** * Create an instance of {@link GetStatus } * */ public GetStatus createGetStatus() { return new GetStatus(); } /** * Create an instance of {@link SetPresetResponse } * */ public SetPresetResponse createSetPresetResponse() { return new SetPresetResponse(); } /** * Create an instance of {@link Stop } * */ public Stop createStop() { return new Stop(); } /** * Create an instance of {@link AbsoluteMoveResponse } * */ public AbsoluteMoveResponse createAbsoluteMoveResponse() { return new AbsoluteMoveResponse(); } /** * Create an instance of {@link GotoHomePositionResponse } * */ public GotoHomePositionResponse createGotoHomePositionResponse() { return new GotoHomePositionResponse(); } /** * Create an instance of {@link GetCompatibleConfigurationsResponse } * */ public GetCompatibleConfigurationsResponse createGetCompatibleConfigurationsResponse() { return new GetCompatibleConfigurationsResponse(); } /** * Create an instance of {@link StopResponse } * */ public StopResponse createStopResponse() { return new StopResponse(); } /** * Create an instance of {@link GetConfigurationOptions } * */ public GetConfigurationOptions createGetConfigurationOptions() { return new GetConfigurationOptions(); } /** * Create an instance of {@link CreatePresetTourResponse } * */ public CreatePresetTourResponse createCreatePresetTourResponse() { return new CreatePresetTourResponse(); } /** * Create an instance of {@link GetPresetsResponse } * */ public GetPresetsResponse createGetPresetsResponse() { return new GetPresetsResponse(); } /** * Create an instance of {@link GetConfigurations } * */ public GetConfigurations createGetConfigurations() { return new GetConfigurations(); } /** * Create an instance of {@link RemovePresetTourResponse } * */ public RemovePresetTourResponse createRemovePresetTourResponse() { return new RemovePresetTourResponse(); } /** * Create an instance of {@link SetPreset } * */ public SetPreset createSetPreset() { return new SetPreset(); } /** * Create an instance of {@link GetStatusResponse } * */ public GetStatusResponse createGetStatusResponse() { return new GetStatusResponse(); } /** * Create an instance of {@link RemovePreset } * */ public RemovePreset createRemovePreset() { return new RemovePreset(); } /** * Create an instance of {@link GetConfigurationOptionsResponse } * */ public GetConfigurationOptionsResponse createGetConfigurationOptionsResponse() { return new GetConfigurationOptionsResponse(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Capabilities }{@code >} * */ @XmlElementDecl(namespace = "http://www.onvif.org/ver20/ptz/wsdl", name = "Capabilities") public JAXBElement createCapabilities(Capabilities value) { return new JAXBElement(_Capabilities_QNAME, Capabilities.class, null, value); } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/OperatePresetTour.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZPresetTourOperation; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "presetTourToken", "operation" }) @XmlRootElement(name = "OperatePresetTour") public class OperatePresetTour { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "PresetTourToken", required = true) protected String presetTourToken; @XmlElement(name = "Operation", required = true) protected PTZPresetTourOperation operation; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der presetTourToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPresetTourToken() { return presetTourToken; } /** * Legt den Wert der presetTourToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPresetTourToken(String value) { this.presetTourToken = value; } /** * Ruft den Wert der operation-Eigenschaft ab. * * @return possible object is {@link PTZPresetTourOperation } * */ public PTZPresetTourOperation getOperation() { return operation; } /** * Legt den Wert der operation-Eigenschaft fest. * * @param value * allowed object is {@link PTZPresetTourOperation } * */ public void setOperation(PTZPresetTourOperation value) { this.operation = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/OperatePresetTourResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "OperatePresetTourResponse") public class OperatePresetTourResponse { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/RelativeMove.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZSpeed; import org.onvif.ver10.schema.PTZVector; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "translation", "speed" }) @XmlRootElement(name = "RelativeMove") public class RelativeMove { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "Translation", required = true) protected PTZVector translation; @XmlElement(name = "Speed") protected PTZSpeed speed; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der translation-Eigenschaft ab. * * @return possible object is {@link PTZVector } * */ public PTZVector getTranslation() { return translation; } /** * Legt den Wert der translation-Eigenschaft fest. * * @param value * allowed object is {@link PTZVector } * */ public void setTranslation(PTZVector value) { this.translation = value; } /** * Ruft den Wert der speed-Eigenschaft ab. * * @return possible object is {@link PTZSpeed } * */ public PTZSpeed getSpeed() { return speed; } /** * Legt den Wert der speed-Eigenschaft fest. * * @param value * allowed object is {@link PTZSpeed } * */ public void setSpeed(PTZSpeed value) { this.speed = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/RelativeMoveResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RelativeMoveResponse") public class RelativeMoveResponse { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/RemovePreset.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "presetToken" }) @XmlRootElement(name = "RemovePreset") public class RemovePreset { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "PresetToken", required = true) protected String presetToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der presetToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPresetToken() { return presetToken; } /** * Legt den Wert der presetToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPresetToken(String value) { this.presetToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/RemovePresetResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RemovePresetResponse") public class RemovePresetResponse { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/RemovePresetTour.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "presetTourToken" }) @XmlRootElement(name = "RemovePresetTour") public class RemovePresetTour { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "PresetTourToken", required = true) protected String presetTourToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der presetTourToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPresetTourToken() { return presetTourToken; } /** * Legt den Wert der presetTourToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPresetTourToken(String value) { this.presetTourToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/RemovePresetTourResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "RemovePresetTourResponse") public class RemovePresetTourResponse { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/SendAuxiliaryCommand.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "auxiliaryData" }) @XmlRootElement(name = "SendAuxiliaryCommand") public class SendAuxiliaryCommand { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "AuxiliaryData", required = true) protected String auxiliaryData; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der auxiliaryData-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getAuxiliaryData() { return auxiliaryData; } /** * Legt den Wert der auxiliaryData-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setAuxiliaryData(String value) { this.auxiliaryData = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/SendAuxiliaryCommandResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "auxiliaryResponse" }) @XmlRootElement(name = "SendAuxiliaryCommandResponse") public class SendAuxiliaryCommandResponse { @XmlElement(name = "AuxiliaryResponse", required = true) protected String auxiliaryResponse; /** * Ruft den Wert der auxiliaryResponse-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getAuxiliaryResponse() { return auxiliaryResponse; } /** * Legt den Wert der auxiliaryResponse-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setAuxiliaryResponse(String value) { this.auxiliaryResponse = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/SetConfiguration.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.onvif.ver10.schema.PTZConfiguration; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ptzConfiguration", "forcePersistence" }) @XmlRootElement(name = "SetConfiguration") public class SetConfiguration { @XmlElement(name = "PTZConfiguration", required = true) protected PTZConfiguration ptzConfiguration; @XmlElement(name = "ForcePersistence") protected boolean forcePersistence; /** * Ruft den Wert der ptzConfiguration-Eigenschaft ab. * * @return possible object is {@link PTZConfiguration } * */ public PTZConfiguration getPTZConfiguration() { return ptzConfiguration; } /** * Legt den Wert der ptzConfiguration-Eigenschaft fest. * * @param value * allowed object is {@link PTZConfiguration } * */ public void setPTZConfiguration(PTZConfiguration value) { this.ptzConfiguration = value; } /** * Ruft den Wert der forcePersistence-Eigenschaft ab. * */ public boolean isForcePersistence() { return forcePersistence; } /** * Legt den Wert der forcePersistence-Eigenschaft fest. * */ public void setForcePersistence(boolean value) { this.forcePersistence = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/SetConfigurationResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetConfigurationResponse") public class SetConfigurationResponse { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/SetHomePosition.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken" }) @XmlRootElement(name = "SetHomePosition") public class SetHomePosition { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/SetHomePositionResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "SetHomePositionResponse") public class SetHomePositionResponse { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/SetPreset.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "presetName", "presetToken" }) @XmlRootElement(name = "SetPreset") public class SetPreset { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "PresetName") protected String presetName; @XmlElement(name = "PresetToken") protected String presetToken; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der presetName-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPresetName() { return presetName; } /** * Legt den Wert der presetName-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPresetName(String value) { this.presetName = value; } /** * Ruft den Wert der presetToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPresetToken() { return presetToken; } /** * Legt den Wert der presetToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPresetToken(String value) { this.presetToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/SetPresetResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "presetToken" }) @XmlRootElement(name = "SetPresetResponse") public class SetPresetResponse { @XmlElement(name = "PresetToken", required = true) protected String presetToken; /** * Ruft den Wert der presetToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getPresetToken() { return presetToken; } /** * Legt den Wert der presetToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setPresetToken(String value) { this.presetToken = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/Stop.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "profileToken", "panTilt", "zoom" }) @XmlRootElement(name = "Stop") public class Stop { @XmlElement(name = "ProfileToken", required = true) protected String profileToken; @XmlElement(name = "PanTilt") protected Boolean panTilt; @XmlElement(name = "Zoom") protected Boolean zoom; /** * Ruft den Wert der profileToken-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getProfileToken() { return profileToken; } /** * Legt den Wert der profileToken-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setProfileToken(String value) { this.profileToken = value; } /** * Ruft den Wert der panTilt-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isPanTilt() { return panTilt; } /** * Legt den Wert der panTilt-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setPanTilt(Boolean value) { this.panTilt = value; } /** * Ruft den Wert der zoom-Eigenschaft ab. * * @return possible object is {@link Boolean } * */ public Boolean isZoom() { return zoom; } /** * Legt den Wert der zoom-Eigenschaft fest. * * @param value * allowed object is {@link Boolean } * */ public void setZoom(Boolean value) { this.zoom = value; } } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/StopResponse.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // package org.onvif.ver20.ptz.wsdl; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

* Java-Klasse f�r anonymous complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "StopResponse") public class StopResponse { } ================================================ FILE: src/org/onvif/ver20/ptz/wsdl/package-info.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.17 um 11:33:29 AM CET // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.onvif.org/ver20/ptz/wsdl", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) package org.onvif.ver20.ptz.wsdl; ================================================ FILE: src/org/w3/_2004/_08/xop/include/Include.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2004._08.xop.include; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r Include complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Include", propOrder = { "any" }) public class Include { @XmlAnyElement(lax = true) protected List any; @XmlAttribute(name = "href", required = true) @XmlSchemaType(name = "anyURI") protected String href; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der href-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getHref() { return href; } /** * Legt den Wert der href-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setHref(String value) { this.href = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/w3/_2004/_08/xop/include/ObjectFactory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2004._08.xop.include; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each Java content interface and Java element interface generated in the org.w3._2004._08.xop.include package. *

* An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema * derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this * class. * */ @XmlRegistry public class ObjectFactory { private final static QName _Include_QNAME = new QName("http://www.w3.org/2004/08/xop/include", "Include"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.w3._2004._08.xop.include * */ public ObjectFactory() { } /** * Create an instance of {@link Include } * */ public Include createInclude() { return new Include(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Include }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2004/08/xop/include", name = "Include") public JAXBElement createInclude(Include value) { return new JAXBElement(_Include_QNAME, Include.class, null, value); } } ================================================ FILE: src/org/w3/_2004/_08/xop/include/package-info.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/2004/08/xop/include") package org.w3._2004._08.xop.include; ================================================ FILE: src/org/w3/_2005/_05/xmlmime/Base64Binary.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2005._05.xmlmime; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** *

* Java-Klasse f�r base64Binary complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "base64Binary", propOrder = { "value" }) public class Base64Binary { @XmlValue protected byte[] value; @XmlAttribute(name = "contentType", namespace = "http://www.w3.org/2005/05/xmlmime") protected String contentType; /** * Ruft den Wert der value-Eigenschaft ab. * * @return possible object is byte[] */ public byte[] getValue() { return value; } /** * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is byte[] */ public void setValue(byte[] value) { this.value = value; } /** * Ruft den Wert der contentType-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getContentType() { return contentType; } /** * Legt den Wert der contentType-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setContentType(String value) { this.contentType = value; } } ================================================ FILE: src/org/w3/_2005/_05/xmlmime/HexBinary.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2005._05.xmlmime; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.bind.annotation.adapters.HexBinaryAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

* Java-Klasse f�r hexBinary complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "hexBinary", propOrder = { "value" }) public class HexBinary { @XmlValue @XmlJavaTypeAdapter(HexBinaryAdapter.class) @XmlSchemaType(name = "hexBinary") protected byte[] value; @XmlAttribute(name = "contentType", namespace = "http://www.w3.org/2005/05/xmlmime") protected String contentType; /** * Ruft den Wert der value-Eigenschaft ab. * * @return possible object is {@link String } * */ public byte[] getValue() { return value; } /** * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setValue(byte[] value) { this.value = value; } /** * Ruft den Wert der contentType-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getContentType() { return contentType; } /** * Legt den Wert der contentType-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setContentType(String value) { this.contentType = value; } } ================================================ FILE: src/org/w3/_2005/_05/xmlmime/ObjectFactory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2005._05.xmlmime; import javax.xml.bind.annotation.XmlRegistry; /** * This object contains factory methods for each Java content interface and Java element interface generated in the org.w3._2005._05.xmlmime package. *

* An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema * derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this * class. * */ @XmlRegistry public class ObjectFactory { /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.w3._2005._05.xmlmime * */ public ObjectFactory() { } /** * Create an instance of {@link Base64Binary } * */ public Base64Binary createBase64Binary() { return new Base64Binary(); } /** * Create an instance of {@link HexBinary } * */ public HexBinary createHexBinary() { return new HexBinary(); } } ================================================ FILE: src/org/w3/_2005/_05/xmlmime/package-info.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/2005/05/xmlmime") package org.w3._2005._05.xmlmime; ================================================ FILE: src/org/w3/_2005/_08/addressing/AttributedAnyType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2005._08.addressing; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r AttributedAnyType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AttributedAnyType", propOrder = { "any" }) public class AttributedAnyType { @XmlAnyElement(lax = true) protected Object any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der any-Eigenschaft ab. * * @return possible object is {@link Element } {@link Object } * */ public Object getAny() { return any; } /** * Legt den Wert der any-Eigenschaft fest. * * @param value * allowed object is {@link Element } {@link Object } * */ public void setAny(Object value) { this.any = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/w3/_2005/_08/addressing/AttributedQNameType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2005._08.addressing; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r AttributedQNameType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AttributedQNameType", propOrder = { "value" }) public class AttributedQNameType { @XmlValue protected QName value; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der value-Eigenschaft ab. * * @return possible object is {@link QName } * */ public QName getValue() { return value; } /** * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is {@link QName } * */ public void setValue(QName value) { this.value = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/w3/_2005/_08/addressing/AttributedURIType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2005._08.addressing; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r AttributedURIType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AttributedURIType", propOrder = { "value" }) public class AttributedURIType { @XmlValue @XmlSchemaType(name = "anyURI") protected String value; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der value-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getValue() { return value; } /** * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/w3/_2005/_08/addressing/AttributedUnsignedLongType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2005._08.addressing; import java.math.BigInteger; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r AttributedUnsignedLongType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AttributedUnsignedLongType", propOrder = { "value" }) public class AttributedUnsignedLongType { @XmlValue @XmlSchemaType(name = "unsignedLong") protected BigInteger value; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der value-Eigenschaft ab. * * @return possible object is {@link BigInteger } * */ public BigInteger getValue() { return value; } /** * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is {@link BigInteger } * */ public void setValue(BigInteger value) { this.value = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/w3/_2005/_08/addressing/EndpointReferenceType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2005._08.addressing; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r EndpointReferenceType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EndpointReferenceType", propOrder = { "address", "referenceParameters", "metadata", "any" }) public class EndpointReferenceType { @XmlElement(name = "Address", required = true) protected AttributedURIType address; @XmlElement(name = "ReferenceParameters") protected ReferenceParametersType referenceParameters; @XmlElement(name = "Metadata") protected MetadataType metadata; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der address-Eigenschaft ab. * * @return possible object is {@link AttributedURIType } * */ public AttributedURIType getAddress() { return address; } /** * Legt den Wert der address-Eigenschaft fest. * * @param value * allowed object is {@link AttributedURIType } * */ public void setAddress(AttributedURIType value) { this.address = value; } /** * Ruft den Wert der referenceParameters-Eigenschaft ab. * * @return possible object is {@link ReferenceParametersType } * */ public ReferenceParametersType getReferenceParameters() { return referenceParameters; } /** * Legt den Wert der referenceParameters-Eigenschaft fest. * * @param value * allowed object is {@link ReferenceParametersType } * */ public void setReferenceParameters(ReferenceParametersType value) { this.referenceParameters = value; } /** * Ruft den Wert der metadata-Eigenschaft ab. * * @return possible object is {@link MetadataType } * */ public MetadataType getMetadata() { return metadata; } /** * Legt den Wert der metadata-Eigenschaft fest. * * @param value * allowed object is {@link MetadataType } * */ public void setMetadata(MetadataType value) { this.metadata = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/w3/_2005/_08/addressing/MetadataType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2005._08.addressing; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r MetadataType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataType", propOrder = { "any" }) public class MetadataType { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/w3/_2005/_08/addressing/ObjectFactory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2005._08.addressing; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each Java content interface and Java element interface generated in the org.w3._2005._08.addressing package. *

* An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema * derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this * class. * */ @XmlRegistry public class ObjectFactory { private final static QName _EndpointReference_QNAME = new QName("http://www.w3.org/2005/08/addressing", "EndpointReference"); private final static QName _ProblemHeaderQName_QNAME = new QName("http://www.w3.org/2005/08/addressing", "ProblemHeaderQName"); private final static QName _RetryAfter_QNAME = new QName("http://www.w3.org/2005/08/addressing", "RetryAfter"); private final static QName _To_QNAME = new QName("http://www.w3.org/2005/08/addressing", "To"); private final static QName _ProblemHeader_QNAME = new QName("http://www.w3.org/2005/08/addressing", "ProblemHeader"); private final static QName _Metadata_QNAME = new QName("http://www.w3.org/2005/08/addressing", "Metadata"); private final static QName _MessageID_QNAME = new QName("http://www.w3.org/2005/08/addressing", "MessageID"); private final static QName _ProblemIRI_QNAME = new QName("http://www.w3.org/2005/08/addressing", "ProblemIRI"); private final static QName _From_QNAME = new QName("http://www.w3.org/2005/08/addressing", "From"); private final static QName _ReplyTo_QNAME = new QName("http://www.w3.org/2005/08/addressing", "ReplyTo"); private final static QName _Action_QNAME = new QName("http://www.w3.org/2005/08/addressing", "Action"); private final static QName _FaultTo_QNAME = new QName("http://www.w3.org/2005/08/addressing", "FaultTo"); private final static QName _ProblemAction_QNAME = new QName("http://www.w3.org/2005/08/addressing", "ProblemAction"); private final static QName _RelatesTo_QNAME = new QName("http://www.w3.org/2005/08/addressing", "RelatesTo"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.w3._2005._08.addressing * */ public ObjectFactory() { } /** * Create an instance of {@link EndpointReferenceType } * */ public EndpointReferenceType createEndpointReferenceType() { return new EndpointReferenceType(); } /** * Create an instance of {@link ProblemActionType } * */ public ProblemActionType createProblemActionType() { return new ProblemActionType(); } /** * Create an instance of {@link AttributedAnyType } * */ public AttributedAnyType createAttributedAnyType() { return new AttributedAnyType(); } /** * Create an instance of {@link AttributedURIType } * */ public AttributedURIType createAttributedURIType() { return new AttributedURIType(); } /** * Create an instance of {@link AttributedQNameType } * */ public AttributedQNameType createAttributedQNameType() { return new AttributedQNameType(); } /** * Create an instance of {@link AttributedUnsignedLongType } * */ public AttributedUnsignedLongType createAttributedUnsignedLongType() { return new AttributedUnsignedLongType(); } /** * Create an instance of {@link MetadataType } * */ public MetadataType createMetadataType() { return new MetadataType(); } /** * Create an instance of {@link RelatesToType } * */ public RelatesToType createRelatesToType() { return new RelatesToType(); } /** * Create an instance of {@link ReferenceParametersType } * */ public ReferenceParametersType createReferenceParametersType() { return new ReferenceParametersType(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link EndpointReferenceType }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "EndpointReference") public JAXBElement createEndpointReference(EndpointReferenceType value) { return new JAXBElement(_EndpointReference_QNAME, EndpointReferenceType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link AttributedQNameType }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "ProblemHeaderQName") public JAXBElement createProblemHeaderQName(AttributedQNameType value) { return new JAXBElement(_ProblemHeaderQName_QNAME, AttributedQNameType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link AttributedUnsignedLongType }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "RetryAfter") public JAXBElement createRetryAfter(AttributedUnsignedLongType value) { return new JAXBElement(_RetryAfter_QNAME, AttributedUnsignedLongType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link AttributedURIType }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "To") public JAXBElement createTo(AttributedURIType value) { return new JAXBElement(_To_QNAME, AttributedURIType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link AttributedAnyType }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "ProblemHeader") public JAXBElement createProblemHeader(AttributedAnyType value) { return new JAXBElement(_ProblemHeader_QNAME, AttributedAnyType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link MetadataType }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "Metadata") public JAXBElement createMetadata(MetadataType value) { return new JAXBElement(_Metadata_QNAME, MetadataType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link AttributedURIType }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "MessageID") public JAXBElement createMessageID(AttributedURIType value) { return new JAXBElement(_MessageID_QNAME, AttributedURIType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link AttributedURIType }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "ProblemIRI") public JAXBElement createProblemIRI(AttributedURIType value) { return new JAXBElement(_ProblemIRI_QNAME, AttributedURIType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link EndpointReferenceType }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "From") public JAXBElement createFrom(EndpointReferenceType value) { return new JAXBElement(_From_QNAME, EndpointReferenceType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link EndpointReferenceType }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "ReplyTo") public JAXBElement createReplyTo(EndpointReferenceType value) { return new JAXBElement(_ReplyTo_QNAME, EndpointReferenceType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link AttributedURIType }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "Action") public JAXBElement createAction(AttributedURIType value) { return new JAXBElement(_Action_QNAME, AttributedURIType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link EndpointReferenceType }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "FaultTo") public JAXBElement createFaultTo(EndpointReferenceType value) { return new JAXBElement(_FaultTo_QNAME, EndpointReferenceType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link ProblemActionType }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "ProblemAction") public JAXBElement createProblemAction(ProblemActionType value) { return new JAXBElement(_ProblemAction_QNAME, ProblemActionType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link RelatesToType }{@code >} * */ @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "RelatesTo") public JAXBElement createRelatesTo(RelatesToType value) { return new JAXBElement(_RelatesTo_QNAME, RelatesToType.class, null, value); } } ================================================ FILE: src/org/w3/_2005/_08/addressing/ProblemActionType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2005._08.addressing; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r ProblemActionType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProblemActionType", propOrder = { "action", "soapAction" }) public class ProblemActionType { @XmlElement(name = "Action") protected AttributedURIType action; @XmlElement(name = "SoapAction") @XmlSchemaType(name = "anyURI") protected String soapAction; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der action-Eigenschaft ab. * * @return possible object is {@link AttributedURIType } * */ public AttributedURIType getAction() { return action; } /** * Legt den Wert der action-Eigenschaft fest. * * @param value * allowed object is {@link AttributedURIType } * */ public void setAction(AttributedURIType value) { this.action = value; } /** * Ruft den Wert der soapAction-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getSoapAction() { return soapAction; } /** * Legt den Wert der soapAction-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setSoapAction(String value) { this.soapAction = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/w3/_2005/_08/addressing/ReferenceParametersType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2005._08.addressing; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r ReferenceParametersType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReferenceParametersType", propOrder = { "any" }) public class ReferenceParametersType { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/w3/_2005/_08/addressing/RelatesToType.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.w3._2005._08.addressing; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.namespace.QName; /** *

* Java-Klasse f�r RelatesToType complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RelatesToType", propOrder = { "value" }) public class RelatesToType { @XmlValue @XmlSchemaType(name = "anyURI") protected String value; @XmlAttribute(name = "RelationshipType") protected String relationshipType; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der value-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getValue() { return value; } /** * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setValue(String value) { this.value = value; } /** * Ruft den Wert der relationshipType-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getRelationshipType() { if (relationshipType == null) { return "http://www.w3.org/2005/08/addressing/reply"; } else { return relationshipType; } } /** * Legt den Wert der relationshipType-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setRelationshipType(String value) { this.relationshipType = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/w3/_2005/_08/addressing/package-info.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/2005/08/addressing", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) package org.w3._2005._08.addressing; ================================================ FILE: src/org/xmlsoap/schemas/soap/envelope/Body.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.xmlsoap.schemas.soap.envelope; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Body complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Body", propOrder = { "any" }) public class Body { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/xmlsoap/schemas/soap/envelope/Detail.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.xmlsoap.schemas.soap.envelope; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r detail complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "detail", propOrder = { "any" }) public class Detail { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/xmlsoap/schemas/soap/envelope/Envelope.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.xmlsoap.schemas.soap.envelope; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Envelope complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Envelope", propOrder = { "header", "body", "any" }) public class Envelope { @XmlElement(name = "Header", namespace = "http://schemas.xmlsoap.org/soap/envelope/") protected Header header; @XmlElement(name = "Body", namespace = "http://schemas.xmlsoap.org/soap/envelope/", required = true) protected Body body; @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der header-Eigenschaft ab. * * @return possible object is {@link Header } * */ public Header getHeader() { return header; } /** * Legt den Wert der header-Eigenschaft fest. * * @param value * allowed object is {@link Header } * */ public void setHeader(Header value) { this.header = value; } /** * Ruft den Wert der body-Eigenschaft ab. * * @return possible object is {@link Body } * */ public Body getBody() { return body; } /** * Legt den Wert der body-Eigenschaft fest. * * @param value * allowed object is {@link Body } * */ public void setBody(Body value) { this.body = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/xmlsoap/schemas/soap/envelope/Fault.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.xmlsoap.schemas.soap.envelope; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * * Fault reporting structure * * *

* Java-Klasse f�r Fault complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Fault", propOrder = { "faultcode", "faultstring", "faultactor", "detail" }) public class Fault { @XmlElement(required = true) protected QName faultcode; @XmlElement(required = true) protected String faultstring; @XmlSchemaType(name = "anyURI") protected String faultactor; protected Detail detail; /** * Ruft den Wert der faultcode-Eigenschaft ab. * * @return possible object is {@link QName } * */ public QName getFaultcode() { return faultcode; } /** * Legt den Wert der faultcode-Eigenschaft fest. * * @param value * allowed object is {@link QName } * */ public void setFaultcode(QName value) { this.faultcode = value; } /** * Ruft den Wert der faultstring-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getFaultstring() { return faultstring; } /** * Legt den Wert der faultstring-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setFaultstring(String value) { this.faultstring = value; } /** * Ruft den Wert der faultactor-Eigenschaft ab. * * @return possible object is {@link String } * */ public String getFaultactor() { return faultactor; } /** * Legt den Wert der faultactor-Eigenschaft fest. * * @param value * allowed object is {@link String } * */ public void setFaultactor(String value) { this.faultactor = value; } /** * Ruft den Wert der detail-Eigenschaft ab. * * @return possible object is {@link Detail } * */ public Detail getDetail() { return detail; } /** * Legt den Wert der detail-Eigenschaft fest. * * @param value * allowed object is {@link Detail } * */ public void setDetail(Detail value) { this.detail = value; } } ================================================ FILE: src/org/xmlsoap/schemas/soap/envelope/Header.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.xmlsoap.schemas.soap.envelope; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

* Java-Klasse f�r Header complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Header", propOrder = { "any" }) public class Header { @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: * *

	 * getAny().add(newItem);
	 * 
* * *

* Objects of the following type(s) are allowed in the list {@link Element } {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter. * * * @return always non-null */ public Map getOtherAttributes() { return otherAttributes; } } ================================================ FILE: src/org/xmlsoap/schemas/soap/envelope/ObjectFactory.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // package org.xmlsoap.schemas.soap.envelope; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each Java content interface and Java element interface generated in the org.xmlsoap.schemas.soap.envelope package. *

* An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema * derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this * class. * */ @XmlRegistry public class ObjectFactory { private final static QName _Body_QNAME = new QName("http://schemas.xmlsoap.org/soap/envelope/", "Body"); private final static QName _Envelope_QNAME = new QName("http://schemas.xmlsoap.org/soap/envelope/", "Envelope"); private final static QName _Fault_QNAME = new QName("http://schemas.xmlsoap.org/soap/envelope/", "Fault"); private final static QName _Header_QNAME = new QName("http://schemas.xmlsoap.org/soap/envelope/", "Header"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.xmlsoap.schemas.soap.envelope * */ public ObjectFactory() { } /** * Create an instance of {@link Body } * */ public Body createBody() { return new Body(); } /** * Create an instance of {@link Header } * */ public Header createHeader() { return new Header(); } /** * Create an instance of {@link Envelope } * */ public Envelope createEnvelope() { return new Envelope(); } /** * Create an instance of {@link Fault } * */ public Fault createFault() { return new Fault(); } /** * Create an instance of {@link Detail } * */ public Detail createDetail() { return new Detail(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Body }{@code >} * */ @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/soap/envelope/", name = "Body") public JAXBElement createBody(Body value) { return new JAXBElement(_Body_QNAME, Body.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Envelope }{@code >} * */ @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/soap/envelope/", name = "Envelope") public JAXBElement createEnvelope(Envelope value) { return new JAXBElement(_Envelope_QNAME, Envelope.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Fault }{@code >} * */ @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/soap/envelope/", name = "Fault") public JAXBElement createFault(Fault value) { return new JAXBElement(_Fault_QNAME, Fault.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Header }{@code >} * */ @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/soap/envelope/", name = "Header") public JAXBElement

createHeader(Header value) { return new JAXBElement
(_Header_QNAME, Header.class, null, value); } } ================================================ FILE: src/org/xmlsoap/schemas/soap/envelope/package-info.java ================================================ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert // Siehe http://java.sun.com/xml/jaxb // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2014.02.04 um 12:22:03 PM CET // @javax.xml.bind.annotation.XmlSchema(namespace = "http://schemas.xmlsoap.org/soap/envelope/") package org.xmlsoap.schemas.soap.envelope;