Repository: helix Updated Branches: refs/heads/helix-0.6.x cd89a267e -> 015a73cef
Add PropertyPathConfig back to code-base for API dependency backcompatible, will remove the class in next major release. Project: http://git-wip-us.apache.org/repos/asf/helix/repo Commit: http://git-wip-us.apache.org/repos/asf/helix/commit/1178f9bc Tree: http://git-wip-us.apache.org/repos/asf/helix/tree/1178f9bc Diff: http://git-wip-us.apache.org/repos/asf/helix/diff/1178f9bc Branch: refs/heads/helix-0.6.x Commit: 1178f9bc9de71374decc99a1a39e3bac90176fd9 Parents: cd89a26 Author: Lei Xia <[email protected]> Authored: Wed Feb 15 08:17:58 2017 -0800 Committer: Lei Xia <[email protected]> Committed: Sun Mar 12 15:58:59 2017 -0700 ---------------------------------------------------------------------- .../org/apache/helix/PropertyPathConfig.java | 28 ++++++++++++++++++++ 1 file changed, 28 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/helix/blob/1178f9bc/helix-core/src/main/java/org/apache/helix/PropertyPathConfig.java ---------------------------------------------------------------------- diff --git a/helix-core/src/main/java/org/apache/helix/PropertyPathConfig.java b/helix-core/src/main/java/org/apache/helix/PropertyPathConfig.java new file mode 100644 index 0000000..d1c48ae --- /dev/null +++ b/helix-core/src/main/java/org/apache/helix/PropertyPathConfig.java @@ -0,0 +1,28 @@ +package org.apache.helix; + +/* + * 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. + */ + +/** + * Use PropertyPathBuilder instead. + * Keep this class here for API backcompatible, will be removed in next major release. + */ +@Deprecated +public class PropertyPathConfig extends PropertyPathBuilder { +}
