Skip to content

Commit

Permalink
Set/get methods for envelope in GetGeometryDataRequest.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mjames-upc committed Oct 14, 2018
1 parent d7fa8dc commit 336b8d1
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
##
##

# File auto-generated against equivalent DynamicSerialize Java class
# and then modified post-generation to make it sub class
# AbstractDataAccessRequest.
Expand All @@ -10,18 +7,25 @@
# Date Ticket# Engineer Description
# ------------ ---------- ----------- --------------------------
# 05/28/13 #2023 dgilling Initial Creation.
# 10/14/18 mjames@ucar Set/get methods for envelope
#
#


from dynamicserialize.dstypes.com.raytheon.uf.common.dataaccess.request import AbstractDataAccessRequest


class GetGeometryDataRequest(AbstractDataAccessRequest):

def __init__(self):
super(GetGeometryDataRequest, self).__init__()
self.requestedTimes = None
self.requestedPeriod = None
self.envelope = None

def getEnvelope(self):
return self.envelope

def setEnvelope(self, envelope):
self.envelope = envelope

def getRequestedTimes(self):
return self.requestedTimes
Expand Down

0 comments on commit 336b8d1

Please sign in to comment.