├── .github ├── dependabot.yml └── workflows │ ├── release.yml │ └── sphinx_build_deploy.yml ├── .gitignore ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── about.rst │ ├── api │ ├── CombinedTimeQuery.rst │ ├── DataAccessLayer.rst │ ├── DateTimeConverter.rst │ ├── IDataRequest.rst │ ├── IFPClient.rst │ ├── ModelSounding.rst │ ├── PyData.rst │ ├── PyGeometryData.rst │ ├── PyGridData.rst │ ├── RadarCommon.rst │ ├── ThriftClient.rst │ ├── ThriftClientRouter.rst │ ├── TimeUtil.rst │ └── index.rst │ ├── conf.py │ ├── datatypes.rst │ ├── dev.rst │ ├── examples │ ├── index.rst │ └── notebooks │ │ ├── Colored_Surface_Temperature_Plot.ipynb │ │ ├── Colorized_Grid_Data.ipynb │ │ ├── Forecast_Model_Vertical_Sounding.ipynb │ │ ├── GOES_CIRA_Product_Writer.ipynb │ │ ├── Grid_Levels_and_Parameters.ipynb │ │ ├── METAR_Station_Plot_with_MetPy.ipynb │ │ ├── Map_Resources_and_Topography.ipynb │ │ ├── Model_Sounding_Data.ipynb │ │ ├── NEXRAD_Level3_Radar.ipynb │ │ ├── Precip_Accumulation_Region_of_Interest.ipynb │ │ ├── Regional_Surface_Obs_Plot.ipynb │ │ ├── Satellite_Imagery.ipynb │ │ ├── Upper_Air_BUFR_Soundings.ipynb │ │ └── Watch_Warning_and_Advisory_Plotting.ipynb │ ├── gridparms.rst │ ├── index.rst │ └── notebook_gen_sphinxext.py ├── environment.yml ├── examples ├── Template.ipynb ├── images │ ├── GOES_CIRA_night_preview.png │ ├── GOES_CIRA_preview.png │ ├── NEXRAD_Level3_Radar_preview.png │ ├── colored_surface_temp_preview.png │ ├── forecast_model_vert_sounding_preview.png │ ├── grids_and_cartopy_preview.png │ ├── map_resources_preview.png │ ├── metars_preview.png │ ├── model_sounding_preview.png │ ├── precip_roi_preview.png │ ├── regional_obs_preview.png │ ├── satellite_imagery_preview.png │ ├── upper_air_bufr_sounding_preview.png │ └── warnings_preview.png ├── md │ ├── GISOperations.md │ ├── GetSatelliteIR.md │ └── GetStates.md └── notebooks │ ├── Colored_Surface_Temperature_Plot.ipynb │ ├── Colorized_Grid_Data.ipynb │ ├── Forecast_Model_Vertical_Sounding.ipynb │ ├── GOES_CIRA_Product_Writer.ipynb │ ├── Grid_Levels_and_Parameters.ipynb │ ├── METAR_Station_Plot_with_MetPy.ipynb │ ├── Map_Resources_and_Topography.ipynb │ ├── Model_Sounding_Data.ipynb │ ├── NEXRAD_Level3_Radar.ipynb │ ├── Precip_Accumulation_Region_of_Interest.ipynb │ ├── Regional_Surface_Obs_Plot.ipynb │ ├── Satellite_Imagery.ipynb │ ├── Upper_Air_BUFR_Soundings.ipynb │ └── Watch_Warning_and_Advisory_Plotting.ipynb ├── prep.sh ├── pyproject.toml ├── requirements.txt ├── rpm ├── component.spec └── patch.diff ├── setup.cfg └── src ├── awips ├── AlertVizHandler.py ├── ConfigFileUtil.py ├── DateTimeConverter.py ├── NotificationMessage.py ├── QpidSubscriber.py ├── RadarCommon.py ├── ThriftClient.py ├── TimeUtil.py ├── UsageArgumentParser.py ├── UsageOptionParser.py ├── __init__.py ├── dataaccess │ ├── CombinedTimeQuery.py │ ├── DataAccessLayer.py │ ├── DataNotificationLayer.py │ ├── DataQueue.py │ ├── ModelSounding.py │ ├── PyData.py │ ├── PyGeometryData.py │ ├── PyGeometryNotification.py │ ├── PyGridData.py │ ├── PyGridNotification.py │ ├── PyNotification.py │ ├── SoundingsSupport.py │ ├── ThriftClientRouter.py │ └── __init__.py ├── gempak │ ├── GridDataRetriever.py │ ├── GridInfoRetriever.py │ ├── GridNavRetriever.py │ ├── StationDataRetriever.py │ ├── StationRetriever.py │ ├── TimeRetriever.py │ ├── ncepGribTables.py │ └── scrape.py ├── gfe │ ├── IFPClient.py │ └── __init__.py ├── ignite_password.py ├── localization │ ├── LocalizationFileManager.py │ ├── LocalizationUtil.py │ └── __init__.py ├── qpidingest.py ├── tables.py └── test │ ├── Record.py │ ├── Test │ ├── __init__.py │ ├── dafTests │ ├── __init__.py │ ├── baseBufrMosTestCase.py │ ├── baseDafTestCase.py │ ├── baseRadarTestCase.py │ ├── params.py │ ├── testAcars.py │ ├── testAirep.py │ ├── testBinLightning.py │ ├── testBufrMosAvn.py │ ├── testBufrMosEta.py │ ├── testBufrMosGfs.py │ ├── testBufrMosHpc.py │ ├── testBufrMosLamp.py │ ├── testBufrMosMrf.py │ ├── testBufrUa.py │ ├── testClimate.py │ ├── testCombinedTimeQuery.py │ ├── testCommonObsSpatial.py │ ├── testDataTime.py │ ├── testFfmp.py │ ├── testGfe.py │ ├── testGfeEditArea.py │ ├── testGrid.py │ ├── testHydro.py │ ├── testLdadMesonet.py │ ├── testMaps.py │ ├── testModelSounding.py │ ├── testObs.py │ ├── testPirep.py │ ├── testPracticeWarning.py │ ├── testProfiler.py │ ├── testRadarGraphics.py │ ├── testRadarGrid.py │ ├── testRadarSpatial.py │ ├── testRequestConstraint.py │ ├── testSatellite.py │ ├── testSfcObs.py │ ├── testTopo.py │ └── testWarning.py │ ├── localization │ ├── __init__.py │ ├── smallTestImage.png │ ├── testLF.py │ ├── testLocalizationFileManager.py │ └── testLocalizationRest.py │ └── testQpidTimeToLive.py ├── dynamicserialize ├── DynamicSerializationManager.py ├── SelfDescribingBinaryProtocol.py ├── ThriftSerializationContext.py ├── __init__.py ├── adapters │ ├── ActiveTableModeAdapter.py │ ├── ByteBufferAdapter.py │ ├── CalendarAdapter.py │ ├── CommutativeTimestampAdapter.py │ ├── CoordAdapter.py │ ├── DatabaseIDAdapter.py │ ├── DateAdapter.py │ ├── EnumSetAdapter.py │ ├── FloatBufferAdapter.py │ ├── FormattedDateAdapter.py │ ├── GeomDataRespAdapter.py │ ├── GeometryTypeAdapter.py │ ├── GregorianCalendarAdapter.py │ ├── GridDataHistoryAdapter.py │ ├── JTSEnvelopeAdapter.py │ ├── JobProgressAdapter.py │ ├── LocalizationLevelSerializationAdapter.py │ ├── LocalizationTypeSerializationAdapter.py │ ├── LockTableAdapter.py │ ├── ParmIDAdapter.py │ ├── PointAdapter.py │ ├── StackTraceElementAdapter.py │ ├── TimeConstraintsAdapter.py │ ├── TimeRangeTypeAdapter.py │ ├── TimestampAdapter.py │ ├── WsIdAdapter.py │ └── __init__.py └── dstypes │ ├── __init__.py │ ├── com │ ├── __init__.py │ └── raytheon │ │ ├── __init__.py │ │ └── uf │ │ ├── __init__.py │ │ └── common │ │ ├── __init__.py │ │ ├── activetable │ │ ├── ActiveTableKey.py │ │ ├── ActiveTableMode.py │ │ ├── ActiveTableRecord.py │ │ ├── DumpActiveTableRequest.py │ │ ├── DumpActiveTableResponse.py │ │ ├── GetActiveTableDictRequest.py │ │ ├── GetActiveTableDictResponse.py │ │ ├── GetFourCharSitesRequest.py │ │ ├── GetFourCharSitesResponse.py │ │ ├── GetVtecAttributeRequest.py │ │ ├── GetVtecAttributeResponse.py │ │ ├── OperationalActiveTableRecord.py │ │ ├── PracticeActiveTableRecord.py │ │ ├── SendPracticeProductRequest.py │ │ ├── VTECChange.py │ │ ├── VTECTableChangeNotification.py │ │ ├── __init__.py │ │ ├── request │ │ │ ├── ClearPracticeVTECTableRequest.py │ │ │ ├── MergeActiveTableRequest.py │ │ │ ├── RetrieveRemoteActiveTableRequest.py │ │ │ ├── SendActiveTableRequest.py │ │ │ └── __init__.py │ │ └── response │ │ │ ├── ActiveTableSharingResponse.py │ │ │ └── __init__.py │ │ ├── alertviz │ │ ├── AlertVizRequest.py │ │ └── __init__.py │ │ ├── auth │ │ ├── __init__.py │ │ ├── resp │ │ │ ├── AbstractFailedResponse.py │ │ │ ├── AuthServerErrorResponse.py │ │ │ ├── SuccessfulExecution.py │ │ │ ├── UserNotAuthorized.py │ │ │ └── __init__.py │ │ └── user │ │ │ ├── User.py │ │ │ ├── UserId.py │ │ │ └── __init__.py │ │ ├── dataaccess │ │ ├── __init__.py │ │ ├── impl │ │ │ ├── DefaultDataRequest.py │ │ │ ├── DefaultNotificationFilter.py │ │ │ └── __init__.py │ │ ├── request │ │ │ ├── AbstractDataAccessRequest.py │ │ │ ├── AbstractIdentifierRequest.py │ │ │ ├── GetAvailableLevelsRequest.py │ │ │ ├── GetAvailableLocationNamesRequest.py │ │ │ ├── GetAvailableParametersRequest.py │ │ │ ├── GetAvailableTimesRequest.py │ │ │ ├── GetGeometryDataRequest.py │ │ │ ├── GetGridDataRequest.py │ │ │ ├── GetGridLatLonRequest.py │ │ │ ├── GetIdentifierValuesRequest.py │ │ │ ├── GetNotificationFilterRequest.py │ │ │ ├── GetOptionalIdentifiersRequest.py │ │ │ ├── GetRequiredIdentifiersRequest.py │ │ │ ├── GetSupportedDatatypesRequest.py │ │ │ └── __init__.py │ │ └── response │ │ │ ├── AbstractResponseData.py │ │ │ ├── GeometryResponseData.py │ │ │ ├── GetGeometryDataResponse.py │ │ │ ├── GetGridDataResponse.py │ │ │ ├── GetGridLatLonResponse.py │ │ │ ├── GetNotificationFilterResponse.py │ │ │ ├── GridResponseData.py │ │ │ └── __init__.py │ │ ├── dataplugin │ │ ├── __init__.py │ │ ├── events │ │ │ ├── __init__.py │ │ │ └── hazards │ │ │ │ ├── __init__.py │ │ │ │ └── requests │ │ │ │ ├── RegionLookupRequest.py │ │ │ │ └── __init__.py │ │ ├── gfe │ │ │ ├── GridDataHistory.py │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ │ ├── ProjectionData.py │ │ │ │ └── __init__.py │ │ │ ├── db │ │ │ │ ├── __init__.py │ │ │ │ └── objects │ │ │ │ │ ├── DatabaseID.py │ │ │ │ │ ├── GFERecord.py │ │ │ │ │ ├── GridLocation.py │ │ │ │ │ ├── GridParmInfo.py │ │ │ │ │ ├── ParmID.py │ │ │ │ │ ├── TimeConstraints.py │ │ │ │ │ └── __init__.py │ │ │ ├── discrete │ │ │ │ ├── DiscreteKey.py │ │ │ │ └── __init__.py │ │ │ ├── grid │ │ │ │ ├── Grid2DByte.py │ │ │ │ ├── Grid2DFloat.py │ │ │ │ └── __init__.py │ │ │ ├── request │ │ │ │ ├── AbstractGfeRequest.py │ │ │ │ ├── CommitGridsRequest.py │ │ │ │ ├── ConfigureTextProductsRequest.py │ │ │ │ ├── ExecuteIfpNetCDFGridRequest.py │ │ │ │ ├── ExecuteIscMosaicRequest.py │ │ │ │ ├── ExportGridsRequest.py │ │ │ │ ├── GetASCIIGridsRequest.py │ │ │ │ ├── GetGridDataRequest.py │ │ │ │ ├── GetGridInventoryRequest.py │ │ │ │ ├── GetLatestDbTimeRequest.py │ │ │ │ ├── GetLatestModelDbIdRequest.py │ │ │ │ ├── GetLockTablesRequest.py │ │ │ │ ├── GetOfficialDbNameRequest.py │ │ │ │ ├── GetParmListRequest.py │ │ │ │ ├── GetSelectTimeRangeRequest.py │ │ │ │ ├── GetSingletonDbIdsRequest.py │ │ │ │ ├── GetSiteTimeZoneInfoRequest.py │ │ │ │ ├── GfeClientRequest.py │ │ │ │ ├── GridLocRequest.py │ │ │ │ ├── IscDataRecRequest.py │ │ │ │ ├── LockChangeRequest.py │ │ │ │ ├── ProcessReceivedConfRequest.py │ │ │ │ ├── ProcessReceivedDigitalDataRequest.py │ │ │ │ ├── PurgeGfeGridsRequest.py │ │ │ │ ├── RsyncGridsToCWFRequest.py │ │ │ │ ├── SaveASCIIGridsRequest.py │ │ │ │ ├── SmartInitRequest.py │ │ │ │ └── __init__.py │ │ │ ├── server │ │ │ │ ├── __init__.py │ │ │ │ ├── lock │ │ │ │ │ ├── Lock.py │ │ │ │ │ ├── LockTable.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── message │ │ │ │ │ ├── ServerMsg.py │ │ │ │ │ ├── ServerResponse.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── notify │ │ │ │ │ ├── CombinationsFileChangedNotification.py │ │ │ │ │ ├── DBInvChangeNotification.py │ │ │ │ │ ├── GfeNotification.py │ │ │ │ │ ├── GridHistoryUpdateNotification.py │ │ │ │ │ ├── GridUpdateNotification.py │ │ │ │ │ ├── LockNotification.py │ │ │ │ │ ├── ServiceBackupJobStatusNotification.py │ │ │ │ │ ├── UserMessageNotification.py │ │ │ │ │ └── __init__.py │ │ │ │ └── request │ │ │ │ │ ├── CommitGridRequest.py │ │ │ │ │ ├── GetGridRequest.py │ │ │ │ │ ├── LockRequest.py │ │ │ │ │ ├── LockTableRequest.py │ │ │ │ │ └── __init__.py │ │ │ ├── slice │ │ │ │ ├── AbstractGridSlice.py │ │ │ │ ├── DiscreteGridSlice.py │ │ │ │ ├── ScalarGridSlice.py │ │ │ │ ├── VectorGridSlice.py │ │ │ │ ├── WeatherGridSlice.py │ │ │ │ └── __init__.py │ │ │ ├── svcbu │ │ │ │ ├── JobProgress.py │ │ │ │ └── __init__.py │ │ │ └── weather │ │ │ │ ├── WeatherKey.py │ │ │ │ ├── WeatherSubKey.py │ │ │ │ └── __init__.py │ │ ├── grid │ │ │ ├── __init__.py │ │ │ └── request │ │ │ │ ├── DeleteAllGridDataRequest.py │ │ │ │ └── __init__.py │ │ ├── level │ │ │ ├── Level.py │ │ │ ├── MasterLevel.py │ │ │ └── __init__.py │ │ ├── message │ │ │ ├── DataURINotificationMessage.py │ │ │ └── __init__.py │ │ ├── persist │ │ │ ├── PersistableDataObject.py │ │ │ └── __init__.py │ │ ├── radar │ │ │ ├── __init__.py │ │ │ ├── request │ │ │ │ ├── GetRadarDataRecordRequest.py │ │ │ │ └── __init__.py │ │ │ └── response │ │ │ │ ├── GetRadarDataRecordResponse.py │ │ │ │ ├── RadarDataRecord.py │ │ │ │ └── __init__.py │ │ └── text │ │ │ ├── __init__.py │ │ │ ├── dbsrv │ │ │ ├── TextDBRequest.py │ │ │ └── __init__.py │ │ │ └── subscription │ │ │ ├── __init__.py │ │ │ └── request │ │ │ ├── SubscriptionRequest.py │ │ │ └── __init__.py │ │ ├── dataquery │ │ ├── __init__.py │ │ └── requests │ │ │ ├── RequestConstraint.py │ │ │ └── __init__.py │ │ ├── datastorage │ │ ├── Request.py │ │ ├── StorageProperties.py │ │ ├── StorageStatus.py │ │ ├── __init__.py │ │ └── records │ │ │ ├── AbstractDataRecord.py │ │ │ ├── ByteDataRecord.py │ │ │ ├── DataUriMetadataIdentifier.py │ │ │ ├── DoubleDataRecord.py │ │ │ ├── FloatDataRecord.py │ │ │ ├── IntegerDataRecord.py │ │ │ ├── LongDataRecord.py │ │ │ ├── NoMetadataIdentifier.py │ │ │ ├── RecordAndMetadata.py │ │ │ ├── ShortDataRecord.py │ │ │ ├── StringDataRecord.py │ │ │ └── __init__.py │ │ ├── localization │ │ ├── FileUpdatedMessage.py │ │ ├── LocalizationContext.py │ │ ├── LocalizationLevel.py │ │ ├── LocalizationType.py │ │ ├── __init__.py │ │ ├── msgs │ │ │ ├── DeleteUtilityCommand.py │ │ │ ├── DeleteUtilityResponse.py │ │ │ ├── ListResponseEntry.py │ │ │ ├── ListUtilityCommand.py │ │ │ ├── ListUtilityResponse.py │ │ │ ├── PrivilegedUtilityRequestMessage.py │ │ │ ├── UtilityRequestMessage.py │ │ │ ├── UtilityResponseMessage.py │ │ │ └── __init__.py │ │ └── stream │ │ │ ├── AbstractLocalizationStreamRequest.py │ │ │ ├── LocalizationStreamGetRequest.py │ │ │ ├── LocalizationStreamPutRequest.py │ │ │ └── __init__.py │ │ ├── management │ │ ├── __init__.py │ │ ├── request │ │ │ ├── ChangeContextRequest.py │ │ │ ├── PassThroughRequest.py │ │ │ ├── __init__.py │ │ │ └── diagnostic │ │ │ │ ├── GetClusterMembersRequest.py │ │ │ │ ├── GetContextsRequest.py │ │ │ │ ├── StatusRequest.py │ │ │ │ └── __init__.py │ │ └── response │ │ │ ├── __init__.py │ │ │ └── diagnostic │ │ │ ├── ClusterMembersResponse.py │ │ │ ├── ContextsResponse.py │ │ │ ├── StatusResponse.py │ │ │ └── __init__.py │ │ ├── message │ │ ├── Body.py │ │ ├── Header.py │ │ ├── Message.py │ │ ├── Property.py │ │ ├── WsId.py │ │ └── __init__.py │ │ ├── mpe │ │ ├── __init__.py │ │ └── dqcpreprocessor │ │ │ ├── DQCPreProcRunConfiguration.py │ │ │ ├── DQCPreProcessorExecuteRequest.py │ │ │ ├── DQCPreProcessorExecuteResponse.py │ │ │ └── __init__.py │ │ ├── pointdata │ │ ├── __init__.py │ │ └── requests │ │ │ ├── NewAdaptivePlotRequest.py │ │ │ └── __init__.py │ │ ├── pypies │ │ ├── PointTest.py │ │ ├── __init__.py │ │ ├── records │ │ │ ├── CompressedDataRecord.py │ │ │ └── __init__.py │ │ ├── request │ │ │ ├── CopyRequest.py │ │ │ ├── CreateDatasetRequest.py │ │ │ ├── DatasetDataRequest.py │ │ │ ├── DatasetNamesRequest.py │ │ │ ├── DeleteFilesRequest.py │ │ │ ├── DeleteOrphansRequest.py │ │ │ ├── DeleteRequest.py │ │ │ ├── GroupsRequest.py │ │ │ ├── RepackRequest.py │ │ │ ├── RetrieveRequest.py │ │ │ ├── StoreRequest.py │ │ │ └── __init__.py │ │ └── response │ │ │ ├── DatasetNamesResponse.py │ │ │ ├── DeleteResponse.py │ │ │ ├── ErrorResponse.py │ │ │ ├── FileActionResponse.py │ │ │ ├── RetrieveResponse.py │ │ │ ├── StoreResponse.py │ │ │ └── __init__.py │ │ ├── serialization │ │ ├── SerializableExceptionWrapper.py │ │ ├── __init__.py │ │ └── comm │ │ │ ├── __init__.py │ │ │ └── response │ │ │ ├── ServerErrorResponse.py │ │ │ └── __init__.py │ │ ├── site │ │ ├── __init__.py │ │ ├── notify │ │ │ ├── ClusterActivationNotification.py │ │ │ ├── SiteActivationNotification.py │ │ │ └── __init__.py │ │ └── requests │ │ │ ├── ActivateSiteRequest.py │ │ │ ├── DeactivateSiteRequest.py │ │ │ ├── GetActiveSitesRequest.py │ │ │ ├── GetPrimarySiteRequest.py │ │ │ ├── ValidateConfigRequest.py │ │ │ └── __init__.py │ │ └── time │ │ ├── CommutativeTimestamp.py │ │ ├── DataTime.py │ │ ├── FormattedDate.py │ │ ├── TimeRange.py │ │ └── __init__.py │ ├── gov │ ├── __init__.py │ └── noaa │ │ ├── __init__.py │ │ └── nws │ │ ├── __init__.py │ │ └── ncep │ │ ├── __init__.py │ │ └── common │ │ ├── __init__.py │ │ └── dataplugin │ │ ├── __init__.py │ │ ├── atcf │ │ ├── __init__.py │ │ └── request │ │ │ ├── RetrieveAtcfDeckRequest.py │ │ │ └── __init__.py │ │ ├── gempak │ │ ├── __init__.py │ │ └── request │ │ │ ├── GetGridDataRequest.py │ │ │ ├── GetGridInfoRequest.py │ │ │ ├── GetGridNavRequest.py │ │ │ ├── GetStationsRequest.py │ │ │ ├── GetTimesRequest.py │ │ │ ├── GetTimesResponse.py │ │ │ ├── Station.py │ │ │ ├── StationDataRequest.py │ │ │ ├── SurfaceDataRequest.py │ │ │ ├── UpperAirDataRequest.py │ │ │ └── __init__.py │ │ ├── gpd │ │ ├── __init__.py │ │ └── query │ │ │ ├── GenericPointDataReqMsg.py │ │ │ └── __init__.py │ │ └── pgen │ │ ├── ActivityInfo.py │ │ ├── DerivedProduct.py │ │ ├── ResponseMessageValidate.py │ │ ├── __init__.py │ │ ├── request │ │ ├── RetrieveActivityMapRequest.py │ │ ├── RetrieveAllProductsRequest.py │ │ ├── StoreActivityRequest.py │ │ ├── StoreDerivedProductRequest.py │ │ └── __init__.py │ │ └── response │ │ ├── ActivityMapData.py │ │ ├── RetrieveActivityMapResponse.py │ │ └── __init__.py │ ├── java │ ├── __init__.py │ ├── awt │ │ ├── Point.py │ │ └── __init__.py │ ├── lang │ │ ├── StackTraceElement.py │ │ └── __init__.py │ ├── sql │ │ ├── Timestamp.py │ │ └── __init__.py │ └── util │ │ ├── Calendar.py │ │ ├── Date.py │ │ ├── EnumSet.py │ │ ├── GregorianCalendar.py │ │ └── __init__.py │ └── org │ ├── __init__.py │ └── locationtech │ ├── __init__.py │ └── jts │ ├── __init__.py │ └── geom │ ├── Coordinate.py │ ├── Envelope.py │ ├── Geometry.py │ └── __init__.py └── thrift ├── SelfDescribingBinaryProtocol.class ├── TMultiplexedProcessor.py ├── TRecursive.py ├── TSCons.py ├── TSerialization.py ├── TTornado.py ├── Thrift.py ├── ThriftSerializationContext.class ├── ThriftSerializationContextBuilder.class ├── ThriftStreamSerializer.class ├── __init__.py ├── compat.py ├── exception ├── CollectionDeserializationException.class ├── FieldDeserializationException.class ├── ListDeserializationException.class ├── MapDeserializationException.class └── SetDeserializationException.class ├── package-info.class ├── protocol ├── TBase.py ├── TBinaryProtocol.py ├── TCompactProtocol.py ├── THeaderProtocol.py ├── TJSONProtocol.py ├── TMultiplexedProtocol.py ├── TProtocol.py ├── TProtocolDecorator.py ├── __init__.py ├── fastbinary.c └── fastbinary.cpython-38-darwin.so ├── server ├── THttpServer.py ├── TNonblockingServer.py ├── TProcessPoolServer.py ├── TServer.py └── __init__.py ├── test ├── DateTester$DateTestV1.class ├── DateTester$DateTestV2.class ├── DateTester.class ├── SerializationCompatibilityTest$InnerObjectY1.class ├── SerializationCompatibilityTest$ObjectV1.class ├── SerializationCompatibilityTest$ObjectV2.class ├── SerializationCompatibilityTest$ObjectV3.class └── SerializationCompatibilityTest.class └── transport ├── THeaderTransport.py ├── THttpClient.py ├── TSSLSocket.py ├── TSocket.py ├── TTransport.py ├── TTwisted.py ├── TZlibTransport.py ├── __init__.py └── sslcompat.py /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | 3 | updates: 4 | # Update GitHub Actions versions in workflows 5 | - package-ecosystem: "github-actions" 6 | # Workflow files stored in the 7 | # default location of `.github/workflows` 8 | directory: "/" 9 | schedule: 10 | interval: "weekly" 11 | allow: 12 | - dependency-type: all 13 | open-pull-requests-limit: 10 14 | pull-request-branch-name: 15 | separator: "-" 16 | commit-message: 17 | prefix: "CI: " 18 | include: "scope" 19 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Build python-awips and Publish for pip 2 | 3 | on: 4 | workflow_dispatch: 5 | release: 6 | types: 7 | - published 8 | 9 | jobs: 10 | build: 11 | name: Build Release Packages 12 | runs-on: ubuntu-latest 13 | steps: 14 | - uses: actions/checkout@v4 15 | - name: Set up Python 16 | id: setup 17 | uses: actions/setup-python@v5 18 | with: 19 | python-version: 3.x 20 | 21 | - name: Install build tools 22 | run: | 23 | python -m pip install --upgrade pip 24 | python -m pip install --upgrade build 25 | python -m pip install --upgrade setuptools 26 | - name: Build packages 27 | run: python -m build 28 | 29 | - name: Save built packages as artifact 30 | uses: actions/upload-artifact@v4 31 | with: 32 | path: dist/ 33 | retention-days: 5 34 | 35 | publish: 36 | name: Publish to PyPI 37 | needs: build 38 | environment: 39 | name: PyPI 40 | url: https://pypi.org/project/python-awips/ 41 | permissions: 42 | id-token: write # IMPORTANT: this permission is mandatory for trusted publishing 43 | runs-on: ubuntu-latest 44 | steps: 45 | - name: Download packages 46 | uses: actions/download-artifact@v4 47 | with: 48 | path: ./dist 49 | name: artifact 50 | 51 | - name: Publish Package 52 | uses: pypa/gh-action-pypi-publish@v1.12.4 53 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | docs/build/ 3 | *.pyc 4 | .idea 5 | python_awips.egg-info 6 | build/ 7 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx>=1.3 2 | nbconvert>=4.1 3 | enum34 4 | jupyter 5 | shapely 6 | numpy 7 | -------------------------------------------------------------------------------- /docs/source/api/CombinedTimeQuery.rst: -------------------------------------------------------------------------------- 1 | ================= 2 | CombinedTimeQuery 3 | ================= 4 | 5 | .. automodule:: awips.dataaccess.CombinedTimeQuery 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /docs/source/api/DataAccessLayer.rst: -------------------------------------------------------------------------------- 1 | =============== 2 | DataAccessLayer 3 | =============== 4 | 5 | .. automodule:: awips.dataaccess.DataAccessLayer 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /docs/source/api/DateTimeConverter.rst: -------------------------------------------------------------------------------- 1 | ================= 2 | DateTimeConverter 3 | ================= 4 | 5 | .. automodule:: awips.DateTimeConverter 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /docs/source/api/IDataRequest.rst: -------------------------------------------------------------------------------- 1 | =============================== 2 | IDataRequest (newDataRequest()) 3 | =============================== 4 | 5 | .. autoclass:: awips.dataaccess.IDataRequest 6 | :members: 7 | :special-members: 8 | -------------------------------------------------------------------------------- /docs/source/api/IFPClient.rst: -------------------------------------------------------------------------------- 1 | ========= 2 | IFPClient 3 | ========= 4 | 5 | .. automodule:: awips.gfe.IFPClient 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /docs/source/api/ModelSounding.rst: -------------------------------------------------------------------------------- 1 | ============= 2 | ModelSounding 3 | ============= 4 | 5 | .. automodule:: awips.dataaccess.ModelSounding 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /docs/source/api/PyData.rst: -------------------------------------------------------------------------------- 1 | ====================== 2 | PyData 3 | ====================== 4 | 5 | .. automodule:: awips.dataaccess.PyData 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /docs/source/api/PyGeometryData.rst: -------------------------------------------------------------------------------- 1 | ====================== 2 | PyGeometryData 3 | ====================== 4 | 5 | .. automodule:: awips.dataaccess.PyGeometryData 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /docs/source/api/PyGridData.rst: -------------------------------------------------------------------------------- 1 | ====================== 2 | PyGridData 3 | ====================== 4 | 5 | .. automodule:: awips.dataaccess.PyGridData 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /docs/source/api/RadarCommon.rst: -------------------------------------------------------------------------------- 1 | ====================== 2 | RadarCommon 3 | ====================== 4 | 5 | .. automodule:: awips.RadarCommon 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /docs/source/api/ThriftClient.rst: -------------------------------------------------------------------------------- 1 | ====================== 2 | ThriftClient 3 | ====================== 4 | 5 | .. automodule:: awips.ThriftClient 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /docs/source/api/ThriftClientRouter.rst: -------------------------------------------------------------------------------- 1 | ====================== 2 | ThriftClientRouter 3 | ====================== 4 | 5 | .. automodule:: awips.dataaccess.ThriftClientRouter 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /docs/source/api/TimeUtil.rst: -------------------------------------------------------------------------------- 1 | ====================== 2 | TimeUtil 3 | ====================== 4 | 5 | .. automodule:: awips.TimeUtil 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /docs/source/api/index.rst: -------------------------------------------------------------------------------- 1 | ################# 2 | API Documentation 3 | ################# 4 | 5 | .. toctree:: 6 | :maxdepth: 2 7 | 8 | DataAccessLayer 9 | IDataRequest 10 | PyData 11 | PyGridData 12 | PyGeometryData 13 | ModelSounding 14 | ThriftClientRouter 15 | ThriftClient 16 | TimeUtil 17 | RadarCommon 18 | IFPClient 19 | DateTimeConverter 20 | CombinedTimeQuery 21 | 22 | * :ref:`genindex` 23 | -------------------------------------------------------------------------------- /docs/source/examples/index.rst: -------------------------------------------------------------------------------- 1 | .. _examples-index: 2 | 3 | ###################### 4 | Data Plotting Examples 5 | ###################### 6 | 7 | .. toctree:: 8 | :maxdepth: 1 9 | :glob: 10 | 11 | generated/* 12 | -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- 1 | name: python-awips 2 | channels: 3 | - https://conda.anaconda.org/conda-forge 4 | dependencies: 5 | - python 6 | - numpy 7 | - nomkl 8 | - matplotlib 9 | - cartopy 10 | - jupyter 11 | - netcdf4 12 | - owslib 13 | - metpy 14 | - pint 15 | - h5py 16 | - sphinx>=1.3 17 | - sphinx_rtd_theme 18 | - nbconvert>=4.1 19 | - siphon 20 | - xarray 21 | - ffmpeg 22 | - pytest 23 | - shapely 24 | - six 25 | - pip 26 | # - python-awips 27 | -------------------------------------------------------------------------------- /examples/images/GOES_CIRA_night_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/examples/images/GOES_CIRA_night_preview.png -------------------------------------------------------------------------------- /examples/images/GOES_CIRA_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/examples/images/GOES_CIRA_preview.png -------------------------------------------------------------------------------- /examples/images/NEXRAD_Level3_Radar_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/examples/images/NEXRAD_Level3_Radar_preview.png -------------------------------------------------------------------------------- /examples/images/colored_surface_temp_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/examples/images/colored_surface_temp_preview.png -------------------------------------------------------------------------------- /examples/images/forecast_model_vert_sounding_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/examples/images/forecast_model_vert_sounding_preview.png -------------------------------------------------------------------------------- /examples/images/grids_and_cartopy_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/examples/images/grids_and_cartopy_preview.png -------------------------------------------------------------------------------- /examples/images/map_resources_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/examples/images/map_resources_preview.png -------------------------------------------------------------------------------- /examples/images/metars_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/examples/images/metars_preview.png -------------------------------------------------------------------------------- /examples/images/model_sounding_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/examples/images/model_sounding_preview.png -------------------------------------------------------------------------------- /examples/images/precip_roi_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/examples/images/precip_roi_preview.png -------------------------------------------------------------------------------- /examples/images/regional_obs_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/examples/images/regional_obs_preview.png -------------------------------------------------------------------------------- /examples/images/satellite_imagery_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/examples/images/satellite_imagery_preview.png -------------------------------------------------------------------------------- /examples/images/upper_air_bufr_sounding_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/examples/images/upper_air_bufr_sounding_preview.png -------------------------------------------------------------------------------- /examples/images/warnings_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/examples/images/warnings_preview.png -------------------------------------------------------------------------------- /examples/md/GetSatelliteIR.md: -------------------------------------------------------------------------------- 1 | ```python 2 | #!/awips2/python/bin/python 3 | from awips.dataaccess import DataAccessLayer 4 | import numpy as np 5 | 6 | request = DataAccessLayer.newDataRequest() 7 | request.setDatatype("satellite") 8 | request.setLocationNames("East CONUS") 9 | request.setParameters("Imager 6.7-6.5 micron IR (WV)") 10 | 11 | t = DataAccessLayer.getAvailableTimes(request) 12 | print t[-1].getRefTime() 13 | 14 | response = DataAccessLayer.getGridData(request, times=[t[-1]]) 15 | print response 16 | data = response[0] 17 | 18 | print 'Units are in', data.getUnit() 19 | lon,lat = data.getLatLonCoords() 20 | 21 | print 'Parameter we requested is',data.getParameter() 22 | print data.getRawData() 23 | ``` 24 | 25 | ```python 26 | May 04 15 18:45:19 GMT 27 | ``` 28 | 29 | ```python 30 | [] 31 | ``` 32 | 33 | ```python 34 | Units are in None 35 | ``` 36 | 37 | ```python 38 | Parameter we requested is Imager 6.7-6.5 micron IR (WV) 39 | ``` 40 | 41 | ```python 42 | [[ 186. 185. 186. ..., 180. 181. 181.] 43 | [ 186. 185. 186. ..., 180. 181. 181.] 44 | [ 186. 186. 185. ..., 180. 181. 181.] 45 | ..., 46 | [ 0. 0. 0. ..., 145. 145. 145.] 47 | [ 0. 0. 0. ..., 145. 145. 145.] 48 | [ 0. 0. 0. ..., 145. 145. 144.]] 49 | ``` 50 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = [ 3 | "setuptools" 4 | ] 5 | build-backend = "setuptools.build_meta" 6 | 7 | [project] 8 | name = "python-awips" 9 | version = "23.1" 10 | authors = [ 11 | { name="NSF Unidata", email="support-awips@ucar.edu" }, 12 | ] 13 | description = "A framework for requesting AWIPS meteorological datasets from an EDEX server" 14 | readme = "README.rst" 15 | license = { file = "LICENSE" } 16 | requires-python = ">=3.8" 17 | dependencies = [ "numpy"] 18 | [project.optional-dependencies] 19 | cdm = ["pyproj>=1.9.4"] 20 | dev = ["ipython[all]>=3.1"] 21 | doc = ["sphinx>=1.4", "sphinx-gallery", "doc8"] 22 | examples = ["cartopy>=0.13.1", "metpy>=0.4.0"] 23 | 24 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | six 3 | shapely 4 | h5py 5 | -------------------------------------------------------------------------------- /rpm/patch.diff: -------------------------------------------------------------------------------- 1 | diff --git a/dynamicserialize/ThriftSerializationContext.py b/dynamicserialize/ThriftSerializationContext.py 2 | index bbfb153..3691b7f 100644 3 | --- a/dynamicserialize/ThriftSerializationContext.py 4 | +++ b/dynamicserialize/ThriftSerializationContext.py 5 | @@ -59,7 +59,7 @@ buildObjMap(dstypes) 6 | pythonToThriftMap = { 7 | bytes: TType.STRING, 8 | int: TType.I32, 9 | - int: TType.I64, 10 | + long: TType.I64, 11 | list: TType.LIST, 12 | dict: TType.MAP, 13 | type(set([])): TType.SET, 14 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst 3 | source-dir = docs/source 4 | build-dir = docs/build 5 | 6 | [versioneer] 7 | VCS = git 8 | style = pep440 9 | -------------------------------------------------------------------------------- /src/awips/UsageOptionParser.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | import sys 22 | from optparse import OptionParser 23 | 24 | class UsageOptionParser(OptionParser): 25 | """ 26 | A subclass of OptionParser that prints that overrides error() to print the 27 | whole help text, rather than just the usage string. 28 | """ 29 | def error(self, msg): 30 | """ 31 | Print the help text and exit. 32 | """ 33 | self.print_help(sys.stderr) 34 | sys.stderr.write("\n") 35 | sys.stderr.write(msg) 36 | sys.stderr.write("\n") 37 | sys.exit(2) 38 | 39 | -------------------------------------------------------------------------------- /src/awips/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | 22 | # 23 | # __init__.py for awips package 24 | # 25 | # 26 | # SOFTWARE HISTORY 27 | # 28 | # Date Ticket# Engineer Description 29 | # ------------ ---------- ----------- -------------------------- 30 | # 09/21/10 dgilling Initial Creation. 31 | # 32 | # 33 | # 34 | 35 | 36 | __all__ = [ 37 | ] 38 | -------------------------------------------------------------------------------- /src/awips/gfe/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | 22 | # 23 | # __init__.py for awips.gfe package 24 | # 25 | # 26 | # SOFTWARE HISTORY 27 | # 28 | # Date Ticket# Engineer Description 29 | # ------------ ---------- ----------- -------------------------- 30 | # 07/26/12 dgilling Initial Creation. 31 | # 32 | # 33 | # 34 | 35 | 36 | __all__ = [ 37 | ] 38 | -------------------------------------------------------------------------------- /src/awips/localization/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # 22 | # __init__.py for awips.localization package 23 | # 24 | # 25 | # SOFTWARE HISTORY 26 | # 27 | # Date Ticket# Engineer Description 28 | # --------- -------- --------- -------------------------- 29 | # 08/10/17 5731 bsteffen Initial Creation. 30 | 31 | __all__ = [ 32 | ] -------------------------------------------------------------------------------- /src/awips/test/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | 22 | # 23 | # __init__.py for awips package 24 | # 25 | # 26 | # SOFTWARE HISTORY 27 | # 28 | # Date Ticket# Engineer Description 29 | # ------------ ---------- ----------- -------------------------- 30 | # 11/03/10 5489 cjeanbap Initial Creation. 31 | # 32 | # 33 | # 34 | 35 | -------------------------------------------------------------------------------- /src/awips/test/dafTests/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | 22 | # 23 | # __init__.py for awips.test.dafTests package 24 | # 25 | # 26 | # SOFTWARE HISTORY 27 | # 28 | # Date Ticket# Engineer Description 29 | # ------------ ---------- ----------- -------------------------- 30 | # 02/09/2016 4795 mapeters Initial creation. 31 | # 04/12/2016 5548 tgurney Cleanup 32 | # 33 | # 34 | # 35 | 36 | __all__ = [] 37 | -------------------------------------------------------------------------------- /src/awips/test/localization/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | 22 | # 23 | # __init__.py for awips.test.localization package 24 | # 25 | # 26 | # SOFTWARE HISTORY 27 | # 28 | # Date Ticket# Engineer Description 29 | # --------- -------- --------- -------------------------- 30 | # 08/07/17 5731 bsteffen Initial Creation. 31 | 32 | __all__ = [] 33 | -------------------------------------------------------------------------------- /src/awips/test/localization/smallTestImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/awips/test/localization/smallTestImage.png -------------------------------------------------------------------------------- /src/dynamicserialize/adapters/GridDataHistoryAdapter.py: -------------------------------------------------------------------------------- 1 | # 2 | # Adapter for com.raytheon.uf.common.dataplugin.gfe.GridDataHistory 3 | # 4 | # TODO: REWRITE THIS ADAPTER when serialization/deserialization of this 5 | # class has been finalized. 6 | # 7 | # 8 | # SOFTWARE HISTORY 9 | # 10 | # Date Ticket# Engineer Description 11 | # ------------ ---------- ----------- -------------------------- 12 | # 03/29/11 dgilling Initial Creation. 13 | # 14 | 15 | from dynamicserialize.dstypes.com.raytheon.uf.common.dataplugin.gfe import GridDataHistory 16 | 17 | ClassAdapter = 'com.raytheon.uf.common.dataplugin.gfe.GridDataHistory' 18 | 19 | 20 | def serialize(context, history): 21 | context.writeString(history.getCodedString()) 22 | 23 | 24 | def deserialize(context): 25 | result = GridDataHistory(context.readString()) 26 | return result 27 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'com', 25 | 'gov', 26 | 'java', 27 | 'org' 28 | ] 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'raytheon' 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'uf' 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'common' 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'activetable', 25 | 'alertviz', 26 | 'auth', 27 | 'dataaccess', 28 | 'dataplugin', 29 | 'dataquery', 30 | 'datastorage', 31 | 'localization', 32 | 'management', 33 | 'message', 34 | 'mpe', 35 | 'pointdata', 36 | 'pypies', 37 | 'serialization', 38 | 'site', 39 | 'time' 40 | ] 41 | 42 | 43 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/activetable/ActiveTableMode.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File generated against equivalent DynamicSerialize Java class 22 | # Jul 27, 2016 #5769 randerso Fixed __str__ method 23 | 24 | class ActiveTableMode(object): 25 | def __init__(self): 26 | self.value = None 27 | 28 | def __str__(self): 29 | return str(self.value) -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/activetable/GetActiveTableDictResponse.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class GetActiveTableDictResponse(object): 24 | 25 | def __init__(self): 26 | self.activeTable = None 27 | self.mode = None 28 | 29 | def getActiveTable(self): 30 | return self.activeTable 31 | 32 | def setActiveTable(self, activeTable): 33 | self.activeTable = activeTable 34 | 35 | def getMode(self): 36 | return self.mode 37 | 38 | def setMode(self, mode): 39 | self.mode = mode 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/activetable/GetFourCharSitesRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class GetFourCharSitesRequest(object): 24 | 25 | def __init__(self): 26 | self.sites = None 27 | 28 | def getSites(self): 29 | return self.sites 30 | 31 | def setSites(self, sites): 32 | self.sites = sites 33 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/activetable/GetFourCharSitesResponse.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class GetFourCharSitesResponse(object): 24 | 25 | def __init__(self): 26 | self.sites = None 27 | 28 | def getSites(self): 29 | return self.sites 30 | 31 | def setSites(self, sites): 32 | self.sites = sites 33 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/activetable/GetVtecAttributeResponse.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | class GetVtecAttributeResponse(object): 22 | 23 | def __init__(self): 24 | self.value = None 25 | 26 | def getValue(self): 27 | return self.value 28 | 29 | def setValue(self, value): 30 | self.value = value 31 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/activetable/OperationalActiveTableRecord.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | # 21 | # SOFTWARE HISTORY 22 | # 23 | # Date Ticket# Engineer Description 24 | # ------------ ---------- ----------- -------------------------- 25 | # 05/22/2015 4522 randerso Changed to inherit from ActiveTableRecord 26 | # 27 | ## 28 | 29 | from .ActiveTableRecord import ActiveTableRecord 30 | 31 | class OperationalActiveTableRecord(ActiveTableRecord): 32 | 33 | def __init__(self): 34 | super(OperationalActiveTableRecord, self).__init__() 35 | 36 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/activetable/PracticeActiveTableRecord.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | # 21 | # SOFTWARE HISTORY 22 | # 23 | # Date Ticket# Engineer Description 24 | # ------------ ---------- ----------- -------------------------- 25 | # 05/22/2015 4522 randerso Changed to inherit from ActiveTableRecord 26 | # 27 | ## 28 | 29 | from .ActiveTableRecord import ActiveTableRecord 30 | 31 | class PracticeActiveTableRecord(ActiveTableRecord): 32 | 33 | def __init__(self): 34 | super(PracticeActiveTableRecord, self).__init__() 35 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/activetable/request/ClearPracticeVTECTableRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | 24 | class ClearPracticeVTECTableRequest(object): 25 | 26 | def __init__(self): 27 | self.siteID = None 28 | self.workstationID = None 29 | 30 | def getSiteID(self): 31 | return self.siteID 32 | 33 | def setSiteID(self, siteID): 34 | self.siteID = siteID 35 | 36 | def getWorkstationID(self): 37 | return self.workstationID 38 | 39 | def setWorkstationID(self, workstationID): 40 | self.workstationID = workstationID 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/activetable/request/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'ClearPracticeVTECTableRequest', 25 | 'MergeActiveTableRequest', 26 | 'RetrieveRemoteActiveTableRequest', 27 | 'SendActiveTableRequest' 28 | ] 29 | 30 | from .ClearPracticeVTECTableRequest import ClearPracticeVTECTableRequest 31 | from .MergeActiveTableRequest import MergeActiveTableRequest 32 | from .RetrieveRemoteActiveTableRequest import RetrieveRemoteActiveTableRequest 33 | from .SendActiveTableRequest import SendActiveTableRequest 34 | 35 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/activetable/response/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'ActiveTableSharingResponse' 25 | ] 26 | 27 | from .ActiveTableSharingResponse import ActiveTableSharingResponse 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/alertviz/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'AlertVizRequest' 25 | ] 26 | 27 | from .AlertVizRequest import AlertVizRequest 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/auth/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'resp', 25 | 'user' 26 | ] 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/auth/resp/AbstractFailedResponse.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | import abc 24 | 25 | 26 | class AbstractFailedResponse(object, metaclass=abc.ABCMeta): 27 | @abc.abstractmethod 28 | def __init__(self): 29 | self.request = None 30 | 31 | def getRequest(self): 32 | return self.request 33 | 34 | def setRequest(self, request): 35 | self.request = request 36 | 37 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/auth/resp/AuthServerErrorResponse.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | 24 | from dynamicserialize.dstypes.com.raytheon.uf.common.serialization.comm.response import ServerErrorResponse 25 | 26 | class AuthServerErrorResponse(ServerErrorResponse): 27 | 28 | def __init__(self): 29 | super(AuthServerErrorResponse, self).__init__() 30 | 31 | ## nothing to implement here that isn't already covered by ServerErrorResponse ## 32 | ## Just need the separate class for de-serialization. ## 33 | 34 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/auth/resp/SuccessfulExecution.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class SuccessfulExecution(object): 24 | 25 | def __init__(self): 26 | self.response = None 27 | self.updatedData = None 28 | 29 | def getResponse(self): 30 | return self.response 31 | 32 | def setResponse(self, response): 33 | self.response = response 34 | 35 | def getUpdatedData(self): 36 | return self.updatedData 37 | 38 | def setUpdatedData(self, updatedData): 39 | self.updatedData = updatedData 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/auth/resp/UserNotAuthorized.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | from dynamicserialize.dstypes.com.raytheon.uf.common.auth.resp import AbstractFailedResponse 24 | 25 | 26 | class UserNotAuthorized(AbstractFailedResponse): 27 | 28 | def __init__(self): 29 | super(UserNotAuthorized, self).__init__() 30 | self.message = None 31 | 32 | def getMessage(self): 33 | return self.message 34 | 35 | def setMessage(self, message): 36 | self.message = message 37 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/auth/resp/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'AbstractFailedResponse', 25 | 'AuthServerErrorResponse', 26 | 'SuccessfulExecution', 27 | 'UserNotAuthorized' 28 | ] 29 | 30 | from .AbstractFailedResponse import AbstractFailedResponse 31 | from .AuthServerErrorResponse import AuthServerErrorResponse 32 | from .SuccessfulExecution import SuccessfulExecution 33 | from .UserNotAuthorized import UserNotAuthorized 34 | 35 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/auth/user/UserId.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | import os 24 | class UserId(object): 25 | 26 | def __init__(self, id = None): 27 | self.id = id 28 | 29 | def getId(self): 30 | return self.id 31 | 32 | def setId(self, id): 33 | self.id = id 34 | 35 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/auth/user/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'User', 25 | 'UserId' 26 | ] 27 | 28 | from .User import User 29 | from .UserId import UserId 30 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataaccess/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'impl', 25 | 'request', 26 | 'response' 27 | ] 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataaccess/impl/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'DefaultDataRequest', 25 | 'DefaultNotificationFilter' 26 | ] 27 | 28 | from .DefaultDataRequest import DefaultDataRequest 29 | from .DefaultNotificationFilter import DefaultNotificationFilter -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataaccess/request/GetSupportedDatatypesRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | # and then modified to do nothing on __init__. 23 | # 24 | # SOFTWARE HISTORY 25 | # 26 | # Date Ticket# Engineer Description 27 | # ------------ ---------- ----------- -------------------------- 28 | # 07/23/14 #3185 njensen Initial Creation. 29 | # 30 | # 31 | 32 | class GetSupportedDatatypesRequest(object): 33 | 34 | def __init__(self): 35 | pass 36 | 37 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataaccess/response/GetGeometryDataResponse.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class GetGeometryDataResponse(object): 24 | 25 | def __init__(self): 26 | self.geometryWKBs = None 27 | self.geoData = None 28 | 29 | def getGeometryWKBs(self): 30 | return self.geometryWKBs 31 | 32 | def setGeometryWKBs(self, geometryWKBs): 33 | self.geometryWKBs = geometryWKBs 34 | 35 | def getGeoData(self): 36 | return self.geoData 37 | 38 | def setGeoData(self, geoData): 39 | self.geoData = geoData 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'events', 25 | 'gfe', 26 | 'grid', 27 | 'level', 28 | 'message', 29 | 'persist', 30 | 'radar', 31 | 'text' 32 | ] 33 | 34 | 35 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/events/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'hazards' 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/events/hazards/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'requests' 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/events/hazards/requests/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'RegionLookupRequest' 25 | ] 26 | 27 | from .RegionLookupRequest import RegionLookupRequest 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/config/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'ProjectionData' 25 | ] 26 | 27 | from .ProjectionData import ProjectionData 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/db/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'objects' 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/db/objects/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'DatabaseID', 25 | 'GFERecord', 26 | 'GridLocation', 27 | 'GridParmInfo', 28 | 'ParmID', 29 | 'TimeConstraints' 30 | ] 31 | 32 | from .DatabaseID import DatabaseID 33 | from .GFERecord import GFERecord 34 | from .GridLocation import GridLocation 35 | from .GridParmInfo import GridParmInfo 36 | from .ParmID import ParmID 37 | from .TimeConstraints import TimeConstraints 38 | 39 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/discrete/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'DiscreteKey' 25 | ] 26 | 27 | from .DiscreteKey import DiscreteKey 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/grid/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'Grid2DByte', 25 | 'Grid2DFloat' 26 | ] 27 | 28 | from .Grid2DByte import Grid2DByte 29 | from .Grid2DFloat import Grid2DFloat 30 | 31 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/request/GetOfficialDbNameRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class GetOfficialDbNameRequest(object): 24 | 25 | def __init__(self): 26 | self.workstationID = None 27 | self.siteID = None 28 | 29 | def getWorkstationID(self): 30 | return self.workstationID 31 | 32 | def setWorkstationID(self, workstationID): 33 | self.workstationID = workstationID 34 | 35 | def getSiteID(self): 36 | return self.siteID 37 | 38 | def setSiteID(self, siteID): 39 | self.siteID = siteID 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/request/GetSingletonDbIdsRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class GetSingletonDbIdsRequest(object): 24 | 25 | def __init__(self): 26 | self.workstationID = None 27 | self.siteID = None 28 | 29 | def getWorkstationID(self): 30 | return self.workstationID 31 | 32 | def setWorkstationID(self, workstationID): 33 | self.workstationID = workstationID 34 | 35 | def getSiteID(self): 36 | return self.siteID 37 | 38 | def setSiteID(self, siteID): 39 | self.siteID = siteID 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/request/GridLocRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class GridLocRequest(object): 24 | 25 | def __init__(self): 26 | self.workstationID = None 27 | self.siteID = None 28 | 29 | def getWorkstationID(self): 30 | return self.workstationID 31 | 32 | def setWorkstationID(self, workstationID): 33 | self.workstationID = workstationID 34 | 35 | def getSiteID(self): 36 | return self.siteID 37 | 38 | def setSiteID(self, siteID): 39 | self.siteID = siteID 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/server/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'lock', 25 | 'message', 26 | 'notify', 27 | 'request' 28 | ] 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/server/lock/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'Lock', 25 | 'LockTable' 26 | ] 27 | 28 | from .Lock import Lock 29 | from .LockTable import LockTable 30 | 31 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/server/message/ServerMsg.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class ServerMsg(object): 24 | 25 | def __init__(self): 26 | self.message = None 27 | 28 | def getMessage(self): 29 | return self.message 30 | 31 | def setMessage(self, message): 32 | self.message = message 33 | 34 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/server/message/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'ServerMsg', 25 | 'ServerResponse' 26 | ] 27 | 28 | from .ServerMsg import ServerMsg 29 | from .ServerResponse import ServerResponse 30 | 31 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/server/request/LockTableRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class LockTableRequest(object): 24 | 25 | def __init__(self): 26 | self.parmId = None 27 | self.dbId = None 28 | 29 | def getParmId(self): 30 | return self.parmId 31 | 32 | def setParmId(self, parmId): 33 | self.parmId = parmId 34 | 35 | def getDbId(self): 36 | return self.dbId 37 | 38 | def setDbId(self, dbId): 39 | self.dbId = dbId 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/server/request/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'CommitGridRequest', 25 | 'GetGridRequest', 26 | 'LockRequest', 27 | 'LockTableRequest' 28 | ] 29 | 30 | from .CommitGridRequest import CommitGridRequest 31 | from .GetGridRequest import GetGridRequest 32 | from .LockRequest import LockRequest 33 | from .LockTableRequest import LockTableRequest 34 | 35 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/slice/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'AbstractGridSlice', 25 | 'DiscreteGridSlice', 26 | 'ScalarGridSlice', 27 | 'VectorGridSlice', 28 | 'WeatherGridSlice' 29 | ] 30 | 31 | from .AbstractGridSlice import AbstractGridSlice 32 | from .DiscreteGridSlice import DiscreteGridSlice 33 | from .ScalarGridSlice import ScalarGridSlice 34 | from .VectorGridSlice import VectorGridSlice 35 | from .WeatherGridSlice import WeatherGridSlice 36 | 37 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/svcbu/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | # 21 | # SOFTWARE HISTORY 22 | # 23 | # Date Ticket# Engineer Description 24 | # ------------ ---------- ----------- -------------------------- 25 | # 06/22/2015 4573 randerso Initial creation (hand generated) 26 | # 27 | ## 28 | 29 | __all__ = [ 30 | 'JobProgress', 31 | ] 32 | 33 | from .JobProgress import JobProgress 34 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/weather/WeatherSubKey.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | ## TODO: Implement WeatherSubKey when it is explicitly needed. For now 23 | # WeatherSubKeys will be list of str within the WeatherKey class. 24 | 25 | class WeatherSubKey(object): 26 | 27 | def __init__(self): 28 | raise NotImplementedError("WeatherSubKey is not currently supported.") 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/gfe/weather/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'WeatherKey', 25 | 'WeatherSubKey' 26 | ] 27 | 28 | from .WeatherKey import WeatherKey 29 | from .WeatherSubKey import WeatherSubKey 30 | 31 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/grid/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'request' 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/grid/request/DeleteAllGridDataRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class DeleteAllGridDataRequest(object): 24 | 25 | def __init__(self, modelName=None): 26 | self.modelName = modelName 27 | 28 | def getModelName(self): 29 | return self.modelName 30 | 31 | def setModelName(self, modelName): 32 | self.modelName = modelName 33 | 34 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/grid/request/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'DeleteAllGridDataRequest' 25 | ] 26 | 27 | from .DeleteAllGridDataRequest import DeleteAllGridDataRequest 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/level/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'Level', 25 | 'MasterLevel' 26 | ] 27 | 28 | from .Level import Level 29 | from .MasterLevel import MasterLevel 30 | 31 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/message/DataURINotificationMessage.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class DataURINotificationMessage(object): 24 | 25 | def __init__(self): 26 | self.dataURIs = None 27 | self.ids = None 28 | 29 | def getDataURIs(self): 30 | return self.dataURIs 31 | 32 | def setDataURIs(self, dataURIs): 33 | self.dataURIs = dataURIs 34 | 35 | def getIds(self): 36 | return self.ids 37 | 38 | def setIds(self, ids): 39 | self.ids = ids 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/message/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'DataURINotificationMessage' 25 | ] 26 | 27 | from .DataURINotificationMessage import DataURINotificationMessage 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/persist/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'PersistableDataObject' 25 | ] 26 | 27 | from .PersistableDataObject import PersistableDataObject 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/radar/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'request', 25 | 'response' 26 | ] 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/radar/request/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'GetRadarDataRecordRequest' 25 | ] 26 | 27 | from .GetRadarDataRecordRequest import GetRadarDataRecordRequest 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/radar/response/GetRadarDataRecordResponse.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | # 23 | # SOFTWARE HISTORY 24 | # 25 | # Date Ticket# Engineer Description 26 | # ------------ ---------- ----------- -------------------------- 27 | # Aug 19, 2014 nabowle Generated 28 | 29 | class GetRadarDataRecordResponse(object): 30 | 31 | def __init__(self): 32 | self.data = None 33 | 34 | def getData(self): 35 | return self.data 36 | 37 | def setData(self, data): 38 | self.data = data 39 | 40 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/radar/response/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'GetRadarDataRecordResponse', 25 | 'RadarDataRecord' 26 | ] 27 | 28 | from .GetRadarDataRecordResponse import GetRadarDataRecordResponse 29 | from .RadarDataRecord import RadarDataRecord 30 | 31 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/text/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'dbsrv', 25 | 'subscription' 26 | ] 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/text/dbsrv/TextDBRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class TextDBRequest(object): 24 | 25 | def __init__(self): 26 | self.message = None 27 | 28 | def getMessage(self): 29 | return self.message 30 | 31 | def setMessage(self, message): 32 | self.message = message 33 | 34 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/text/dbsrv/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'TextDBRequest' 25 | ] 26 | 27 | from .TextDBRequest import TextDBRequest 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/text/subscription/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'request' 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataplugin/text/subscription/request/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'SubscriptionRequest' 25 | ] 26 | 27 | from .SubscriptionRequest import SubscriptionRequest 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataquery/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'requests' 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/dataquery/requests/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'RequestConstraint' 25 | ] 26 | 27 | from .RequestConstraint import RequestConstraint 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/datastorage/StorageProperties.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class StorageProperties(object): 24 | 25 | def __init__(self): 26 | self.compression = None 27 | self.chunked = None 28 | 29 | def getCompression(self): 30 | return self.compression 31 | 32 | def setCompression(self, compression): 33 | self.compression = compression 34 | 35 | def getChunked(self): 36 | return self.chunked 37 | 38 | def setChunked(self, chunked): 39 | self.chunked = chunked 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/localization/FileUpdatedMessage.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | # 4 | # SOFTWARE HISTORY 5 | # 6 | # Date Ticket# Engineer Description 7 | # ------------ ---------- ----------- -------------------------- 8 | # Apr 11, 2023 2033903 mapeters Generated 9 | 10 | class FileUpdatedMessage(object): 11 | 12 | def __init__(self): 13 | self.timeStamp = None 14 | self.fileName = None 15 | self.changeType = None 16 | self.context = None 17 | self.checkSum = None 18 | 19 | def getTimeStamp(self): 20 | return self.timeStamp 21 | 22 | def setTimeStamp(self, timeStamp): 23 | self.timeStamp = timeStamp 24 | 25 | def getFileName(self): 26 | return self.fileName 27 | 28 | def setFileName(self, fileName): 29 | self.fileName = fileName 30 | 31 | def getChangeType(self): 32 | return self.changeType 33 | 34 | def setChangeType(self, changeType): 35 | self.changeType = changeType 36 | 37 | def getContext(self): 38 | return self.context 39 | 40 | def setContext(self, context): 41 | self.context = context 42 | 43 | def getCheckSum(self): 44 | return self.checkSum 45 | 46 | def setCheckSum(self, checkSum): 47 | self.checkSum = checkSum 48 | 49 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/localization/LocalizationType.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | class LocalizationType(object): 22 | 23 | def __init__(self, text=None): 24 | self.text = text 25 | 26 | def __str__(self): 27 | return self.__repr__() 28 | 29 | def __repr__(self): 30 | return str(self.text) 31 | 32 | def getText(self): 33 | return self.text 34 | 35 | def setText(self, text): 36 | self.text = text 37 | 38 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/localization/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'FileUpdatedMessage', 25 | 'LocalizationContext', 26 | 'LocalizationLevel', 27 | 'LocalizationType', 28 | 'msgs', 29 | 'stream' 30 | ] 31 | 32 | from .FileUpdatedMessage import FileUpdatedMessage 33 | from .LocalizationContext import LocalizationContext 34 | from .LocalizationLevel import LocalizationLevel 35 | from .LocalizationType import LocalizationType 36 | 37 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/localization/msgs/UtilityRequestMessage.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class UtilityRequestMessage(object): 24 | 25 | def __init__(self): 26 | self.commands = None 27 | 28 | def getCommands(self): 29 | return self.commands 30 | 31 | def setCommands(self, commands): 32 | self.commands = commands 33 | 34 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/localization/msgs/UtilityResponseMessage.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class UtilityResponseMessage(object): 24 | 25 | def __init__(self): 26 | self.responses = None 27 | 28 | def getResponses(self): 29 | return self.responses 30 | 31 | def setResponses(self, responses): 32 | self.responses = responses 33 | 34 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/localization/stream/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'AbstractLocalizationStreamRequest', 25 | 'LocalizationStreamGetRequest', 26 | 'LocalizationStreamPutRequest' 27 | ] 28 | 29 | from .AbstractLocalizationStreamRequest import AbstractLocalizationStreamRequest 30 | from .LocalizationStreamGetRequest import LocalizationStreamGetRequest 31 | from .LocalizationStreamPutRequest import LocalizationStreamPutRequest 32 | 33 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/management/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'request', 25 | 'response' 26 | ] 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/management/request/ChangeContextRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class ChangeContextRequest(object): 24 | 25 | def __init__(self): 26 | self.action = None 27 | self.contextName = None 28 | 29 | def getAction(self): 30 | return self.action 31 | 32 | def setAction(self, action): 33 | self.action = action 34 | 35 | def getContextName(self): 36 | return self.contextName 37 | 38 | def setContextName(self, contextName): 39 | self.contextName = contextName 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/management/request/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'ChangeContextRequest', 25 | 'PassThroughRequest', 26 | 'diagnostic' 27 | ] 28 | 29 | from .ChangeContextRequest import ChangeContextRequest 30 | from .PassThroughRequest import PassThroughRequest 31 | 32 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/management/request/diagnostic/GetClusterMembersRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class GetClusterMembersRequest(object): 24 | 25 | def __init__(self): 26 | pass 27 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/management/request/diagnostic/GetContextsRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class GetContextsRequest(object): 24 | 25 | def __init__(self): 26 | self.contextState = None 27 | 28 | def getContextState(self): 29 | return self.contextState 30 | 31 | def setContextState(self, contextState): 32 | self.contextState = contextState 33 | 34 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/management/request/diagnostic/StatusRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class StatusRequest(object): 24 | 25 | def __init__(self): 26 | pass 27 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/management/request/diagnostic/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'GetClusterMembersRequest', 25 | 'GetContextsRequest', 26 | 'StatusRequest' 27 | ] 28 | 29 | from .GetClusterMembersRequest import GetClusterMembersRequest 30 | from .GetContextsRequest import GetContextsRequest 31 | from .StatusRequest import StatusRequest 32 | 33 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/management/response/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'diagnostic' 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/management/response/diagnostic/ClusterMembersResponse.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class ClusterMembersResponse(object): 24 | 25 | def __init__(self): 26 | self.status = None 27 | 28 | def getStatus(self): 29 | return self.status 30 | 31 | def setStatus(self, status): 32 | self.status = status 33 | 34 | def __repr__(self): 35 | msg = '' 36 | for x in self.status: 37 | msg += str(x) + '\n' 38 | return msg 39 | 40 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/management/response/diagnostic/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'ClusterMembersResponse', 25 | 'ContextsResponse', 26 | 'StatusResponse' 27 | ] 28 | 29 | from .ClusterMembersResponse import ClusterMembersResponse 30 | from .ContextsResponse import ContextsResponse 31 | from .StatusResponse import StatusResponse 32 | 33 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/message/Body.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class Body(object): 24 | 25 | def __init__(self): 26 | self.responses = None 27 | 28 | def getResponses(self): 29 | return self.responses 30 | 31 | def setResponses(self, responses): 32 | self.responses = responses 33 | 34 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/message/Message.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class Message(object): 24 | 25 | def __init__(self, header=None, body=None): 26 | self.header = header 27 | self.body = body 28 | 29 | def getHeader(self): 30 | return self.header 31 | 32 | def setHeader(self, header): 33 | self.header = header 34 | 35 | def getBody(self): 36 | return self.body 37 | 38 | def setBody(self, body): 39 | self.body = body 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/message/Property.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class Property(object): 24 | 25 | def __init__(self, name=None, value=None): 26 | self.name = name 27 | self.value = value 28 | 29 | def getName(self): 30 | return self.name 31 | 32 | def setName(self, name): 33 | self.name = name 34 | 35 | def getValue(self): 36 | return self.value 37 | 38 | def setValue(self, value): 39 | self.value = value 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/mpe/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'dqcpreprocessor' 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/mpe/dqcpreprocessor/DQCPreProcessorExecuteResponse.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | # 23 | # SOFTWARE HISTORY 24 | # 25 | # Date Ticket# Engineer Description 26 | # ------------ ---------- ----------- -------------------------- 27 | # Jan 28, 2019 7699 smanoj Generated 28 | 29 | class DQCPreProcessorExecuteResponse(object): 30 | 31 | def __init__(self): 32 | pass 33 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/mpe/dqcpreprocessor/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'DQCPreProcRunConfiguration', 25 | 'DQCPreProcessorExecuteRequest', 26 | 'DQCPreProcessorExecuteResponse' 27 | ] 28 | 29 | from .DQCPreProcRunConfiguration import DQCPreProcRunConfiguration 30 | from .DQCPreProcessorExecuteRequest import DQCPreProcessorExecuteRequest 31 | from .DQCPreProcessorExecuteResponse import DQCPreProcessorExecuteResponse 32 | 33 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/pointdata/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'requests' 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/pointdata/requests/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'NewAdaptivePlotRequest' 25 | ] 26 | 27 | from .NewAdaptivePlotRequest import NewAdaptivePlotRequest 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/pypies/PointTest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class PointTest: 24 | 25 | def __init__(self): 26 | self.points = None 27 | 28 | def getPoints(self): 29 | return self.points 30 | 31 | def setPoints(self, points): 32 | self.points = points 33 | 34 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/pypies/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'PointTest', 25 | 'records', 26 | 'request', 27 | 'response' 28 | ] 29 | 30 | from .PointTest import PointTest 31 | 32 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/pypies/request/CreateDatasetRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class CreateDatasetRequest(object): 24 | 25 | def __init__(self): 26 | self.record = None 27 | self.filename = None 28 | 29 | def getRecord(self): 30 | return self.record 31 | 32 | def setRecord(self, record): 33 | self.record = record 34 | 35 | def getFilename(self): 36 | return self.filename 37 | 38 | def setFilename(self, filename): 39 | self.filename = filename 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/pypies/request/DatasetNamesRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class DatasetNamesRequest(object): 24 | 25 | def __init__(self): 26 | self.group = None 27 | self.filename = None 28 | 29 | def getGroup(self): 30 | return self.group 31 | 32 | def setGroup(self, group): 33 | self.group = group 34 | 35 | def getFilename(self): 36 | return self.filename 37 | 38 | def setFilename(self, filename): 39 | self.filename = filename 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/pypies/request/DeleteFilesRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class DeleteFilesRequest(object): 24 | 25 | def __init__(self): 26 | self.datesToDelete = None 27 | 28 | def getDatesToDelete(self): 29 | return self.datesToDelete 30 | 31 | def setDatesToDelete(self, datesToDelete): 32 | self.datesToDelete = datesToDelete 33 | 34 | def getFilename(self): 35 | return self.filename 36 | 37 | def setFilename(self, filename): 38 | self.filename = filename 39 | 40 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/pypies/request/RepackRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class RepackRequest(object): 24 | 25 | def __init__(self): 26 | self.compression = None 27 | self.filename = None 28 | 29 | def getCompression(self): 30 | return self.compression 31 | 32 | def setCompression(self, compression): 33 | self.compression = compression 34 | 35 | def getFilename(self): 36 | return self.filename 37 | 38 | def setFilename(self, filename): 39 | self.filename = filename 40 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/pypies/response/DeleteResponse.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class DeleteResponse(object): 24 | 25 | def __init__(self): 26 | self.success = None 27 | 28 | def getSuccess(self): 29 | return self.success 30 | 31 | def setSuccess(self, success): 32 | self.success = success 33 | 34 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/pypies/response/ErrorResponse.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class ErrorResponse(object): 24 | 25 | def __init__(self, error=None, errorType='OTHER'): 26 | self.error = error 27 | self.type = errorType 28 | 29 | def getError(self): 30 | return self.error 31 | 32 | def setError(self, error): 33 | self.error = error 34 | 35 | def getType(self): 36 | return self.type 37 | 38 | def setType(self, errorType): 39 | self.type = errorType 40 | 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/pypies/response/FileActionResponse.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class FileActionResponse(object): 24 | 25 | def __init__(self): 26 | self.successfulFiles = None 27 | self.failedFiles = None 28 | 29 | def getSuccessfulFiles(self): 30 | return self.successfulFiles 31 | 32 | def setSuccessfulFiles(self, successfulFiles): 33 | self.successfulFiles = successfulFiles 34 | 35 | def getFailedFiles(self): 36 | return self.failedFiles 37 | 38 | def setFailedFiles(self, failedFiles): 39 | self.failedFiles = failedFiles 40 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/pypies/response/RetrieveResponse.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class RetrieveResponse(object): 24 | 25 | def __init__(self): 26 | self.records = None 27 | 28 | def getRecords(self): 29 | return self.records 30 | 31 | def setRecords(self, records): 32 | self.records = records 33 | 34 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/serialization/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | 22 | # 23 | # Package definition for com.raytheon.uf.common.serialization 24 | # 25 | # 26 | # SOFTWARE HISTORY 27 | # 28 | # Date Ticket# Engineer Description 29 | # ------------ ---------- ----------- -------------------------- 30 | # 09/21/10 njensen Initial Creation. 31 | # 32 | # 33 | # 34 | 35 | 36 | __all__ = [ 37 | 'comm', 38 | 'SerializableExceptionWrapper', 39 | ] 40 | 41 | from .SerializableExceptionWrapper import SerializableExceptionWrapper 42 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/serialization/comm/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | 22 | # 23 | # Package definition for com.raytheon.uf.common.serialization.comm 24 | # 25 | # 26 | # SOFTWARE HISTORY 27 | # 28 | # Date Ticket# Engineer Description 29 | # ------------ ---------- ----------- -------------------------- 30 | # 09/21/10 njensen Initial Creation. 31 | # 32 | # 33 | # 34 | 35 | 36 | __all__ = [ 37 | 'response', 38 | ] 39 | 40 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/serialization/comm/response/ServerErrorResponse.py: -------------------------------------------------------------------------------- 1 | # This software was developed and / or modified by Raytheon Company, 2 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 3 | # 4 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 5 | # This software product contains export-restricted data whose 6 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 7 | # to non-U.S. persons whether in the United States or abroad requires 8 | # an export license or other authorization. 9 | # 10 | # Contractor Name: Raytheon Company 11 | # Contractor Address: 6825 Pine Street, Suite 340 12 | # Mail Stop B8 13 | # Omaha, NE 68106 14 | # 402.291.0100 15 | # 16 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 17 | # further licensing information. 18 | 19 | # File auto-generated against equivalent DynamicSerialize Java class 20 | 21 | class ServerErrorResponse(object): 22 | 23 | def __init__(self): 24 | self.exception = None 25 | 26 | def getException(self): 27 | return self.exception 28 | 29 | def setException(self, exception): 30 | self.exception = exception 31 | 32 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/serialization/comm/response/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | 22 | # 23 | # Package definition for com.raytheon.uf.common.serialization.comm.response 24 | # 25 | # 26 | # SOFTWARE HISTORY 27 | # 28 | # Date Ticket# Engineer Description 29 | # ------------ ---------- ----------- -------------------------- 30 | # 09/21/10 njensen Initial Creation. 31 | # 32 | # 33 | # 34 | 35 | 36 | __all__ = [ 37 | 'ServerErrorResponse', 38 | ] 39 | 40 | from .ServerErrorResponse import ServerErrorResponse 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/site/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'notify', 25 | 'requests', 26 | ] 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/site/notify/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'ClusterActivationNotification', 25 | 'SiteActivationNotification', 26 | ] 27 | 28 | from .ClusterActivationNotification import ClusterActivationNotification 29 | from .SiteActivationNotification import SiteActivationNotification 30 | 31 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/site/requests/GetActiveSitesRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class GetActiveSitesRequest(object): 24 | 25 | def __init__(self): 26 | super(GetActiveSitesRequest, self).__init__() 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/site/requests/GetPrimarySiteRequest.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated against equivalent DynamicSerialize Java class 22 | 23 | class GetPrimarySiteRequest(object): 24 | 25 | def __init__(self): 26 | super(GetPrimarySiteRequest, self).__init__() 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/site/requests/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'ActivateSiteRequest', 25 | 'DeactivateSiteRequest', 26 | 'GetActiveSitesRequest', 27 | 'GetPrimarySiteRequest', 28 | 'ValidateConfigRequest', 29 | ] 30 | 31 | from .ActivateSiteRequest import ActivateSiteRequest 32 | from .DeactivateSiteRequest import DeactivateSiteRequest 33 | from .GetActiveSitesRequest import GetActiveSitesRequest 34 | from .GetPrimarySiteRequest import GetPrimarySiteRequest 35 | from .ValidateConfigRequest import ValidateConfigRequest 36 | 37 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/com/raytheon/uf/common/time/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'DataTime', 25 | 'TimeRange', 26 | 'FormattedDate', 27 | 'CommutativeTimestamp' 28 | ] 29 | 30 | from .DataTime import DataTime 31 | from .TimeRange import TimeRange 32 | from .FormattedDate import FormattedDate 33 | from .CommutativeTimestamp import CommutativeTimestamp 34 | 35 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'noaa' 6 | ] 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'nws' 6 | ] 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'ncep' 6 | ] 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'common' 6 | ] 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'dataplugin' 6 | ] 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'atcf', 6 | 'gempak', 7 | 'gpd', 8 | 'pgen' 9 | ] 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/atcf/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'request' 6 | ] 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/atcf/request/RetrieveAtcfDeckRequest.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | 4 | class RetrieveAtcfDeckRequest(object): 5 | 6 | def __init__(self): 7 | self.deckID = None 8 | 9 | def getDeckID(self): 10 | return self.deckID 11 | 12 | def setDeckID(self, deckID): 13 | self.deckID = deckID 14 | 15 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/atcf/request/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'RetrieveAtcfDeckRequest' 6 | ] 7 | 8 | from .RetrieveAtcfDeckRequest import RetrieveAtcfDeckRequest 9 | 10 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/gempak/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'request' 6 | ] 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/gempak/request/GetGridInfoRequest.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | # 4 | # SOFTWARE HISTORY 5 | # 6 | # Date Ticket# Engineer Description 7 | # ------------ ---------- ----------- -------------------------- 8 | # Sep 16, 2016 pmoyer Generated 9 | 10 | class GetGridInfoRequest(object): 11 | 12 | def __init__(self): 13 | self.modelId = None 14 | self.reftime = None 15 | self.pluginName = None 16 | self.fcstsec = None 17 | 18 | def getModelId(self): 19 | return self.modelId 20 | 21 | def setModelId(self, modelId): 22 | self.modelId = modelId 23 | 24 | def getReftime(self): 25 | return self.reftime 26 | 27 | def setReftime(self, reftime): 28 | self.reftime = reftime 29 | 30 | def getPluginName(self): 31 | return self.pluginName 32 | 33 | def setPluginName(self, pluginName): 34 | self.pluginName = pluginName 35 | 36 | def getFcstsec(self): 37 | return self.fcstsec 38 | 39 | def setFcstsec(self, fcstsec): 40 | self.fcstsec = fcstsec 41 | 42 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/gempak/request/GetGridNavRequest.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | # 4 | # SOFTWARE HISTORY 5 | # 6 | # Date Ticket# Engineer Description 7 | # ------------ ---------- ----------- -------------------------- 8 | # Sep 16, 2016 pmoyer Generated 9 | 10 | class GetGridNavRequest(object): 11 | 12 | def __init__(self): 13 | self.modelId = None 14 | self.pluginName = None 15 | 16 | def getModelId(self): 17 | return self.modelId 18 | 19 | def setModelId(self, modelId): 20 | self.modelId = modelId 21 | 22 | def getPluginName(self): 23 | return self.pluginName 24 | 25 | def setPluginName(self, pluginName): 26 | self.pluginName = pluginName 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/gempak/request/GetStationsRequest.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | # 4 | # SOFTWARE HISTORY 5 | # 6 | # Date Ticket# Engineer Description 7 | # ------------ ---------- ----------- -------------------------- 8 | # Sep 16, 2016 pmoyer Generated 9 | 10 | class GetStationsRequest(object): 11 | 12 | def __init__(self): 13 | self.pluginName = None 14 | 15 | def getPluginName(self): 16 | return self.pluginName 17 | 18 | def setPluginName(self, pluginName): 19 | self.pluginName = pluginName 20 | 21 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/gempak/request/GetTimesRequest.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | # 4 | # SOFTWARE HISTORY 5 | # 6 | # Date Ticket# Engineer Description 7 | # ------------ ---------- ----------- -------------------------- 8 | # Sep 16, 2016 pmoyer Generated 9 | 10 | class GetTimesRequest(object): 11 | 12 | def __init__(self): 13 | self.pluginName = None 14 | self.timeField = None 15 | 16 | def getPluginName(self): 17 | return self.pluginName 18 | 19 | def setPluginName(self, pluginName): 20 | self.pluginName = pluginName 21 | 22 | def getTimeField(self): 23 | return self.timeField 24 | 25 | def setTimeField(self, timeField): 26 | self.timeField = timeField 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/gempak/request/GetTimesResponse.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | # 4 | # SOFTWARE HISTORY 5 | # 6 | # Date Ticket# Engineer Description 7 | # ------------ ---------- ----------- -------------------------- 8 | # Sep 16, 2016 pmoyer Generated 9 | 10 | class GetTimesResponse(object): 11 | 12 | def __init__(self): 13 | self.times = None 14 | 15 | def getTimes(self): 16 | return self.times 17 | 18 | def setTimes(self, times): 19 | self.times = times 20 | 21 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/gempak/request/StationDataRequest.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | # 4 | # SOFTWARE HISTORY 5 | # 6 | # Date Ticket# Engineer Description 7 | # ------------ ---------- ----------- -------------------------- 8 | # Sep 16, 2016 pmoyer Generated 9 | 10 | class StationDataRequest(object): 11 | 12 | def __init__(self): 13 | self.refTime = None 14 | self.pluginName = None 15 | self.parmList = None 16 | self.stationId = None 17 | self.partNumber = None 18 | 19 | def getRefTime(self): 20 | return self.refTime 21 | 22 | def setRefTime(self, refTime): 23 | self.refTime = refTime 24 | 25 | def getPluginName(self): 26 | return self.pluginName 27 | 28 | def setPluginName(self, pluginName): 29 | self.pluginName = pluginName 30 | 31 | def getParmList(self): 32 | return self.parmList 33 | 34 | def setParmList(self, parmList): 35 | self.parmList = parmList 36 | 37 | def getStationId(self): 38 | return self.stationId 39 | 40 | def setStationId(self, stationId): 41 | self.stationId = stationId 42 | 43 | def getPartNumber(self): 44 | return self.partNumber 45 | 46 | def setPartNumber(self, partNumber): 47 | self.partNumber = partNumber 48 | 49 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/gempak/request/SurfaceDataRequest.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | # 4 | # SOFTWARE HISTORY 5 | # 6 | # Date Ticket# Engineer Description 7 | # ------------ ---------- ----------- -------------------------- 8 | # Sep 16, 2016 pmoyer Generated 9 | 10 | class SurfaceDataRequest(object): 11 | 12 | def __init__(self): 13 | self.refTime = None 14 | self.pluginName = None 15 | self.parmList = None 16 | self.stationId = None 17 | self.partNumber = None 18 | 19 | def getRefTime(self): 20 | return self.refTime 21 | 22 | def setRefTime(self, refTime): 23 | self.refTime = refTime 24 | 25 | def getPluginName(self): 26 | return self.pluginName 27 | 28 | def setPluginName(self, pluginName): 29 | self.pluginName = pluginName 30 | 31 | def getParmList(self): 32 | return self.parmList 33 | 34 | def setParmList(self, parmList): 35 | self.parmList = parmList 36 | 37 | def getStationId(self): 38 | return self.stationId 39 | 40 | def setStationId(self, stationId): 41 | self.stationId = stationId 42 | 43 | def getPartNumber(self): 44 | return self.partNumber 45 | 46 | def setPartNumber(self, partNumber): 47 | self.partNumber = partNumber 48 | 49 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/gempak/request/UpperAirDataRequest.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | # 4 | # SOFTWARE HISTORY 5 | # 6 | # Date Ticket# Engineer Description 7 | # ------------ ---------- ----------- -------------------------- 8 | # Sep 16, 2016 pmoyer Generated 9 | 10 | class UpperAirDataRequest(object): 11 | 12 | def __init__(self): 13 | self.refTime = None 14 | self.pluginName = None 15 | self.parmList = None 16 | self.stationId = None 17 | self.partNumber = None 18 | 19 | def getRefTime(self): 20 | return self.refTime 21 | 22 | def setRefTime(self, refTime): 23 | self.refTime = refTime 24 | 25 | def getPluginName(self): 26 | return self.pluginName 27 | 28 | def setPluginName(self, pluginName): 29 | self.pluginName = pluginName 30 | 31 | def getParmList(self): 32 | return self.parmList 33 | 34 | def setParmList(self, parmList): 35 | self.parmList = parmList 36 | 37 | def getStationId(self): 38 | return self.stationId 39 | 40 | def setStationId(self, stationId): 41 | self.stationId = stationId 42 | 43 | def getPartNumber(self): 44 | return self.partNumber 45 | 46 | def setPartNumber(self, partNumber): 47 | self.partNumber = partNumber 48 | 49 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/gempak/request/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'GetGridDataRequest', 6 | 'GetGridInfoRequest', 7 | 'GetGridNavRequest', 8 | 'GetStationsRequest', 9 | 'GetTimesRequest', 10 | 'GetTimesResponse', 11 | 'Station', 12 | 'StationDataRequest', 13 | 'SurfaceDataRequest', 14 | 'UpperAirDataRequest' 15 | ] 16 | 17 | from .GetGridDataRequest import GetGridDataRequest 18 | from .GetGridInfoRequest import GetGridInfoRequest 19 | from .GetGridNavRequest import GetGridNavRequest 20 | from .GetStationsRequest import GetStationsRequest 21 | from .GetTimesRequest import GetTimesRequest 22 | from .GetTimesResponse import GetTimesResponse 23 | from .Station import Station 24 | from .StationDataRequest import StationDataRequest 25 | from .SurfaceDataRequest import SurfaceDataRequest 26 | from .UpperAirDataRequest import UpperAirDataRequest 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/gpd/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'query' 6 | ] 7 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/gpd/query/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'GenericPointDataReqMsg' 6 | ] 7 | 8 | from .GenericPointDataReqMsg import GenericPointDataReqMsg 9 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/pgen/DerivedProduct.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | 4 | class DerivedProduct(object): 5 | 6 | def __init__(self): 7 | self.name = None 8 | self.productType = None 9 | self.product = None 10 | 11 | def getName(self): 12 | return self.name 13 | 14 | def setName(self, name): 15 | self.name = name 16 | 17 | def getProductType(self): 18 | return self.productType 19 | 20 | def setProductType(self, productType): 21 | self.productType = productType 22 | 23 | def getProduct(self): 24 | return self.product 25 | 26 | def setProduct(self, product): 27 | self.product = product 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/pgen/ResponseMessageValidate.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | 4 | class ResponseMessageValidate(object): 5 | 6 | def __init__(self): 7 | self.result = None 8 | self.message = None 9 | self.fileType = None 10 | self.dataURI = None 11 | self.validTime = None 12 | 13 | def getResult(self): 14 | return self.result 15 | 16 | def setResult(self, result): 17 | self.result = result 18 | 19 | def getMessage(self): 20 | return self.message 21 | 22 | def setMessage(self, message): 23 | self.message = message 24 | 25 | def getFileType(self): 26 | return self.fileType 27 | 28 | def setFileType(self, fileType): 29 | self.fileType = fileType 30 | 31 | def getDataURI(self): 32 | return self.dataURI 33 | 34 | def setDataURI(self, dataURI): 35 | self.dataURI = dataURI 36 | 37 | def getValidTime(self): 38 | return self.validTime 39 | 40 | def setValidTime(self, validTime): 41 | self.validTime = validTime 42 | 43 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/pgen/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'ActivityInfo', 6 | 'DerivedProduct', 7 | 'ResponseMessageValidate', 8 | 'request', 9 | 'response' 10 | ] 11 | 12 | from .ActivityInfo import ActivityInfo 13 | from .DerivedProduct import DerivedProduct 14 | from .ResponseMessageValidate import ResponseMessageValidate 15 | 16 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/pgen/request/RetrieveActivityMapRequest.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | # 4 | # SOFTWARE HISTORY 5 | # 6 | # Date Ticket# Engineer Description 7 | # ------------ ---------- ----------- -------------------------- 8 | # May 05, 2016 root Generated 9 | 10 | class RetrieveActivityMapRequest(object): 11 | 12 | def __init__(self): 13 | return 14 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/pgen/request/RetrieveAllProductsRequest.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | 4 | class RetrieveAllProductsRequest(object): 5 | 6 | def __init__(self): 7 | self.dataURI = None 8 | 9 | def getDataURI(self): 10 | return self.dataURI 11 | 12 | def setDataURI(self, dataURI): 13 | self.dataURI = dataURI 14 | 15 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/pgen/request/StoreActivityRequest.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | 4 | class StoreActivityRequest(object): 5 | 6 | def __init__(self): 7 | self.activityInfo = None 8 | self.activityXML = None 9 | 10 | def getActivityInfo(self): 11 | return self.activityInfo 12 | 13 | def setActivityInfo(self, activityInfo): 14 | self.activityInfo = activityInfo 15 | 16 | def getActivityXML(self): 17 | return self.activityXML 18 | 19 | def setActivityXML(self, activityXML): 20 | self.activityXML = activityXML 21 | 22 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/pgen/request/StoreDerivedProductRequest.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | 4 | class StoreDerivedProductRequest(object): 5 | 6 | def __init__(self): 7 | self.dataURI = None 8 | self.productList = None 9 | 10 | def getDataURI(self): 11 | return self.dataURI 12 | 13 | def setDataURI(self, dataURI): 14 | self.dataURI = dataURI 15 | 16 | def getProductList(self): 17 | return self.productList 18 | 19 | def setProductList(self, productList): 20 | self.productList = productList 21 | 22 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/pgen/request/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'RetrieveAllProductsRequest', 6 | 'StoreActivityRequest', 7 | 'StoreDerivedProductRequest', 8 | 'RetrieveActivityMapRequest' 9 | ] 10 | 11 | from .RetrieveAllProductsRequest import RetrieveAllProductsRequest 12 | from .StoreActivityRequest import StoreActivityRequest 13 | from .StoreDerivedProductRequest import StoreDerivedProductRequest 14 | from .RetrieveActivityMapRequest import RetrieveActivityMapRequest 15 | 16 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/pgen/response/RetrieveActivityMapResponse.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated against equivalent DynamicSerialize Java class 3 | # 4 | # SOFTWARE HISTORY 5 | # 6 | # Date Ticket# Engineer Description 7 | # ------------ ---------- ----------- -------------------------- 8 | # May 06, 2016 root Generated 9 | 10 | class RetrieveActivityMapResponse(object): 11 | 12 | def __init__(self): 13 | self.data = None 14 | 15 | def getData(self): 16 | return self.data 17 | 18 | def setData(self, data): 19 | self.data = data 20 | 21 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/gov/noaa/nws/ncep/common/dataplugin/pgen/response/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # File auto-generated by PythonFileGenerator 3 | 4 | __all__ = [ 5 | 'ActivityMapData', 6 | 'RetrieveActivityMapResponse' 7 | ] 8 | 9 | from .ActivityMapData import ActivityMapData 10 | from .RetrieveActivityMapResponse import RetrieveActivityMapResponse 11 | 12 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/java/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'awt', 25 | 'sql', 26 | 'lang', 27 | 'util' 28 | ] 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/java/awt/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | 22 | # 23 | # Package definition for java.awt 24 | # 25 | # 26 | # SOFTWARE HISTORY 27 | # 28 | # Date Ticket# Engineer Description 29 | # ------------ ---------- ----------- -------------------------- 30 | # 08/31/10 njensen Initial Creation. 31 | # 32 | # 33 | # 34 | 35 | 36 | __all__ = [ 37 | 'Point', 38 | ] 39 | 40 | from .Point import Point 41 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/java/lang/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'StackTraceElement' 25 | ] 26 | 27 | from .StackTraceElement import StackTraceElement 28 | 29 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/java/sql/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'Timestamp' 25 | ] 26 | 27 | from .Timestamp import Timestamp 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/java/util/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'Calendar', 25 | 'Date', 26 | 'EnumSet', 27 | 'GregorianCalendar' 28 | ] 29 | 30 | from .Calendar import Calendar 31 | from .Date import Date 32 | from .EnumSet import EnumSet 33 | from .GregorianCalendar import GregorianCalendar 34 | 35 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/org/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'locationtech', 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/org/locationtech/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'jts' 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/org/locationtech/jts/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'geom' 25 | ] 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/org/locationtech/jts/geom/Geometry.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # This class is a dummy implementation of the 22 | # org.locationtech.jts.geom.Geometry class. It was simply created to allow 23 | # serialization/deserialization of GridLocation objects. This should be 24 | # reimplemented if useful work needs to be performed against serialized 25 | # Geometry objects. 26 | 27 | class Geometry(object): 28 | 29 | def __init__(self): 30 | self.binaryData = None 31 | 32 | def getBinaryData(self): 33 | return self.binaryData 34 | 35 | def setBinaryData(self, data): 36 | self.binaryData = data 37 | 38 | -------------------------------------------------------------------------------- /src/dynamicserialize/dstypes/org/locationtech/jts/geom/__init__.py: -------------------------------------------------------------------------------- 1 | ## 2 | # This software was developed and / or modified by Raytheon Company, 3 | # pursuant to Contract DG133W-05-CQ-1067 with the US Government. 4 | # 5 | # U.S. EXPORT CONTROLLED TECHNICAL DATA 6 | # This software product contains export-restricted data whose 7 | # export/transfer/disclosure is restricted by U.S. law. Dissemination 8 | # to non-U.S. persons whether in the United States or abroad requires 9 | # an export license or other authorization. 10 | # 11 | # Contractor Name: Raytheon Company 12 | # Contractor Address: 6825 Pine Street, Suite 340 13 | # Mail Stop B8 14 | # Omaha, NE 68106 15 | # 402.291.0100 16 | # 17 | # See the AWIPS II Master Rights File ("Master Rights File.pdf") for 18 | # further licensing information. 19 | ## 20 | 21 | # File auto-generated by PythonFileGenerator 22 | 23 | __all__ = [ 24 | 'Coordinate', 25 | 'Envelope', 26 | 'Geometry' 27 | ] 28 | 29 | from .Coordinate import Coordinate 30 | from .Envelope import Envelope 31 | from .Geometry import Geometry 32 | 33 | -------------------------------------------------------------------------------- /src/thrift/SelfDescribingBinaryProtocol.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/SelfDescribingBinaryProtocol.class -------------------------------------------------------------------------------- /src/thrift/TSCons.py: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed to the Apache Software Foundation (ASF) under one 3 | # or more contributor license agreements. See the NOTICE file 4 | # distributed with this work for additional information 5 | # regarding copyright ownership. The ASF licenses this file 6 | # to you under the Apache License, Version 2.0 (the 7 | # "License"); you may not use this file except in compliance 8 | # with the License. You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, 13 | # software distributed under the License is distributed on an 14 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | # KIND, either express or implied. See the License for the 16 | # specific language governing permissions and limitations 17 | # under the License. 18 | # 19 | 20 | from os import path 21 | from SCons.Builder import Builder 22 | from six.moves import map 23 | 24 | 25 | def scons_env(env, add=''): 26 | opath = path.dirname(path.abspath('$TARGET')) 27 | lstr = 'thrift --gen cpp -o ' + opath + ' ' + add + ' $SOURCE' 28 | cppbuild = Builder(action=lstr) 29 | env.Append(BUILDERS={'ThriftCpp': cppbuild}) 30 | 31 | 32 | def gen_cpp(env, dir, file): 33 | scons_env(env) 34 | suffixes = ['_types.h', '_types.cpp'] 35 | targets = map(lambda s: 'gen-cpp/' + file + s, suffixes) 36 | return env.ThriftCpp(targets, dir + file + '.thrift') 37 | -------------------------------------------------------------------------------- /src/thrift/ThriftSerializationContext.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/ThriftSerializationContext.class -------------------------------------------------------------------------------- /src/thrift/ThriftSerializationContextBuilder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/ThriftSerializationContextBuilder.class -------------------------------------------------------------------------------- /src/thrift/ThriftStreamSerializer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/ThriftStreamSerializer.class -------------------------------------------------------------------------------- /src/thrift/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed to the Apache Software Foundation (ASF) under one 3 | # or more contributor license agreements. See the NOTICE file 4 | # distributed with this work for additional information 5 | # regarding copyright ownership. The ASF licenses this file 6 | # to you under the Apache License, Version 2.0 (the 7 | # "License"); you may not use this file except in compliance 8 | # with the License. You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, 13 | # software distributed under the License is distributed on an 14 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | # KIND, either express or implied. See the License for the 16 | # specific language governing permissions and limitations 17 | # under the License. 18 | # 19 | 20 | __all__ = ['Thrift', 'TSCons'] 21 | -------------------------------------------------------------------------------- /src/thrift/exception/CollectionDeserializationException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/exception/CollectionDeserializationException.class -------------------------------------------------------------------------------- /src/thrift/exception/FieldDeserializationException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/exception/FieldDeserializationException.class -------------------------------------------------------------------------------- /src/thrift/exception/ListDeserializationException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/exception/ListDeserializationException.class -------------------------------------------------------------------------------- /src/thrift/exception/MapDeserializationException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/exception/MapDeserializationException.class -------------------------------------------------------------------------------- /src/thrift/exception/SetDeserializationException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/exception/SetDeserializationException.class -------------------------------------------------------------------------------- /src/thrift/package-info.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/package-info.class -------------------------------------------------------------------------------- /src/thrift/protocol/TProtocolDecorator.py: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed to the Apache Software Foundation (ASF) under one 3 | # or more contributor license agreements. See the NOTICE file 4 | # distributed with this work for additional information 5 | # regarding copyright ownership. The ASF licenses this file 6 | # to you under the Apache License, Version 2.0 (the 7 | # "License"); you may not use this file except in compliance 8 | # with the License. You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, 13 | # software distributed under the License is distributed on an 14 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | # KIND, either express or implied. See the License for the 16 | # specific language governing permissions and limitations 17 | # under the License. 18 | # 19 | 20 | 21 | class TProtocolDecorator(object): 22 | def __new__(cls, protocol, *args, **kwargs): 23 | decorated_cls = type(''.join(['Decorated', protocol.__class__.__name__]), 24 | (cls, protocol.__class__), 25 | protocol.__dict__) 26 | return object.__new__(decorated_cls) 27 | -------------------------------------------------------------------------------- /src/thrift/protocol/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed to the Apache Software Foundation (ASF) under one 3 | # or more contributor license agreements. See the NOTICE file 4 | # distributed with this work for additional information 5 | # regarding copyright ownership. The ASF licenses this file 6 | # to you under the Apache License, Version 2.0 (the 7 | # "License"); you may not use this file except in compliance 8 | # with the License. You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, 13 | # software distributed under the License is distributed on an 14 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | # KIND, either express or implied. See the License for the 16 | # specific language governing permissions and limitations 17 | # under the License. 18 | # 19 | 20 | __all__ = ['fastbinary', 'TBase', 'TBinaryProtocol', 'TCompactProtocol', 21 | 'TJSONProtocol', 'TProtocol', 'TProtocolDecorator'] 22 | -------------------------------------------------------------------------------- /src/thrift/protocol/fastbinary.cpython-38-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/protocol/fastbinary.cpython-38-darwin.so -------------------------------------------------------------------------------- /src/thrift/server/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed to the Apache Software Foundation (ASF) under one 3 | # or more contributor license agreements. See the NOTICE file 4 | # distributed with this work for additional information 5 | # regarding copyright ownership. The ASF licenses this file 6 | # to you under the Apache License, Version 2.0 (the 7 | # "License"); you may not use this file except in compliance 8 | # with the License. You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, 13 | # software distributed under the License is distributed on an 14 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | # KIND, either express or implied. See the License for the 16 | # specific language governing permissions and limitations 17 | # under the License. 18 | # 19 | 20 | __all__ = ['TServer', 'TNonblockingServer'] 21 | -------------------------------------------------------------------------------- /src/thrift/test/DateTester$DateTestV1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/test/DateTester$DateTestV1.class -------------------------------------------------------------------------------- /src/thrift/test/DateTester$DateTestV2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/test/DateTester$DateTestV2.class -------------------------------------------------------------------------------- /src/thrift/test/DateTester.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/test/DateTester.class -------------------------------------------------------------------------------- /src/thrift/test/SerializationCompatibilityTest$InnerObjectY1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/test/SerializationCompatibilityTest$InnerObjectY1.class -------------------------------------------------------------------------------- /src/thrift/test/SerializationCompatibilityTest$ObjectV1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/test/SerializationCompatibilityTest$ObjectV1.class -------------------------------------------------------------------------------- /src/thrift/test/SerializationCompatibilityTest$ObjectV2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/test/SerializationCompatibilityTest$ObjectV2.class -------------------------------------------------------------------------------- /src/thrift/test/SerializationCompatibilityTest$ObjectV3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/test/SerializationCompatibilityTest$ObjectV3.class -------------------------------------------------------------------------------- /src/thrift/test/SerializationCompatibilityTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unidata/python-awips/13debf2cd09c716b15903e3496829a524acc2b6c/src/thrift/test/SerializationCompatibilityTest.class -------------------------------------------------------------------------------- /src/thrift/transport/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed to the Apache Software Foundation (ASF) under one 3 | # or more contributor license agreements. See the NOTICE file 4 | # distributed with this work for additional information 5 | # regarding copyright ownership. The ASF licenses this file 6 | # to you under the Apache License, Version 2.0 (the 7 | # "License"); you may not use this file except in compliance 8 | # with the License. You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, 13 | # software distributed under the License is distributed on an 14 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | # KIND, either express or implied. See the License for the 16 | # specific language governing permissions and limitations 17 | # under the License. 18 | # 19 | 20 | __all__ = ['TTransport', 'TSocket', 'THttpClient', 'TZlibTransport'] 21 | --------------------------------------------------------------------------------