You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by an...@apache.org on 2014/06/30 14:40:46 UTC

svn commit: r1606716 - in /tomee/tomee/trunk/examples: ./ mtom/src/main/java/org/superbiz/mtom/ mtom/src/test/java/org/superbiz/mtom/

Author: andygumbrecht
Date: Mon Jun 30 12:40:46 2014
New Revision: 1606716

URL: http://svn.apache.org/r1606716
Log:
Headers

Modified:
    tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/AbstractService.java
    tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/EjbService.java
    tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/PojoService.java
    tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Request.java
    tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Response.java
    tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Service.java
    tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/AbstractServiceTest.java
    tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/EjbServiceTest.java
    tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/PojoServiceTest.java
    tomee/tomee/trunk/examples/pom.xml

Modified: tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/AbstractService.java
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/AbstractService.java?rev=1606716&r1=1606715&r2=1606716&view=diff
==============================================================================
--- tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/AbstractService.java (original)
+++ tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/AbstractService.java Mon Jun 30 12:40:46 2014
@@ -1,3 +1,19 @@
+/**
+ * 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.superbiz.mtom;
 
 import javax.activation.DataHandler;

Modified: tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/EjbService.java
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/EjbService.java?rev=1606716&r1=1606715&r2=1606716&view=diff
==============================================================================
--- tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/EjbService.java (original)
+++ tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/EjbService.java Mon Jun 30 12:40:46 2014
@@ -1,3 +1,19 @@
+/**
+ * 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.superbiz.mtom;
 
 import javax.ejb.Stateless;

Modified: tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/PojoService.java
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/PojoService.java?rev=1606716&r1=1606715&r2=1606716&view=diff
==============================================================================
--- tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/PojoService.java (original)
+++ tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/PojoService.java Mon Jun 30 12:40:46 2014
@@ -1,3 +1,19 @@
+/**
+ * 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.superbiz.mtom;
 
 import javax.jws.WebService;

Modified: tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Request.java
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Request.java?rev=1606716&r1=1606715&r2=1606716&view=diff
==============================================================================
--- tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Request.java (original)
+++ tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Request.java Mon Jun 30 12:40:46 2014
@@ -1,3 +1,19 @@
+/**
+ * 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.superbiz.mtom;
 
 import javax.xml.bind.annotation.XmlAccessType;

Modified: tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Response.java
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Response.java?rev=1606716&r1=1606715&r2=1606716&view=diff
==============================================================================
--- tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Response.java (original)
+++ tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Response.java Mon Jun 30 12:40:46 2014
@@ -1,3 +1,19 @@
+/**
+ * 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.superbiz.mtom;
 
 import javax.activation.DataHandler;

Modified: tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Service.java
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Service.java?rev=1606716&r1=1606715&r2=1606716&view=diff
==============================================================================
--- tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Service.java (original)
+++ tomee/tomee/trunk/examples/mtom/src/main/java/org/superbiz/mtom/Service.java Mon Jun 30 12:40:46 2014
@@ -1,3 +1,19 @@
+/**
+ * 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.superbiz.mtom;
 
 import javax.jws.WebService;

Modified: tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/AbstractServiceTest.java
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/AbstractServiceTest.java?rev=1606716&r1=1606715&r2=1606716&view=diff
==============================================================================
--- tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/AbstractServiceTest.java (original)
+++ tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/AbstractServiceTest.java Mon Jun 30 12:40:46 2014
@@ -1,3 +1,19 @@
+/**
+ * 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.superbiz.mtom;
 
 import org.apache.openejb.junit.ApplicationComposer;

Modified: tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/EjbServiceTest.java
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/EjbServiceTest.java?rev=1606716&r1=1606715&r2=1606716&view=diff
==============================================================================
--- tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/EjbServiceTest.java (original)
+++ tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/EjbServiceTest.java Mon Jun 30 12:40:46 2014
@@ -1,3 +1,19 @@
+/**
+ * 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.superbiz.mtom;
 
 import org.apache.openejb.testing.EnableServices;

Modified: tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/PojoServiceTest.java
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/PojoServiceTest.java?rev=1606716&r1=1606715&r2=1606716&view=diff
==============================================================================
--- tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/PojoServiceTest.java (original)
+++ tomee/tomee/trunk/examples/mtom/src/test/java/org/superbiz/mtom/PojoServiceTest.java Mon Jun 30 12:40:46 2014
@@ -1,3 +1,19 @@
+/**
+ * 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.superbiz.mtom;
 
 import org.apache.openejb.jee.WebApp;

Modified: tomee/tomee/trunk/examples/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/examples/pom.xml?rev=1606716&r1=1606715&r2=1606716&view=diff
==============================================================================
--- tomee/tomee/trunk/examples/pom.xml (original)
+++ tomee/tomee/trunk/examples/pom.xml Mon Jun 30 12:40:46 2014
@@ -91,6 +91,7 @@
     <module>mbean-auto-registration</module>
     <module>movies-complete-meta</module>
     <module>movies-complete</module>
+    <module>mtom</module>
     <module>multi-jpa-provider-testing</module>
     <module>multiple-arquillian-adapters</module>
     <module>multiple-tomee-arquillian</module>