Completed
Push — master ( 477316...803f9c )
by Michael
08:36
created

GetGeometryDataRequest.setRequestedTimes()   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 2
Ratio 100 %

Importance

Changes 0
Metric Value
eloc 2
dl 2
loc 2
rs 10
c 0
b 0
f 0
cc 1
nop 2
1
# File auto-generated against equivalent DynamicSerialize Java class
2
# and then modified post-generation to make it sub class
3
# AbstractDataAccessRequest.
4
#
5
#     SOFTWARE HISTORY
6
#
7
#    Date            Ticket#       Engineer       Description
8
#    ------------    ----------    -----------    --------------------------
9
#    05/28/13         #2023        dgilling       Initial Creation.
10
#    10/14/18                      mjames@ucar    Set/get methods for envelope
11
#
12
13
from dynamicserialize.dstypes.com.raytheon.uf.common.dataaccess.request import AbstractDataAccessRequest
0 ignored issues
show
Coding Style introduced by
This line is too long as per the coding-style (104/100).

This check looks for lines that are too long. You can specify the maximum line length.

Loading history...
14
15
16 View Code Duplication
class GetGeometryDataRequest(AbstractDataAccessRequest):
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated in your project.
Loading history...
Unused Code introduced by
The variable __class__ seems to be unused.
Loading history...
17
18
    def __init__(self):
19
        super(GetGeometryDataRequest, self).__init__()
20
        self.requestedTimes = None
21
        self.requestedPeriod = None
22
        self.envelope = None
23
24
    def getEnvelope(self):
25
        return self.envelope
26
27
    def setEnvelope(self, envelope):
28
        self.envelope = envelope
29
30
    def getRequestedTimes(self):
31
        return self.requestedTimes
32
33
    def setRequestedTimes(self, requestedTimes):
34
        self.requestedTimes = requestedTimes
35
36
    def getRequestedPeriod(self):
37
        return self.requestedPeriod
38
39
    def setRequestedPeriod(self, requestedPeriod):
40
        self.requestedPeriod = requestedPeriod
41
0 ignored issues
show
coding-style introduced by
Trailing newlines
Loading history...
42