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/24 03:07:07 UTC

[2/4] git commit: api: Get rid of method definition in interface, that uses IdentityMapper for getting entity

api: Get rid of method definition in interface, that uses IdentityMapper for getting entity

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/042a8e76
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/042a8e76
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/042a8e76

Branch: refs/heads/api_refactoring
Commit: 042a8e768103b7e110b21ed17140833d71d86eda
Parents: 9d3ab8d
Author: Rohit Yadav <bh...@apache.org>
Authored: Sun Dec 23 18:05:53 2012 -0800
Committer: Rohit Yadav <bh...@apache.org>
Committed: Sun Dec 23 18:05:53 2012 -0800

----------------------------------------------------------------------
 .../org/apache/cloudstack/api/IdentityService.java |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/042a8e76/api/src/org/apache/cloudstack/api/IdentityService.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/IdentityService.java b/api/src/org/apache/cloudstack/api/IdentityService.java
index 5160884..a2ccec2 100644
--- a/api/src/org/apache/cloudstack/api/IdentityService.java
+++ b/api/src/org/apache/cloudstack/api/IdentityService.java
@@ -17,9 +17,6 @@
 package org.apache.cloudstack.api;
 
 public interface IdentityService {
-    Long getIdentityId(IdentityMapper mapper, String identityString);
-
     Long getIdentityId(String tableName, String identityString);
-
     String getIdentityUuid(String tableName, String identityString);
 }