You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2017/05/12 14:07:18 UTC

[5/6] activemq-artemis git commit: ARTEMIS-1156 Adding deprecated TypedProperties extending new location

ARTEMIS-1156 Adding deprecated TypedProperties extending new location

We recently moved TypedProperties under ./util/collections
This is exposed through Messages so we added this as a deprecated option.

We also had to add this class on a separate commit from dc26ac96b4b24b5caa8a14db24b25b6f7e8026d9
to preserve git history on the new one.


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/f1f4d4de
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/f1f4d4de
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/f1f4d4de

Branch: refs/heads/master
Commit: f1f4d4dec343b58173cf7bc0fc78984665238eaf
Parents: dc26ac9
Author: Clebert Suconic <cl...@apache.org>
Authored: Fri May 12 10:02:51 2017 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Fri May 12 10:06:20 2017 -0400

----------------------------------------------------------------------
 .../activemq/artemis/utils/TypedProperties.java | 26 ++++++++++++++++++++
 1 file changed, 26 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/f1f4d4de/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/TypedProperties.java
----------------------------------------------------------------------
diff --git a/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/TypedProperties.java b/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/TypedProperties.java
new file mode 100644
index 0000000..29cf834
--- /dev/null
+++ b/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/TypedProperties.java
@@ -0,0 +1,26 @@
+/**
+ * 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.activemq.artemis.utils;
+
+/**
+ * @deprecated Use {@link org.apache.activemq.artemis.utils.collections.TypedProperties instead}
+ */
+@Deprecated
+public class TypedProperties extends org.apache.activemq.artemis.utils.collections.TypedProperties {
+
+}