VLab Issue #16529 - Add model cycle and forecast hour to

GetGridInfoRequest

Change-Id: If7650a18aa861ae13d1617d712c51af0118711f8

Former-commit-id: 45521bf099814e7d3ea478747ac2a9ab1c987a71
This commit is contained in:
Stephen Gilbert 2016-03-14 15:58:11 -04:00
parent 11ff5becc2
commit 1b8eb16494

View file

@ -6,6 +6,8 @@ class GetGridInfoRequest(object):
def __init__(self):
self.pluginName = None
self.modelId = None
self.reftime = None
self.fcstsec = None
def getPluginName(self):
return self.pluginName
@ -19,3 +21,15 @@ class GetGridInfoRequest(object):
def setModelId(self, modelId):
self.modelId = modelId
def getReftime(self):
return self.reftime
def setReftime(self, reftime):
self.reftime = reftime
def getFcstsec(self):
return self.fcstsec
def setFcstsec(self, fcstsec):
self.fcstsec = fcstsec