Repository: lens Updated Branches: refs/heads/master b3f993d8a -> f1d6e3fa0
LENS-937 : Add ReferencedDimAtrribute class for backward compatibility Project: http://git-wip-us.apache.org/repos/asf/lens/repo Commit: http://git-wip-us.apache.org/repos/asf/lens/commit/f1d6e3fa Tree: http://git-wip-us.apache.org/repos/asf/lens/tree/f1d6e3fa Diff: http://git-wip-us.apache.org/repos/asf/lens/diff/f1d6e3fa Branch: refs/heads/master Commit: f1d6e3fa0404f113f6f8842afeba7c984adb2b44 Parents: b3f993d Author: Amareshwari Sriramadasu <[email protected]> Authored: Fri Jan 29 15:03:51 2016 +0530 Committer: Amareshwari Sriramadasu <[email protected]> Committed: Fri Jan 29 15:03:51 2016 +0530 ---------------------------------------------------------------------- .../cube/metadata/ReferencedDimAtrribute.java | 35 ++++++++++++++++++++ 1 file changed, 35 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lens/blob/f1d6e3fa/lens-cube/src/main/java/org/apache/lens/cube/metadata/ReferencedDimAtrribute.java ---------------------------------------------------------------------- diff --git a/lens-cube/src/main/java/org/apache/lens/cube/metadata/ReferencedDimAtrribute.java b/lens-cube/src/main/java/org/apache/lens/cube/metadata/ReferencedDimAtrribute.java new file mode 100644 index 0000000..f0ff1ad --- /dev/null +++ b/lens-cube/src/main/java/org/apache/lens/cube/metadata/ReferencedDimAtrribute.java @@ -0,0 +1,35 @@ +/** + * 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.lens.cube.metadata; + +import java.util.*; + +import org.apache.lens.server.api.error.LensException; + +import lombok.EqualsAndHashCode; +import lombok.ToString; + +@EqualsAndHashCode(callSuper = true) +@ToString(callSuper = true) +public class ReferencedDimAtrribute extends ReferencedDimAttribute { + + public ReferencedDimAtrribute(String name, Map<String, String> props) throws LensException { + super(name, props); + } +}
