You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by cm...@apache.org on 2016/01/23 21:23:18 UTC

svn commit: r1726450 - in /openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector: BootstrapConnector.java BootstrapPipeConnector.java BootstrapSocketConnector.java example/BootstrapSocketConnectorExample.java server/OOoServer.java

Author: cmarcum
Date: Sat Jan 23 20:23:18 2016
New Revision: 1726450

URL: http://svn.apache.org/viewvc?rev=1726450&view=rev
Log:
#i126807# added Apache license headers to source files

Modified:
    openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapConnector.java
    openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapPipeConnector.java
    openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapSocketConnector.java
    openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/example/BootstrapSocketConnectorExample.java
    openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/server/OOoServer.java

Modified: openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapConnector.java
URL: http://svn.apache.org/viewvc/openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapConnector.java?rev=1726450&r1=1726449&r2=1726450&view=diff
==============================================================================
--- openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapConnector.java (original)
+++ openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapConnector.java Sat Jan 23 20:23:18 2016
@@ -1,3 +1,26 @@
+/*
+ * *************************************************************
+ * 
+ * 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 ooo.connector;
 
 import com.sun.star.bridge.UnoUrlResolver;

Modified: openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapPipeConnector.java
URL: http://svn.apache.org/viewvc/openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapPipeConnector.java?rev=1726450&r1=1726449&r2=1726450&view=diff
==============================================================================
--- openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapPipeConnector.java (original)
+++ openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapPipeConnector.java Sat Jan 23 20:23:18 2016
@@ -1,3 +1,26 @@
+/*
+ * *************************************************************
+ * 
+ * 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 ooo.connector;
 
 import com.sun.star.comp.helper.BootstrapException;

Modified: openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapSocketConnector.java
URL: http://svn.apache.org/viewvc/openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapSocketConnector.java?rev=1726450&r1=1726449&r2=1726450&view=diff
==============================================================================
--- openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapSocketConnector.java (original)
+++ openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/BootstrapSocketConnector.java Sat Jan 23 20:23:18 2016
@@ -1,3 +1,26 @@
+/*
+ * *************************************************************
+ * 
+ * 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 ooo.connector;
 
 import com.sun.star.comp.helper.BootstrapException;
@@ -98,4 +121,4 @@ public class BootstrapSocketConnector ex
         BootstrapSocketConnector bootstrapSocketConnector = new BootstrapSocketConnector(oooExecFolder);
         return bootstrapSocketConnector.connect(host,port);
     }
-}
\ No newline at end of file
+}

Modified: openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/example/BootstrapSocketConnectorExample.java
URL: http://svn.apache.org/viewvc/openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/example/BootstrapSocketConnectorExample.java?rev=1726450&r1=1726449&r2=1726450&view=diff
==============================================================================
--- openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/example/BootstrapSocketConnectorExample.java (original)
+++ openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/example/BootstrapSocketConnectorExample.java Sat Jan 23 20:23:18 2016
@@ -1,3 +1,26 @@
+/*
+ * *************************************************************
+ * 
+ * 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 ooo.connector.example;
 
 import com.sun.star.beans.PropertyValue;

Modified: openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/server/OOoServer.java
URL: http://svn.apache.org/viewvc/openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/server/OOoServer.java?rev=1726450&r1=1726449&r2=1726450&view=diff
==============================================================================
--- openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/server/OOoServer.java (original)
+++ openoffice/devtools/bootstrap-connector/trunk/src/main/java/ooo/connector/server/OOoServer.java Sat Jan 23 20:23:18 2016
@@ -1,3 +1,26 @@
+/*
+ * *************************************************************
+ * 
+ * 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 ooo.connector.server;
 
 import com.sun.star.comp.helper.BootstrapException;
@@ -170,4 +193,4 @@ public class OOoServer {
 
         return options;
     }
-}
\ No newline at end of file
+}