Volume add size property wrapper

This commit is contained in:
Bahtiar `kalkin-` Gadimov 2016-09-04 21:53:43 +02:00
parent ae72e294cd
commit b863152f73
No known key found for this signature in database
GPG Key ID: 96ED3C3BA19C3DEE

View File

@ -96,7 +96,7 @@ class Volume(object):
self.revisions_to_keep = revisions_to_keep
self.rw = rw
self.save_on_stop = save_on_stop
self.size = int(size)
self._size = int(size)
self.snap_on_start = snap_on_start
self.source = source
self.vid = vid
@ -133,6 +133,10 @@ class Volume(object):
msg = "{!s} has revisions not implemented".format(self.__class__)
raise NotImplementedError(msg)
@property
def size(self):
return self._size
@property
def config(self):
''' return config data for serialization to qubes.xml '''