Loading transfer_service/job.py +8 −0 Original line number Diff line number Diff line Loading @@ -5,6 +5,8 @@ class Job(object): def __init__(self): self.jobId = str(uuid.uuid1().hex) self.type = None self.ownerId = None self.phase = None self.quote = None self.startTime = None Loading @@ -18,6 +20,12 @@ class Job(object): def setID(self, jobId): self.jobId = jobId def setType(self, type): self.type = type def setOwnerId(self, ownerId): self.ownerId = ownerId def setPhase(self, phase): self.phase = phase Loading Loading
transfer_service/job.py +8 −0 Original line number Diff line number Diff line Loading @@ -5,6 +5,8 @@ class Job(object): def __init__(self): self.jobId = str(uuid.uuid1().hex) self.type = None self.ownerId = None self.phase = None self.quote = None self.startTime = None Loading @@ -18,6 +20,12 @@ class Job(object): def setID(self, jobId): self.jobId = jobId def setType(self, type): self.type = type def setOwnerId(self, ownerId): self.ownerId = ownerId def setPhase(self, phase): self.phase = phase Loading