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 2013/01/09 05:37:26 UTC

[7/50] [abbrv] git commit: api: Remove IdentityMapper finally

api: Remove IdentityMapper finally

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

Branch: refs/heads/master
Commit: 364116074e6ffe0404b461e75c328dcda536d522
Parents: 596f9d0
Author: Rohit Yadav <bh...@apache.org>
Authored: Fri Jan 4 17:12:14 2013 -0800
Committer: Rohit Yadav <bh...@apache.org>
Committed: Fri Jan 4 17:12:14 2013 -0800

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


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/36411607/api/src/org/apache/cloudstack/api/IdentityMapper.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/IdentityMapper.java b/api/src/org/apache/cloudstack/api/IdentityMapper.java
deleted file mode 100644
index 0403ff7..0000000
--- a/api/src/org/apache/cloudstack/api/IdentityMapper.java
+++ /dev/null
@@ -1,29 +0,0 @@
-// Licensed to the Apache Software Foundation (ASF) under one
-// or more contributor license agreements.  See the NOTICE file
-// distributed with this work for additional information
-// regarding copyright ownership.  The ASF licenses this file
-// to you under the Apache License, Version 2.0 (the
-// "License"); you may not use this file except in compliance
-// with the License.  You may obtain a copy of the License at
-//
-//   http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing,
-// software distributed under the License is distributed on an
-// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-// KIND, either express or implied.  See the License for the
-// specific language governing permissions and limitations
-// under the License.
-package org.apache.cloudstack.api;
-
-import static java.lang.annotation.ElementType.FIELD;
-
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-@Retention(RetentionPolicy.RUNTIME)
-@Target({ FIELD })
-public @interface IdentityMapper {
-    String entityTableName();
-}