IGNITE-1753 Added @IgniteExperimental.

Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/8cf10045
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/8cf10045
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/8cf10045

Branch: refs/heads/ignite-1753-1282
Commit: 8cf100458c6e03842e5f5bf25ee64fe4d9829df0
Parents: c483f10
Author: Alexey Kuznetsov <akuznet...@apache.org>
Authored: Thu Oct 29 15:37:18 2015 +0700
Committer: Alexey Kuznetsov <akuznet...@apache.org>
Committed: Thu Oct 29 15:37:18 2015 +0700

----------------------------------------------------------------------
 .../apache/ignite/lang/IgniteExperimental.java  | 39 ++++++++++++++++++++
 1 file changed, 39 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/8cf10045/modules/core/src/main/java/org/apache/ignite/lang/IgniteExperimental.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/main/java/org/apache/ignite/lang/IgniteExperimental.java 
b/modules/core/src/main/java/org/apache/ignite/lang/IgniteExperimental.java
new file mode 100644
index 0000000..7f2acbe
--- /dev/null
+++ b/modules/core/src/main/java/org/apache/ignite/lang/IgniteExperimental.java
@@ -0,0 +1,39 @@
+/*
+ * 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.ignite.lang;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+/**
+ * Annotation to indicate that a public API (public class, method or field) 
could be changed or even removed
+ * in a future releases.
+ */
+@Documented
+@Retention(RetentionPolicy.CLASS)
+@Target({
+    ElementType.ANNOTATION_TYPE,
+    ElementType.CONSTRUCTOR,
+    ElementType.FIELD,
+    ElementType.METHOD,
+    ElementType.TYPE})
+public @interface IgniteExperimental {
+}

Reply via email to