You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jg...@apache.org on 2019/04/25 19:48:38 UTC

[tomee] 05/26: adds header

This is an automated email from the ASF dual-hosted git repository.

jgallimore pushed a commit to branch tomee-1.7.x
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 1a00892fc35cd3a28d7541024fc5c2b5e4f34b37
Author: Otavio Santana <ot...@gmail.com>
AuthorDate: Fri Feb 22 11:33:50 2019 -0300

    adds header
---
 .../src/main/java/org/superbiz/remote/App.java           | 16 ++++++++++++++++
 .../src/main/java/org/superbiz/remote/Calculator.java    |  8 ++++----
 .../main/java/org/superbiz/remote/DefaultCalculator.java | 16 ++++++++++++++++
 3 files changed, 36 insertions(+), 4 deletions(-)

diff --git a/examples/ejb-remote-call/src/main/java/org/superbiz/remote/App.java b/examples/ejb-remote-call/src/main/java/org/superbiz/remote/App.java
index 36587b9..c6396a3 100644
--- a/examples/ejb-remote-call/src/main/java/org/superbiz/remote/App.java
+++ b/examples/ejb-remote-call/src/main/java/org/superbiz/remote/App.java
@@ -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.remote;
 
 import javax.naming.Context;
diff --git a/examples/ejb-remote-call/src/main/java/org/superbiz/remote/Calculator.java b/examples/ejb-remote-call/src/main/java/org/superbiz/remote/Calculator.java
index 09232ad..c42487f 100644
--- a/examples/ejb-remote-call/src/main/java/org/superbiz/remote/Calculator.java
+++ b/examples/ejb-remote-call/src/main/java/org/superbiz/remote/Calculator.java
@@ -1,13 +1,13 @@
-/**
+/*
  * 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
- * <p/>
- * http://www.apache.org/licenses/LICENSE-2.0
- * <p/>
+ *
+ *     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.
diff --git a/examples/ejb-remote-call/src/main/java/org/superbiz/remote/DefaultCalculator.java b/examples/ejb-remote-call/src/main/java/org/superbiz/remote/DefaultCalculator.java
index 7713c2a..8021a2b 100644
--- a/examples/ejb-remote-call/src/main/java/org/superbiz/remote/DefaultCalculator.java
+++ b/examples/ejb-remote-call/src/main/java/org/superbiz/remote/DefaultCalculator.java
@@ -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.remote;
 
 import javax.ejb.Remote;