Allon Mureinik has uploaded a new change for review.

Change subject: core: Removed user_action_map
......................................................................

core: Removed user_action_map

Removed the user_action_map class from the dal project, as it is not
used anywhere in the codebase.

Change-Id: I543e8d38853359971ce0c60734ddcf340ce9da0b
Signed-off-by: Allon Mureinik <[email protected]>
---
D 
backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dal/dbbroker/user_action_map.java
1 file changed, 0 insertions(+), 60 deletions(-)


  git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/92/14792/1

diff --git 
a/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dal/dbbroker/user_action_map.java
 
b/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dal/dbbroker/user_action_map.java
deleted file mode 100644
index 3e5d447..0000000
--- 
a/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dal/dbbroker/user_action_map.java
+++ /dev/null
@@ -1,60 +0,0 @@
-package org.ovirt.engine.core.dal.dbbroker;
-
-import org.ovirt.engine.core.compat.*;
-
-/**
- * Defines an object that holds a mapping between a user, action, and tag In 
some cases tagIdField may be null for
- * user_action_maps objects returned from DBFacade (for example - 
DbFacade.GetActionsByUserId ), therefore the NGuid
- * (nullable Guid) type is used for tagIDField
- */
-public class user_action_map {
-
-    private int actionIdField;
-    private NGuid tagIdField;
-    private Guid userIdField = new Guid();
-
-    public user_action_map() {
-    }
-
-    public user_action_map(int actionId, NGuid tagId, Guid userId) {
-        this.actionIdField = actionId;
-        this.tagIdField = tagId;
-        this.userIdField = userId;
-    }
-
-    public int getactionId() {
-        return this.actionIdField;
-    }
-
-    public void setactionId(int value) {
-        this.actionIdField = value;
-    }
-
-    public void setaction_id(int value) {
-        this.setactionId(value);
-    }
-
-    public NGuid gettagId() {
-        return this.tagIdField;
-    }
-
-    public void settagId(NGuid value) {
-        this.tagIdField = value;
-    }
-
-    public void settag_id(NGuid value) {
-        this.settagId(value);
-    }
-
-    public Guid getuserId() {
-        return this.userIdField;
-    }
-
-    public void setuserId(Guid value) {
-        this.userIdField = value;
-    }
-
-    public void setuser_id(Guid value) {
-        this.setuserId(value);
-    }
-}


--
To view, visit http://gerrit.ovirt.org/14792
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I543e8d38853359971ce0c60734ddcf340ce9da0b
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Allon Mureinik <[email protected]>
_______________________________________________
Engine-patches mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to