-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A few more file changes were missing from the v23 merge
- Loading branch information
Shay Carter
committed
May 9, 2024
1 parent
285ce9c
commit a05510b
Showing
6 changed files
with
142 additions
and
19 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
dynamicserialize/dstypes/com/raytheon/uf/common/localization/FileUpdatedMessage.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
|
||
# File auto-generated against equivalent DynamicSerialize Java class | ||
# | ||
# SOFTWARE HISTORY | ||
# | ||
# Date Ticket# Engineer Description | ||
# ------------ ---------- ----------- -------------------------- | ||
# Apr 11, 2023 2033903 mapeters Generated | ||
|
||
class FileUpdatedMessage(object): | ||
|
||
def __init__(self): | ||
self.timeStamp = None | ||
self.fileName = None | ||
self.changeType = None | ||
self.context = None | ||
self.checkSum = None | ||
|
||
def getTimeStamp(self): | ||
return self.timeStamp | ||
|
||
def setTimeStamp(self, timeStamp): | ||
self.timeStamp = timeStamp | ||
|
||
def getFileName(self): | ||
return self.fileName | ||
|
||
def setFileName(self, fileName): | ||
self.fileName = fileName | ||
|
||
def getChangeType(self): | ||
return self.changeType | ||
|
||
def setChangeType(self, changeType): | ||
self.changeType = changeType | ||
|
||
def getContext(self): | ||
return self.context | ||
|
||
def setContext(self, context): | ||
self.context = context | ||
|
||
def getCheckSum(self): | ||
return self.checkSum | ||
|
||
def setCheckSum(self, checkSum): | ||
self.checkSum = checkSum | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
dynamicserialize/dstypes/com/raytheon/uf/common/pypies/response/DatasetNamesResponse.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# # | ||
# This software was developed and / or modified by Raytheon Company, | ||
# pursuant to Contract DG133W-05-CQ-1067 with the US Government. | ||
# | ||
# U.S. EXPORT CONTROLLED TECHNICAL DATA | ||
# This software product contains export-restricted data whose | ||
# export/transfer/disclosure is restricted by U.S. law. Dissemination | ||
# to non-U.S. persons whether in the United States or abroad requires | ||
# an export license or other authorization. | ||
# | ||
# Contractor Name: Raytheon Company | ||
# Contractor Address: 6825 Pine Street, Suite 340 | ||
# Mail Stop B8 | ||
# Omaha, NE 68106 | ||
# 402.291.0100 | ||
# | ||
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for | ||
# further licensing information. | ||
# # | ||
|
||
# File auto-generated against equivalent DynamicSerialize Java class | ||
# | ||
# SOFTWARE HISTORY | ||
# | ||
# Date Ticket# Engineer Description | ||
# ------------ ---------- ----------- -------------------------- | ||
# Mar 30, 2021 8374 randerso Generated | ||
|
||
|
||
class DatasetNamesResponse(object): | ||
|
||
def __init__(self): | ||
self.datasets = None | ||
|
||
def getDatasets(self): | ||
return self.datasets | ||
|
||
def setDatasets(self, datasets): | ||
self.datasets = datasets |
12 changes: 7 additions & 5 deletions
12
dynamicserialize/dstypes/com/raytheon/uf/common/pypies/response/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters