This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch graalvm in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/graalvm by this push: new 95814e6 Add header 95814e6 is described below commit 95814e61f9c7dacd8e331b0fea7eb352e95b0331 Author: Guillaume Nodet <gno...@gmail.com> AuthorDate: Fri Aug 3 11:44:39 2018 +0200 Add header --- .../java/org/apache/camel/graalvm/FastCamelContext.java | 16 ++++++++++++++++ .../camel/graalvm/FastExecutorServiceManager.java | 16 ++++++++++++++++ .../apache/camel/graalvm/FastTypeConverterRegistry.java | 16 ++++++++++++++++ .../org/apache/camel/graalvm/NoManagementStrategy.java | 17 ++++++++++++++++- .../org/apache/camel/graalvm/NoShutdownStrategy.java | 16 ++++++++++++++++ .../main/java/org/apache/camel/graalvm/Reflection.java | 16 ++++++++++++++++ .../org/apache/camel/graalvm/support/CamelFeature.java | 16 ++++++++++++++++ 7 files changed, 112 insertions(+), 1 deletion(-) diff --git a/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/FastCamelContext.java b/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/FastCamelContext.java index 793bfc4..0b4cfa4 100644 --- a/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/FastCamelContext.java +++ b/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/FastCamelContext.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.apache.camel.graalvm; import java.util.List; diff --git a/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/FastExecutorServiceManager.java b/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/FastExecutorServiceManager.java index 4cef9ff..b18d261 100644 --- a/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/FastExecutorServiceManager.java +++ b/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/FastExecutorServiceManager.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.apache.camel.graalvm; import java.util.List; diff --git a/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/FastTypeConverterRegistry.java b/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/FastTypeConverterRegistry.java index d45c19c..5f4ed3e 100644 --- a/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/FastTypeConverterRegistry.java +++ b/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/FastTypeConverterRegistry.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.apache.camel.graalvm; import java.io.IOException; diff --git a/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/NoManagementStrategy.java b/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/NoManagementStrategy.java index e92ca82..eb3127a 100644 --- a/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/NoManagementStrategy.java +++ b/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/NoManagementStrategy.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.apache.camel.graalvm; import java.util.Collections; @@ -13,7 +29,6 @@ import org.apache.camel.spi.ManagementNamingStrategy; import org.apache.camel.spi.ManagementObjectStrategy; import org.apache.camel.spi.ManagementStrategy; -@SuppressWarnings("deprecated") public class NoManagementStrategy implements ManagementStrategy { @Override diff --git a/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/NoShutdownStrategy.java b/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/NoShutdownStrategy.java index e6e29c4..8fef7cf 100644 --- a/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/NoShutdownStrategy.java +++ b/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/NoShutdownStrategy.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.apache.camel.graalvm; import java.util.List; diff --git a/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/Reflection.java b/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/Reflection.java index 0bdaf6c..e7c5b02 100644 --- a/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/Reflection.java +++ b/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/Reflection.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.apache.camel.graalvm; import java.lang.annotation.Retention; diff --git a/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/support/CamelFeature.java b/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/support/CamelFeature.java index b995d1c..e62ad03 100644 --- a/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/support/CamelFeature.java +++ b/platforms/graalvm/support/src/main/java/org/apache/camel/graalvm/support/CamelFeature.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.apache.camel.graalvm.support; import java.lang.reflect.Constructor;