You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by or...@apache.org on 2018/02/08 11:06:59 UTC

qpid-broker-j git commit: QPID-8091: [Broker-J] Add missing annotation

Repository: qpid-broker-j
Updated Branches:
  refs/heads/master c531ca0ac -> 42c182f0b


QPID-8091: [Broker-J] Add missing annotation


Project: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/commit/42c182f0
Tree: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/tree/42c182f0
Diff: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/diff/42c182f0

Branch: refs/heads/master
Commit: 42c182f0b994292d801d2393f033bb773415b92f
Parents: c531ca0
Author: Alex Rudyy <or...@apache.org>
Authored: Thu Feb 8 11:06:38 2018 +0000
Committer: Alex Rudyy <or...@apache.org>
Committed: Thu Feb 8 11:06:38 2018 +0000

----------------------------------------------------------------------
 .../apache/qpid/tests/utils/BrokerSpecific.java | 33 ++++++++++++++++++++
 1 file changed, 33 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/42c182f0/systests/systests-utils/src/main/java/org/apache/qpid/tests/utils/BrokerSpecific.java
----------------------------------------------------------------------
diff --git a/systests/systests-utils/src/main/java/org/apache/qpid/tests/utils/BrokerSpecific.java b/systests/systests-utils/src/main/java/org/apache/qpid/tests/utils/BrokerSpecific.java
new file mode 100644
index 0000000..56ac0f2
--- /dev/null
+++ b/systests/systests-utils/src/main/java/org/apache/qpid/tests/utils/BrokerSpecific.java
@@ -0,0 +1,33 @@
+/*
+ *
+ * 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.qpid.tests.utils;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+@Retention(RetentionPolicy.RUNTIME)
+@Target({ElementType.METHOD, ElementType.TYPE})
+public @interface BrokerSpecific
+{
+    String kind() default "";
+}


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org