You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2009/06/10 17:34:48 UTC

svn commit: r783396 - in /cxf/trunk: distribution/src/main/release/samples/ws_security/interopfest/ rt/databinding/aegis/src/test/java/org/apache/cxf/aegis/integration/ rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/model/ rt/transports/jms/src/m...

Author: dkulp
Date: Wed Jun 10 15:34:46 2009
New Revision: 783396

URL: http://svn.apache.org/viewvc?rev=783396&view=rev
Log:
Add missing svn properties for various things

Modified:
    cxf/trunk/distribution/src/main/release/samples/ws_security/interopfest/README.txt   (props changed)
    cxf/trunk/rt/databinding/aegis/src/test/java/org/apache/cxf/aegis/integration/takeNumber.xml   (props changed)
    cxf/trunk/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/model/MethodInvocationInfo.java   (contents, props changed)
    cxf/trunk/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JNDIConfiguration.java   (contents, props changed)
    cxf/trunk/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/exactly-once.xml   (props changed)
    cxf/trunk/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSUtils.java   (props changed)
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/http_jetty/GreeterImpl.java   (props changed)
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/http_jetty/Server.java   (props changed)
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/http_jetty/ThreadPoolTest.java   (props changed)
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/http_jetty/server.xml   (props changed)
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/addressing/server.xml   (props changed)
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/exactlyonce.xml   (props changed)
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/onewayReqOne.xml   (props changed)
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/onewayReqThree.xml   (props changed)
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/onewayReqTwo.xml   (props changed)
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/rminterceptors_provider.xml   (props changed)
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/twowayReqOne.xml   (props changed)
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/twowayReqThree.xml   (props changed)
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/twowayReqTwo.xml   (props changed)

Propchange: cxf/trunk/distribution/src/main/release/samples/ws_security/interopfest/README.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/distribution/src/main/release/samples/ws_security/interopfest/README.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: cxf/trunk/rt/databinding/aegis/src/test/java/org/apache/cxf/aegis/integration/takeNumber.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: cxf/trunk/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/model/MethodInvocationInfo.java
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/model/MethodInvocationInfo.java?rev=783396&r1=783395&r2=783396&view=diff
==============================================================================
--- cxf/trunk/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/model/MethodInvocationInfo.java (original)
+++ cxf/trunk/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/model/MethodInvocationInfo.java Wed Jun 10 15:34:46 2009
@@ -1,51 +1,51 @@
-/**
- * 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.cxf.jaxrs.model;
-
-import java.util.Collections;
-import java.util.List;
-
-/**
- * A triple of {@link OperationResourceInfo} representing a resource method being invoked, 
- * actual {@link Class} of the object this method is invoked upon, and a list of template variable values
- * matched during the selection of this method
- */
-public class MethodInvocationInfo {
-    private OperationResourceInfo ori;
-    private Class<?> realClass;
-    private List<String> templateValues;
-    
-    public MethodInvocationInfo(OperationResourceInfo ori, Class<?> realClass, List<String> templateValues) {
-        this.ori = ori;
-        this.realClass = realClass;
-        this.templateValues = Collections.unmodifiableList(templateValues);
-    }
-    
-    public OperationResourceInfo getMethodInfo() {
-        return ori;
-    }
-    
-    public Class<?> getRealClass() {
-        return realClass;
-    }
-    
-    public List<String> getTemplateValues() {
-        return templateValues;
-    }
-}
+/**
+ * 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.cxf.jaxrs.model;
+
+import java.util.Collections;
+import java.util.List;
+
+/**
+ * A triple of {@link OperationResourceInfo} representing a resource method being invoked, 
+ * actual {@link Class} of the object this method is invoked upon, and a list of template variable values
+ * matched during the selection of this method
+ */
+public class MethodInvocationInfo {
+    private OperationResourceInfo ori;
+    private Class<?> realClass;
+    private List<String> templateValues;
+    
+    public MethodInvocationInfo(OperationResourceInfo ori, Class<?> realClass, List<String> templateValues) {
+        this.ori = ori;
+        this.realClass = realClass;
+        this.templateValues = Collections.unmodifiableList(templateValues);
+    }
+    
+    public OperationResourceInfo getMethodInfo() {
+        return ori;
+    }
+    
+    public Class<?> getRealClass() {
+        return realClass;
+    }
+    
+    public List<String> getTemplateValues() {
+        return templateValues;
+    }
+}

Propchange: cxf/trunk/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/model/MethodInvocationInfo.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/model/MethodInvocationInfo.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: cxf/trunk/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JNDIConfiguration.java
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JNDIConfiguration.java?rev=783396&r1=783395&r2=783396&view=diff
==============================================================================
--- cxf/trunk/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JNDIConfiguration.java (original)
+++ cxf/trunk/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JNDIConfiguration.java Wed Jun 10 15:34:46 2009
@@ -1,70 +1,70 @@
-/**
- * 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.cxf.transport.jms;
-
-import java.util.Properties;
-
-import org.springframework.jndi.JndiTemplate;
-
-
-public class JNDIConfiguration {
-    private Properties environment;
-    private String jndiConnectionFactoryName;
-    private String connectionUserName;
-    private String connectionPassword;
-    
-    public JndiTemplate createJndiTemple() {
-        JndiTemplate jt = new JndiTemplate();
-        jt.setEnvironment(environment);
-        return jt;
-    }
-
-    public String getJndiConnectionFactoryName() {
-        return jndiConnectionFactoryName;
-    }
-
-    public void setJndiConnectionFactoryName(String jndiConnectionFactoryName) {
-        this.jndiConnectionFactoryName = jndiConnectionFactoryName;
-    }
-
-    public String getConnectionUserName() {
-        return connectionUserName;
-    }
-
-    public void setConnectionUserName(String connectionUserName) {
-        this.connectionUserName = connectionUserName;
-    }
-
-    public String getConnectionPassword() {
-        return connectionPassword;
-    }
-
-    public void setConnectionPassword(String connectionPassword) {
-        this.connectionPassword = connectionPassword;
-    }
-
-    public Properties getEnvironment() {
-        return environment;
-    }
-
-    public void setEnvironment(Properties environment) {
-        this.environment = environment;
-    }
-
-}
+/**
+ * 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.cxf.transport.jms;
+
+import java.util.Properties;
+
+import org.springframework.jndi.JndiTemplate;
+
+
+public class JNDIConfiguration {
+    private Properties environment;
+    private String jndiConnectionFactoryName;
+    private String connectionUserName;
+    private String connectionPassword;
+    
+    public JndiTemplate createJndiTemple() {
+        JndiTemplate jt = new JndiTemplate();
+        jt.setEnvironment(environment);
+        return jt;
+    }
+
+    public String getJndiConnectionFactoryName() {
+        return jndiConnectionFactoryName;
+    }
+
+    public void setJndiConnectionFactoryName(String jndiConnectionFactoryName) {
+        this.jndiConnectionFactoryName = jndiConnectionFactoryName;
+    }
+
+    public String getConnectionUserName() {
+        return connectionUserName;
+    }
+
+    public void setConnectionUserName(String connectionUserName) {
+        this.connectionUserName = connectionUserName;
+    }
+
+    public String getConnectionPassword() {
+        return connectionPassword;
+    }
+
+    public void setConnectionPassword(String connectionPassword) {
+        this.connectionPassword = connectionPassword;
+    }
+
+    public Properties getEnvironment() {
+        return environment;
+    }
+
+    public void setEnvironment(Properties environment) {
+        this.environment = environment;
+    }
+
+}

Propchange: cxf/trunk/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JNDIConfiguration.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JNDIConfiguration.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/exactly-once.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/exactly-once.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/exactly-once.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: cxf/trunk/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSUtils.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSUtils.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/http_jetty/GreeterImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/http_jetty/GreeterImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/http_jetty/Server.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/http_jetty/Server.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/http_jetty/ThreadPoolTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/http_jetty/ThreadPoolTest.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/http_jetty/server.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/http_jetty/server.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/http_jetty/server.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/addressing/server.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/addressing/server.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/addressing/server.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/exactlyonce.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/exactlyonce.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/exactlyonce.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/onewayReqOne.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/onewayReqOne.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/onewayReqOne.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/onewayReqThree.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/onewayReqThree.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/onewayReqThree.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/onewayReqTwo.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/onewayReqTwo.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/onewayReqTwo.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/rminterceptors_provider.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/rminterceptors_provider.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/rminterceptors_provider.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/twowayReqOne.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/twowayReqOne.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/twowayReqOne.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/twowayReqThree.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/twowayReqThree.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/twowayReqThree.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/twowayReqTwo.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/twowayReqTwo.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/twowayReqTwo.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml