You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bh...@apache.org on 2012/12/27 00:10:10 UTC

[4/4] git commit: api: Enforce InternalIdentity interface on AsyncJobVO

Updated Branches:
  refs/heads/api_refactoring 7e52f2c48 -> 057ac12d2


api: Enforce InternalIdentity interface on AsyncJobVO

Signed-off-by: Rohit Yadav <bh...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/b75d9241
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/b75d9241
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/b75d9241

Branch: refs/heads/api_refactoring
Commit: b75d92419e0647bc2044abe8b3b86331ca5eaebe
Parents: 7e52f2c
Author: Rohit Yadav <bh...@apache.org>
Authored: Wed Dec 26 15:06:35 2012 -0800
Committer: Rohit Yadav <bh...@apache.org>
Committed: Wed Dec 26 15:09:44 2012 -0800

----------------------------------------------------------------------
 core/src/com/cloud/async/AsyncJobVO.java |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/b75d9241/core/src/com/cloud/async/AsyncJobVO.java
----------------------------------------------------------------------
diff --git a/core/src/com/cloud/async/AsyncJobVO.java b/core/src/com/cloud/async/AsyncJobVO.java
index 769d9a9..75b9e2d 100644
--- a/core/src/com/cloud/async/AsyncJobVO.java
+++ b/core/src/com/cloud/async/AsyncJobVO.java
@@ -32,10 +32,11 @@ import javax.persistence.TemporalType;
 import javax.persistence.Transient;
 
 import com.cloud.utils.db.GenericDao;
+import org.apache.cloudstack.api.InternalIdentity;
 
 @Entity
 @Table(name="async_job")
-public class AsyncJobVO implements AsyncJob {
+public class AsyncJobVO implements AsyncJob, InternalIdentity {
 	public static final int CALLBACK_POLLING = 0;
 	public static final int CALLBACK_EMAIL = 1;