Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 07:01:14 -0400 (Mon, 25 May 2009)
New Revision: 10085
Added:
spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfig.java
spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfigFactory.java
Log:
[JBWS-2652] Adding StackConfig
Added: spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfig.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfig.java
(rev 0)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfig.java 2009-05-25
11:01:14 UTC (rev 10085)
@@ -0,0 +1,36 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+ */
+package org.jboss.wsf.spi.management;
+
+
+/**
+ * Interface to stack configuration
+ *
+ * @author alessio.soldano(a)jboss.com
+ * @since 25-May-2009
+ */
+public interface StackConfig
+{
+ String getImplementationTitle();
+
+ String getImplementationVersion();
+}
Property changes on:
spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfig.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfigFactory.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfigFactory.java
(rev 0)
+++
spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfigFactory.java 2009-05-25
11:01:14 UTC (rev 10085)
@@ -0,0 +1,35 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+ */
+package org.jboss.wsf.spi.management;
+
+import org.jboss.wsf.spi.SPIView;
+
+/**
+ * Factory to stack configuration
+ *
+ * @author alessio.soldano(a)jboss.com
+ * @since 25-May-2009
+ */
+public abstract class StackConfigFactory implements SPIView
+{
+ public abstract StackConfig getStackConfig();
+}
Property changes on:
spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfigFactory.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF