Author: jason.greene(a)jboss.com
Date: 2007-03-16 11:12:06 -0400 (Fri, 16 Mar 2007)
New Revision: 2630
Added:
trunk/jbossws-core/src/java/org/jboss/ws/core/HeaderSource.java
trunk/jbossws-core/src/java/org/jboss/ws/core/RoleSource.java
Log:
Add missing classes
Added: trunk/jbossws-core/src/java/org/jboss/ws/core/HeaderSource.java
===================================================================
--- trunk/jbossws-core/src/java/org/jboss/ws/core/HeaderSource.java
(rev 0)
+++ trunk/jbossws-core/src/java/org/jboss/ws/core/HeaderSource.java 2007-03-16 15:12:06
UTC (rev 2630)
@@ -0,0 +1,42 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt 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.ws.core;
+
+import java.util.Set;
+
+import javax.xml.namespace.QName;
+
+/**
+ * HeaderSource provides header information to the binding layer.
+ *
+ * @author <a href="mailto:jason.greene@jboss.com">Jason T.
Greene</a>
+ * @version $Revision$
+ */
+public interface HeaderSource
+{
+ /**
+ * Get the set of known headers for this source.
+ *
+ * @return set of known herars
+ */
+ Set<QName> getHeaders();
+}
Property changes on: trunk/jbossws-core/src/java/org/jboss/ws/core/HeaderSource.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: trunk/jbossws-core/src/java/org/jboss/ws/core/RoleSource.java
===================================================================
--- trunk/jbossws-core/src/java/org/jboss/ws/core/RoleSource.java
(rev 0)
+++ trunk/jbossws-core/src/java/org/jboss/ws/core/RoleSource.java 2007-03-16 15:12:06 UTC
(rev 2630)
@@ -0,0 +1,40 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt 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.ws.core;
+
+import java.util.Set;
+
+/**
+ * RoleSource provides role information to the binding layer.
+ *
+ * @author <a href="mailto:jason.greene@jboss.com">Jason T.
Greene</a>
+ * @version $Revision$
+ */
+public interface RoleSource
+{
+ /**
+ * Get the set of roles associate with this source.
+ *
+ * @return the set of roles
+ */
+ Set<String> getRoles();
+}
Property changes on: trunk/jbossws-core/src/java/org/jboss/ws/core/RoleSource.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF