Updated Branches: refs/heads/api_refactoring 0428b30a5 -> 364116074
api: Remove IdentityMapper finally Signed-off-by: Rohit Yadav <[email protected]> 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/api_refactoring Commit: 364116074e6ffe0404b461e75c328dcda536d522 Parents: 596f9d0 Author: Rohit Yadav <[email protected]> Authored: Fri Jan 4 17:12:14 2013 -0800 Committer: Rohit Yadav <[email protected]> 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(); -}
