You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by gp...@apache.org on 2011/12/28 10:49:59 UTC

git commit: DELTASPIKE-37 DeltaSpikeConfig - initial name of the marker interface

Updated Branches:
  refs/heads/master a70177a7e -> f5dceebb9


DELTASPIKE-37 DeltaSpikeConfig - initial name of the marker interface


Project: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/commit/f5dceebb
Tree: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/tree/f5dceebb
Diff: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/diff/f5dceebb

Branch: refs/heads/master
Commit: f5dceebb970581443bcfbf580382cbb748cd9267
Parents: a70177a
Author: gpetracek <gp...@apache.org>
Authored: Wed Dec 28 10:47:43 2011 +0100
Committer: gpetracek <gp...@apache.org>
Committed: Wed Dec 28 10:47:43 2011 +0100

----------------------------------------------------------------------
 .../core/api/config/DeltaSpikeConfig.java          |   28 +++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/f5dceebb/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/config/DeltaSpikeConfig.java
----------------------------------------------------------------------
diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/config/DeltaSpikeConfig.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/config/DeltaSpikeConfig.java
new file mode 100644
index 0000000..26686bd
--- /dev/null
+++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/config/DeltaSpikeConfig.java
@@ -0,0 +1,28 @@
+/*
+ * 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.deltaspike.core.api.config;
+
+import java.io.Serializable;
+
+/**
+ * Marker interface for all type-safe framework configs.
+ */
+public interface DeltaSpikeConfig extends Serializable
+{
+}