Don't use OVO in Project object

This changes the Project object to be a plain Python object
with an explicit __init__.

Change-Id: I822732f2e7eb54c994321ab715e8535882eed803
This commit is contained in:
Chris Dent 2019-02-13 20:04:24 +00:00
parent d4c3b8807e
commit 6f7342f4e2
1 changed files with 12 additions and 12 deletions

View File

@ -11,8 +11,6 @@
# under the License.
from oslo_db import exception as db_exc
from oslo_versionedobjects import base
from oslo_versionedobjects import fields
import sqlalchemy as sa
from placement.db.sqlalchemy import models
@ -56,21 +54,23 @@ def _get_project_by_external_id(ctx, external_id):
return dict(res)
@base.VersionedObjectRegistry.register_if(False)
class Project(base.VersionedObject):
class Project(object):
fields = {
'id': fields.IntegerField(read_only=True),
'external_id': fields.StringField(nullable=False),
}
def __init__(self, context, id=None, external_id=None, updated_at=None,
created_at=None):
self._context = context
self.id = id
self.external_id = external_id
self.updated_at = updated_at
self.created_at = created_at
@staticmethod
def _from_db_object(ctx, target, source):
for field in target.fields:
setattr(target, field, source[field])
target._context = ctx
target.obj_reset_changes()
target.id = source['id']
target.external_id = source['external_id']
target.updated_at = source['updated_at']
target.created_at = source['created_at']
return target
@classmethod