diff --git a/activemq-microservice-provider/src/main/java/io/silverware/microservices/annotations/JMS.java b/activemq-microservice-provider/src/main/java/io/silverware/microservices/annotations/JMS.java index 9c94591..8d6a7c7 100644 --- a/activemq-microservice-provider/src/main/java/io/silverware/microservices/annotations/JMS.java +++ b/activemq-microservice-provider/src/main/java/io/silverware/microservices/annotations/JMS.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.annotations; import io.silverware.microservices.enums.ConnectionType; diff --git a/activemq-microservice-provider/src/main/java/io/silverware/microservices/enums/ConnectionType.java b/activemq-microservice-provider/src/main/java/io/silverware/microservices/enums/ConnectionType.java index d619b14..3afca76 100644 --- a/activemq-microservice-provider/src/main/java/io/silverware/microservices/enums/ConnectionType.java +++ b/activemq-microservice-provider/src/main/java/io/silverware/microservices/enums/ConnectionType.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.enums; /** diff --git a/activemq-microservice-provider/src/main/java/io/silverware/microservices/internal/ConnectionProvider.java b/activemq-microservice-provider/src/main/java/io/silverware/microservices/internal/ConnectionProvider.java index 3b98448..74bce77 100644 --- a/activemq-microservice-provider/src/main/java/io/silverware/microservices/internal/ConnectionProvider.java +++ b/activemq-microservice-provider/src/main/java/io/silverware/microservices/internal/ConnectionProvider.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.internal; import io.silverware.microservices.utils.ActiveMQConstants; diff --git a/activemq-microservice-provider/src/main/java/io/silverware/microservices/providers/activemq/ActiveMQMicroserviceProvider.java b/activemq-microservice-provider/src/main/java/io/silverware/microservices/providers/activemq/ActiveMQMicroserviceProvider.java index 3811874..ce19897 100644 --- a/activemq-microservice-provider/src/main/java/io/silverware/microservices/providers/activemq/ActiveMQMicroserviceProvider.java +++ b/activemq-microservice-provider/src/main/java/io/silverware/microservices/providers/activemq/ActiveMQMicroserviceProvider.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.providers.activemq; import io.silverware.microservices.Context; diff --git a/activemq-microservice-provider/src/main/java/io/silverware/microservices/utils/ActiveMQConstants.java b/activemq-microservice-provider/src/main/java/io/silverware/microservices/utils/ActiveMQConstants.java index ae1feae..63b58e8 100644 --- a/activemq-microservice-provider/src/main/java/io/silverware/microservices/utils/ActiveMQConstants.java +++ b/activemq-microservice-provider/src/main/java/io/silverware/microservices/utils/ActiveMQConstants.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.utils; /** diff --git a/activemq-microservice-provider/src/main/java/io/silverware/microservices/utils/InitialContextProvider.java b/activemq-microservice-provider/src/main/java/io/silverware/microservices/utils/InitialContextProvider.java index 3aec3cd..2a04c57 100644 --- a/activemq-microservice-provider/src/main/java/io/silverware/microservices/utils/InitialContextProvider.java +++ b/activemq-microservice-provider/src/main/java/io/silverware/microservices/utils/InitialContextProvider.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.utils; import org.apache.logging.log4j.LogManager; diff --git a/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQAnnotationTest.java b/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQAnnotationTest.java index e9a38ec..af1704f 100644 --- a/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQAnnotationTest.java +++ b/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQAnnotationTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.providers.activemq; import io.silverware.microservices.annotations.JMS; diff --git a/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQDifferentServersTest.java b/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQDifferentServersTest.java index 2110bd7..4d3fdbb 100644 --- a/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQDifferentServersTest.java +++ b/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQDifferentServersTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.providers.activemq; import io.silverware.microservices.annotations.JMS; diff --git a/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQJMSContextTest.java b/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQJMSContextTest.java index cc4a093..725a43a 100644 --- a/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQJMSContextTest.java +++ b/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQJMSContextTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.providers.activemq; import io.silverware.microservices.annotations.JMS; diff --git a/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQJNDITest.java b/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQJNDITest.java index 0b2e047..14fce16 100644 --- a/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQJNDITest.java +++ b/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQJNDITest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.providers.activemq; import io.silverware.microservices.annotations.JMS; diff --git a/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQMicroserviceProviderTestUtil.java b/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQMicroserviceProviderTestUtil.java index a0f2d0c..beebe9b 100644 --- a/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQMicroserviceProviderTestUtil.java +++ b/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQMicroserviceProviderTestUtil.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.providers.activemq; import io.silverware.microservices.providers.cdi.CdiMicroserviceProvider; diff --git a/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQSecurityTest.java b/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQSecurityTest.java index 755fc8f..725ee53 100644 --- a/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQSecurityTest.java +++ b/activemq-microservice-provider/src/test/java/io/silverware/microservices/providers/activemq/ActiveMQSecurityTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.providers.activemq; import io.silverware.microservices.annotations.JMS; diff --git a/camel-cdi-integration/src/main/java/io/silverware/microservices/providers/camel/CamelCdiContextFactory.java b/camel-cdi-integration/src/main/java/io/silverware/microservices/providers/camel/CamelCdiContextFactory.java index 1793c5b..0bdfdd4 100644 --- a/camel-cdi-integration/src/main/java/io/silverware/microservices/providers/camel/CamelCdiContextFactory.java +++ b/camel-cdi-integration/src/main/java/io/silverware/microservices/providers/camel/CamelCdiContextFactory.java @@ -7,9 +7,9 @@ * Licensed 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. diff --git a/camel-cdi-integration/src/test/java/io/silverware/providers/camel/CamelCdiIntegrationTest.java b/camel-cdi-integration/src/test/java/io/silverware/providers/camel/CamelCdiIntegrationTest.java index 82790c5..ba2b801 100644 --- a/camel-cdi-integration/src/test/java/io/silverware/providers/camel/CamelCdiIntegrationTest.java +++ b/camel-cdi-integration/src/test/java/io/silverware/providers/camel/CamelCdiIntegrationTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/camel-cdi-integration/src/test/java/io/silverware/providers/camel/CamelCdiRoute.java b/camel-cdi-integration/src/test/java/io/silverware/providers/camel/CamelCdiRoute.java index 46c5223..f55c3bf 100644 --- a/camel-cdi-integration/src/test/java/io/silverware/providers/camel/CamelCdiRoute.java +++ b/camel-cdi-integration/src/test/java/io/silverware/providers/camel/CamelCdiRoute.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/camel-microservice-provider/src/main/java/io/silverware/microservices/providers/camel/CamelContextFactory.java b/camel-microservice-provider/src/main/java/io/silverware/microservices/providers/camel/CamelContextFactory.java index 4344e00..e4b952e 100644 --- a/camel-microservice-provider/src/main/java/io/silverware/microservices/providers/camel/CamelContextFactory.java +++ b/camel-microservice-provider/src/main/java/io/silverware/microservices/providers/camel/CamelContextFactory.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/camel-microservice-provider/src/main/java/io/silverware/microservices/providers/camel/CamelMicroserviceProvider.java b/camel-microservice-provider/src/main/java/io/silverware/microservices/providers/camel/CamelMicroserviceProvider.java index e76427d..c85f84c 100644 --- a/camel-microservice-provider/src/main/java/io/silverware/microservices/providers/camel/CamelMicroserviceProvider.java +++ b/camel-microservice-provider/src/main/java/io/silverware/microservices/providers/camel/CamelMicroserviceProvider.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/camel-microservice-provider/src/test/java/io/silverware/microservices/providers/camel/CamelMicroserviceProviderTest.java b/camel-microservice-provider/src/test/java/io/silverware/microservices/providers/camel/CamelMicroserviceProviderTest.java index 1653aaa..b9bcc74 100644 --- a/camel-microservice-provider/src/test/java/io/silverware/microservices/providers/camel/CamelMicroserviceProviderTest.java +++ b/camel-microservice-provider/src/test/java/io/silverware/microservices/providers/camel/CamelMicroserviceProviderTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/Guarded.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/Guarded.java index b68ae28..02fbc80 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/Guarded.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/Guarded.java @@ -7,9 +7,9 @@ * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/Microservice.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/Microservice.java index 79782f5..c85fe4f 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/Microservice.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/Microservice.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/MicroserviceReference.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/MicroserviceReference.java index 4c6b72d..ccd3951 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/MicroserviceReference.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/MicroserviceReference.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/MicroserviceScoped.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/MicroserviceScoped.java index cd92d52..6723abd 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/MicroserviceScoped.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/MicroserviceScoped.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/MicroserviceVersion.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/MicroserviceVersion.java index 50f1926..3cf87d6 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/MicroserviceVersion.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/annotations/MicroserviceVersion.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ * SilverWare - * - * Copyright (C) 2015 - 2016 the original author or authors. - * + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProvider.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProvider.java index d0156c8..1fad104 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProvider.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProvider.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/MicroserviceContext.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/MicroserviceContext.java index f07b3be..69c7573 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/MicroserviceContext.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/MicroserviceContext.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/MicroservicesStartedEvent.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/MicroservicesStartedEvent.java index b060d93..85afccc 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/MicroservicesStartedEvent.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/MicroservicesStartedEvent.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/builtin/Configuration.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/builtin/Configuration.java index 2d4f382..71e1d42 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/builtin/Configuration.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/builtin/Configuration.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/builtin/CurrentContext.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/builtin/CurrentContext.java index fdfe67b..d1792d4 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/builtin/CurrentContext.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/builtin/CurrentContext.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/builtin/Storage.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/builtin/Storage.java index 7ab553e..fbe571f 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/builtin/Storage.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/builtin/Storage.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/DefaultMethodHandler.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/DefaultMethodHandler.java index 68fda5f..f649b36 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/DefaultMethodHandler.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/DefaultMethodHandler.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MetadataInjectionPoint.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MetadataInjectionPoint.java index 4a18a01..3714b62 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MetadataInjectionPoint.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MetadataInjectionPoint.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroserviceMethodHandler.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroserviceMethodHandler.java index 72fdb1d..092fc13 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroserviceMethodHandler.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroserviceMethodHandler.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroserviceProxyBean.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroserviceProxyBean.java index 6a01fff..29809a8 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroserviceProxyBean.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroserviceProxyBean.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroserviceProxyFactory.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroserviceProxyFactory.java index ab81a5b..099e539 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroserviceProxyFactory.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroserviceProxyFactory.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroservicesCDIExtension.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroservicesCDIExtension.java index a093be1..2c68fe7 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroservicesCDIExtension.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroservicesCDIExtension.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroservicesInitEvent.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroservicesInitEvent.java index 23e7290..2a8eb05 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroservicesInitEvent.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/internal/MicroservicesInitEvent.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/util/AnnotationUtil.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/util/AnnotationUtil.java index 2eb2e9d..bd0b4eb 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/util/AnnotationUtil.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/util/AnnotationUtil.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/util/VersionResolver.java b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/util/VersionResolver.java index 812008e..fccd908 100644 --- a/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/util/VersionResolver.java +++ b/cdi-microservice-provider/src/main/java/io/silverware/microservices/providers/cdi/util/VersionResolver.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ * SilverWare - * - * Copyright (C) 2016 - 2017 the original author or authors. - * + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   * Licensed 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. @@ -173,9 +173,9 @@ String resolveVersionFromSuperClasses(final Class clazz, final Function lambda) { Class[] interfaces = clazz.getInterfaces(); List versions = Arrays.stream(interfaces) - .map(i -> resolveVersionFromAnnotations(Arrays.stream(i.getAnnotations()), lambda)) - .filter(v -> v != null && !v.isEmpty()) - .collect(toList()); + .map(i -> resolveVersionFromAnnotations(Arrays.stream(i.getAnnotations()), lambda)) + .filter(v -> v != null && !v.isEmpty()) + .collect(toList()); if (versions.size() > 1) { throw new IllegalArgumentException(String.format(MORE_MICROSERVICE_VERSIONS_FOUND, clazz.getName())); } diff --git a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderAlternativesTest.java b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderAlternativesTest.java index 544b729..07ed6cc 100644 --- a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderAlternativesTest.java +++ b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderAlternativesTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderBasicTest.java b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderBasicTest.java index 810d61d..e473b57 100644 --- a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderBasicTest.java +++ b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderBasicTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderProducesTest.java b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderProducesTest.java index 08d06f7..11eecab 100644 --- a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderProducesTest.java +++ b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderProducesTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2014 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderQualifiersTest.java b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderQualifiersTest.java index 9189097..c7c7a19 100644 --- a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderQualifiersTest.java +++ b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderQualifiersTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderRestartTest.java b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderRestartTest.java index 04771ad..b5ead2c 100644 --- a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderRestartTest.java +++ b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderRestartTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2014 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderServicesTest.java b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderServicesTest.java index 428c661..deed04e 100644 --- a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderServicesTest.java +++ b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderServicesTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderSpecializationTest.java b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderSpecializationTest.java index 42df293..4213ad5 100644 --- a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderSpecializationTest.java +++ b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderSpecializationTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderTestUtil.java b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderTestUtil.java index d02b7ba..56b9ed7 100644 --- a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderTestUtil.java +++ b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderTestUtil.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2014 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderVersionsLessNumbersTest.java b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderVersionsLessNumbersTest.java index 9d5b4dc..cd9300d 100644 --- a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderVersionsLessNumbersTest.java +++ b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderVersionsLessNumbersTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderVersionsTest.java b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderVersionsTest.java index 203c122..b0ae307 100644 --- a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderVersionsTest.java +++ b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/CdiMicroserviceProviderVersionsTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/util/VersionResolverTest.java b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/util/VersionResolverTest.java index 0fdb3b7..ff8b116 100644 --- a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/util/VersionResolverTest.java +++ b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/util/VersionResolverTest.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ * SilverWare - * - * Copyright (C) 2015 - 2016 the original author or authors. - * + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   * Licensed 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. diff --git a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/util/VersionsHierarchy.java b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/util/VersionsHierarchy.java index 0a11901..29d30eb 100644 --- a/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/util/VersionsHierarchy.java +++ b/cdi-microservice-provider/src/test/java/io/silverware/microservices/providers/cdi/util/VersionsHierarchy.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ * SilverWare - * - * Copyright (C) 2015 - 2016 the original author or authors. - * + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/ClusterMicroserviceProvider.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/ClusterMicroserviceProvider.java index b37fe3a..ffb43aa 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/ClusterMicroserviceProvider.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/ClusterMicroserviceProvider.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/RemoteServiceHandle.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/RemoteServiceHandle.java index ed2e8e9..7de761a 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/RemoteServiceHandle.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/RemoteServiceHandle.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/HttpServiceProxy.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/HttpServiceProxy.java index 6ba3364..b52662a 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/HttpServiceProxy.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/HttpServiceProxy.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageReceiver.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageReceiver.java index 31a19af..e965ca2 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageReceiver.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageReceiver.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageSender.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageSender.java index ef5fe37..6db4557 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageSender.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageSender.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/exception/SilverWareClusteringException.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/exception/SilverWareClusteringException.java index e373045..57e1144 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/exception/SilverWareClusteringException.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/exception/SilverWareClusteringException.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/KnownImplementation.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/KnownImplementation.java index 95d4d8b..b2dc0d8 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/KnownImplementation.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/KnownImplementation.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/request/MicroserviceRemoteCallRequest.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/request/MicroserviceRemoteCallRequest.java index ff2bbfb..6ab6228 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/request/MicroserviceRemoteCallRequest.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/request/MicroserviceRemoteCallRequest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/request/RequestMessage.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/request/RequestMessage.java index d3a76d2..8473c1f 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/request/RequestMessage.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/request/RequestMessage.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/AbstractResponder.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/AbstractResponder.java index 97ea274..91ebe32 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/AbstractResponder.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/AbstractResponder.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/MicroServiceRemoteCallResponder.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/MicroServiceRemoteCallResponder.java index 9f8d768..edcf285 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/MicroServiceRemoteCallResponder.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/MicroServiceRemoteCallResponder.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/MicroserviceSearchResponder.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/MicroserviceSearchResponder.java index 25fff19..d37c49d 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/MicroserviceSearchResponder.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/MicroserviceSearchResponder.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/Responder.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/Responder.java index d3ee9b9..6d096d4 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/Responder.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/responder/Responder.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/response/MicroserviceRemoteCallResponse.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/response/MicroserviceRemoteCallResponse.java index 8b61bf7..5f279aa 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/response/MicroserviceRemoteCallResponse.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/response/MicroserviceRemoteCallResponse.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/response/MicroserviceSearchResponse.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/response/MicroserviceSearchResponse.java index 8377d42..af89412 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/response/MicroserviceSearchResponse.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/response/MicroserviceSearchResponse.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/response/ResponseMessage.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/response/ResponseMessage.java index f33ca9e..e5238ff 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/response/ResponseMessage.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/message/response/ResponseMessage.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/util/FutureListenerHelper.java b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/util/FutureListenerHelper.java index 49b7add..0c75ad1 100644 --- a/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/util/FutureListenerHelper.java +++ b/cluster-microservice-provider/src/main/java/io/silverware/microservices/providers/cluster/internal/util/FutureListenerHelper.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/main/resources/META-INF/beans.xml b/cluster-microservice-provider/src/main/resources/META-INF/beans.xml index e69de29..1d43f74 100644 --- a/cluster-microservice-provider/src/main/resources/META-INF/beans.xml +++ b/cluster-microservice-provider/src/main/resources/META-INF/beans.xml @@ -0,0 +1 @@ + --> diff --git a/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/ClusterMicroserviceProviderTest.java b/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/ClusterMicroserviceProviderTest.java index 603ef9c..2a89e39 100644 --- a/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/ClusterMicroserviceProviderTest.java +++ b/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/ClusterMicroserviceProviderTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/Util.java b/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/Util.java index 9d53d4c..78c9c89 100644 --- a/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/Util.java +++ b/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/Util.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageReceiverTest.java b/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageReceiverTest.java index 2f3ad05..4ebec95 100644 --- a/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageReceiverTest.java +++ b/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageReceiverTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageSenderTest.java b/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageSenderTest.java index a2a4dcd..d93458a 100644 --- a/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageSenderTest.java +++ b/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/internal/JgroupsMessageSenderTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/internal/RemoteServiceHandleStoreTest.java b/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/internal/RemoteServiceHandleStoreTest.java index ca68646..3663c4d 100644 --- a/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/internal/RemoteServiceHandleStoreTest.java +++ b/cluster-microservice-provider/src/test/java/io/silverware/microservices/providers/cluster/internal/RemoteServiceHandleStoreTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/cluster-microservice-provider/src/test/resources/META-INF/beans.xml b/cluster-microservice-provider/src/test/resources/META-INF/beans.xml index e69de29..1d43f74 100644 --- a/cluster-microservice-provider/src/test/resources/META-INF/beans.xml +++ b/cluster-microservice-provider/src/test/resources/META-INF/beans.xml @@ -0,0 +1 @@ + --> diff --git a/drools-microservice-provider/src/test/java/io/silverware/microservices/providers/drools/DroolsCheck.java b/drools-microservice-provider/src/test/java/io/silverware/microservices/providers/drools/DroolsCheck.java index 1ff19bb..1340d12 100644 --- a/drools-microservice-provider/src/test/java/io/silverware/microservices/providers/drools/DroolsCheck.java +++ b/drools-microservice-provider/src/test/java/io/silverware/microservices/providers/drools/DroolsCheck.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ * SilverWare - * - * Copyright (C) 2017 the original author or authors. - * + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   * Licensed 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. diff --git a/drools-microservice-provider/src/test/java/io/silverware/microservices/providers/drools/DroolsIntegrationTest.java b/drools-microservice-provider/src/test/java/io/silverware/microservices/providers/drools/DroolsIntegrationTest.java index a30232f..ac46e1e 100644 --- a/drools-microservice-provider/src/test/java/io/silverware/microservices/providers/drools/DroolsIntegrationTest.java +++ b/drools-microservice-provider/src/test/java/io/silverware/microservices/providers/drools/DroolsIntegrationTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2017 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/drools-microservice-provider/src/test/java/io/silverware/microservices/providers/drools/SilverWareTestBase.java b/drools-microservice-provider/src/test/java/io/silverware/microservices/providers/drools/SilverWareTestBase.java index f4f8939..7853fb6 100644 --- a/drools-microservice-provider/src/test/java/io/silverware/microservices/providers/drools/SilverWareTestBase.java +++ b/drools-microservice-provider/src/test/java/io/silverware/microservices/providers/drools/SilverWareTestBase.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ * SilverWare - * - * Copyright (C) 2017 the original author or authors. - * + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   * Licensed 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. diff --git a/drools-microservice-provider/src/test/resources/META-INF/beans.xml b/drools-microservice-provider/src/test/resources/META-INF/beans.xml index e69de29..1d43f74 100644 --- a/drools-microservice-provider/src/test/resources/META-INF/beans.xml +++ b/drools-microservice-provider/src/test/resources/META-INF/beans.xml @@ -0,0 +1 @@ + --> diff --git a/http-invoker-microservice-provider/src/main/java/io/silverware/microservices/providers/http/invoker/HttpInvokerMicroserviceProvider.java b/http-invoker-microservice-provider/src/main/java/io/silverware/microservices/providers/http/invoker/HttpInvokerMicroserviceProvider.java index 0eb72e0..3d97e84 100644 --- a/http-invoker-microservice-provider/src/main/java/io/silverware/microservices/providers/http/invoker/HttpInvokerMicroserviceProvider.java +++ b/http-invoker-microservice-provider/src/main/java/io/silverware/microservices/providers/http/invoker/HttpInvokerMicroserviceProvider.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/http-invoker-microservice-provider/src/main/java/io/silverware/microservices/providers/http/invoker/internal/HttpInvokerServlet.java b/http-invoker-microservice-provider/src/main/java/io/silverware/microservices/providers/http/invoker/internal/HttpInvokerServlet.java index 5c82ba6..dc9dec4 100644 --- a/http-invoker-microservice-provider/src/main/java/io/silverware/microservices/providers/http/invoker/internal/HttpInvokerServlet.java +++ b/http-invoker-microservice-provider/src/main/java/io/silverware/microservices/providers/http/invoker/internal/HttpInvokerServlet.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ - * PerfCake + * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/http-invoker-microservice-provider/src/main/java/io/silverware/microservices/providers/http/invoker/internal/HttpServiceHandle.java b/http-invoker-microservice-provider/src/main/java/io/silverware/microservices/providers/http/invoker/internal/HttpServiceHandle.java index 26c0a66..51fac31 100644 --- a/http-invoker-microservice-provider/src/main/java/io/silverware/microservices/providers/http/invoker/internal/HttpServiceHandle.java +++ b/http-invoker-microservice-provider/src/main/java/io/silverware/microservices/providers/http/invoker/internal/HttpServiceHandle.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ * SilverWare - * - * Copyright (C) 2015 the original author or authors. - * + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   * Licensed 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. diff --git a/http-invoker-microservice-provider/src/test/java/io/silverware/microservices/providers/http/invoker/HttpInvokerMicroserviceProviderTest.java b/http-invoker-microservice-provider/src/test/java/io/silverware/microservices/providers/http/invoker/HttpInvokerMicroserviceProviderTest.java index 0ccccf3..2f2599e 100644 --- a/http-invoker-microservice-provider/src/test/java/io/silverware/microservices/providers/http/invoker/HttpInvokerMicroserviceProviderTest.java +++ b/http-invoker-microservice-provider/src/test/java/io/silverware/microservices/providers/http/invoker/HttpInvokerMicroserviceProviderTest.java @@ -1,3 +1,22 @@ +/* + * -----------------------------------------------------------------------\ + * SilverWare + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   + * Licensed 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 io.silverware.microservices.providers.http.invoker; import io.silverware.microservices.MicroserviceMetaData; diff --git a/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/HttpServerMicroserviceProvider.java b/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/HttpServerMicroserviceProvider.java index c3fc042..ea0d82f 100644 --- a/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/HttpServerMicroserviceProvider.java +++ b/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/HttpServerMicroserviceProvider.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/SSLContextFactory.java b/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/SSLContextFactory.java index c50293c..a00c2f3 100644 --- a/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/SSLContextFactory.java +++ b/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/SSLContextFactory.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/SilverWareURI.java b/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/SilverWareURI.java index 602b34b..d16cc54 100644 --- a/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/SilverWareURI.java +++ b/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/SilverWareURI.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/resteasy/SilverwareResourceFactory.java b/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/resteasy/SilverwareResourceFactory.java index 9005f4c..b0dce63 100644 --- a/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/resteasy/SilverwareResourceFactory.java +++ b/http-server-microservice-provider/src/main/java/io/silverware/microservices/providers/http/resteasy/SilverwareResourceFactory.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/http-server-microservice-provider/src/test/java/io/silverware/microservices/providers/http/HttpServerMicroserviceProviderRestTest.java b/http-server-microservice-provider/src/test/java/io/silverware/microservices/providers/http/HttpServerMicroserviceProviderRestTest.java index eedff3f..8af7223 100644 --- a/http-server-microservice-provider/src/test/java/io/silverware/microservices/providers/http/HttpServerMicroserviceProviderRestTest.java +++ b/http-server-microservice-provider/src/test/java/io/silverware/microservices/providers/http/HttpServerMicroserviceProviderRestTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/http-server-microservice-provider/src/test/java/io/silverware/microservices/providers/http/HttpServerMicroserviceProviderTest.java b/http-server-microservice-provider/src/test/java/io/silverware/microservices/providers/http/HttpServerMicroserviceProviderTest.java index 9333d42..3c364b5 100644 --- a/http-server-microservice-provider/src/test/java/io/silverware/microservices/providers/http/HttpServerMicroserviceProviderTest.java +++ b/http-server-microservice-provider/src/test/java/io/silverware/microservices/providers/http/HttpServerMicroserviceProviderTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/http-server-microservice-provider/src/test/java/io/silverware/microservices/providers/http/SSLTest.java b/http-server-microservice-provider/src/test/java/io/silverware/microservices/providers/http/SSLTest.java index 0a231b2..9bb750a 100644 --- a/http-server-microservice-provider/src/test/java/io/silverware/microservices/providers/http/SSLTest.java +++ b/http-server-microservice-provider/src/test/java/io/silverware/microservices/providers/http/SSLTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2014 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/Fallback.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/Fallback.java index f558378..801a477 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/Fallback.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/Fallback.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/HystrixConfig.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/HystrixConfig.java index 14954f5..31276d5 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/HystrixConfig.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/HystrixConfig.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/CacheKey.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/CacheKey.java index 9e7eb60..19676e3 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/CacheKey.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/CacheKey.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ - * Netflix, SilverWare + * SilverWare *   - * Copyright (C) 2015-2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/DefaultProperties.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/DefaultProperties.java index 1dc52f4..795d787 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/DefaultProperties.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/DefaultProperties.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ - * Netflix, SilverWare + * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/HystrixCommand.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/HystrixCommand.java index f25cf62..06c52c9 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/HystrixCommand.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/HystrixCommand.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ - * Netflix, SilverWare + * SilverWare *   - * Copyright (C) 2012-2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/HystrixProperty.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/HystrixProperty.java index c8d5d76..1210c76 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/HystrixProperty.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/advanced/HystrixProperty.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ - * Netflix, SilverWare + * SilverWare *   - * Copyright (C) 2012-2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/Cached.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/Cached.java index 2bfe4fd..bdf9660 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/Cached.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/Cached.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/CircuitBreaker.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/CircuitBreaker.java index d262599..fb4c1f6 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/CircuitBreaker.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/CircuitBreaker.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/Fail.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/Fail.java index d9df6c6..1c28728 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/Fail.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/Fail.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/ThreadPool.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/ThreadPool.java index bf5405c..794966d 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/ThreadPool.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/ThreadPool.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/Timeout.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/Timeout.java index b907f74..7c3b8c1 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/Timeout.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/annotations/hystrix/basic/Timeout.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/HystrixMicroserviceProvider.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/HystrixMicroserviceProvider.java index 66df5ca..e0b5527 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/HystrixMicroserviceProvider.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/HystrixMicroserviceProvider.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScanner.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScanner.java index 17de94a..3df5e7b 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScanner.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScanner.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/CommandProperties.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/CommandProperties.java index 3ce0278..041dcda 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/CommandProperties.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/CommandProperties.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/MethodConfig.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/MethodConfig.java index 21b6804..703fa80 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/MethodConfig.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/MethodConfig.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/ServiceConfig.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/ServiceConfig.java index f0834d4..7a5fa11 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/ServiceConfig.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/ServiceConfig.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/SetterFactory.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/SetterFactory.java index 198c208..479305c 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/SetterFactory.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/SetterFactory.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/ThreadPoolProperties.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/ThreadPoolProperties.java index b917bf7..c90f71d 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/ThreadPoolProperties.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/configuration/ThreadPoolProperties.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/execution/HystrixMethodHandler.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/execution/HystrixMethodHandler.java index a47d7ec..e575bd3 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/execution/HystrixMethodHandler.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/execution/HystrixMethodHandler.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/execution/MicroserviceHystrixCommand.java b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/execution/MicroserviceHystrixCommand.java index 996d469..89e1e82 100644 --- a/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/execution/MicroserviceHystrixCommand.java +++ b/hystrix-microservice-provider/src/main/java/io/silverware/microservices/providers/hystrix/execution/MicroserviceHystrixCommand.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/AdvancedCacheIntegrationTest.java b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/AdvancedCacheIntegrationTest.java index c478059..1582f9b 100644 --- a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/AdvancedCacheIntegrationTest.java +++ b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/AdvancedCacheIntegrationTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/AdvancedHystrixIntegrationTest.java b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/AdvancedHystrixIntegrationTest.java index b2f2642..0e8cdfe 100644 --- a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/AdvancedHystrixIntegrationTest.java +++ b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/AdvancedHystrixIntegrationTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/BasicHystrixIntegrationTest.java b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/BasicHystrixIntegrationTest.java index 4556568..dbe94da 100644 --- a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/BasicHystrixIntegrationTest.java +++ b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/BasicHystrixIntegrationTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/MetricsStreamIntegrationTest.java b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/MetricsStreamIntegrationTest.java index 48e47f7..6ce1079 100644 --- a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/MetricsStreamIntegrationTest.java +++ b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/MetricsStreamIntegrationTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/MultipleInjectionsIntegrationTest.java b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/MultipleInjectionsIntegrationTest.java index 31e351b..00e1076 100644 --- a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/MultipleInjectionsIntegrationTest.java +++ b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/MultipleInjectionsIntegrationTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/SilverWareHystrixTestBase.java b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/SilverWareHystrixTestBase.java index ba85eab..889a9d9 100644 --- a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/SilverWareHystrixTestBase.java +++ b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/SilverWareHystrixTestBase.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerHighLevelFieldTest.java b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerHighLevelFieldTest.java index 76ca838..bf6d5e0 100644 --- a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerHighLevelFieldTest.java +++ b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerHighLevelFieldTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerHighLevelInterfaceTest.java b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerHighLevelInterfaceTest.java index e5f4b8c..9d6932c 100644 --- a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerHighLevelInterfaceTest.java +++ b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerHighLevelInterfaceTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerLowLevelInterfaceTest.java b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerLowLevelInterfaceTest.java index 97a9a3a..c301eb7 100644 --- a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerLowLevelInterfaceTest.java +++ b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerLowLevelInterfaceTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerTestBase.java b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerTestBase.java index a16f4ce..3d59493 100644 --- a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerTestBase.java +++ b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/configuration/AnnotationScannerTestBase.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/execution/HystrixMethodHandlerTest.java b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/execution/HystrixMethodHandlerTest.java index c02517f..1d2bc22 100644 --- a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/execution/HystrixMethodHandlerTest.java +++ b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/execution/HystrixMethodHandlerTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/execution/HystrixTestBase.java b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/execution/HystrixTestBase.java index 6fbad96..299c2ca 100644 --- a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/execution/HystrixTestBase.java +++ b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/execution/HystrixTestBase.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/execution/MicroserviceHystrixCommandTest.java b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/execution/MicroserviceHystrixCommandTest.java index 925f505..c2e0334 100644 --- a/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/execution/MicroserviceHystrixCommandTest.java +++ b/hystrix-microservice-provider/src/test/java/io/silverware/microservices/providers/hystrix/execution/MicroserviceHystrixCommandTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/Boot.java b/microservices/src/main/java/io/silverware/microservices/Boot.java index 338a9f3..35ba963 100644 --- a/microservices/src/main/java/io/silverware/microservices/Boot.java +++ b/microservices/src/main/java/io/silverware/microservices/Boot.java @@ -7,9 +7,9 @@ * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/Context.java b/microservices/src/main/java/io/silverware/microservices/Context.java index 247d1ce..8b6360b 100644 --- a/microservices/src/main/java/io/silverware/microservices/Context.java +++ b/microservices/src/main/java/io/silverware/microservices/Context.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/Executor.java b/microservices/src/main/java/io/silverware/microservices/Executor.java index 5eae1d9..2d0705b 100644 --- a/microservices/src/main/java/io/silverware/microservices/Executor.java +++ b/microservices/src/main/java/io/silverware/microservices/Executor.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/MicroserviceMetaData.java b/microservices/src/main/java/io/silverware/microservices/MicroserviceMetaData.java index b23325f..19c71be 100644 --- a/microservices/src/main/java/io/silverware/microservices/MicroserviceMetaData.java +++ b/microservices/src/main/java/io/silverware/microservices/MicroserviceMetaData.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/SilverWareException.java b/microservices/src/main/java/io/silverware/microservices/SilverWareException.java index 98bd151..a292210 100644 --- a/microservices/src/main/java/io/silverware/microservices/SilverWareException.java +++ b/microservices/src/main/java/io/silverware/microservices/SilverWareException.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/annotations/InvocationPolicy.java b/microservices/src/main/java/io/silverware/microservices/annotations/InvocationPolicy.java index 33bd3de..fbe5dc1 100644 --- a/microservices/src/main/java/io/silverware/microservices/annotations/InvocationPolicy.java +++ b/microservices/src/main/java/io/silverware/microservices/annotations/InvocationPolicy.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2014 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/providers/MicroserviceProvider.java b/microservices/src/main/java/io/silverware/microservices/providers/MicroserviceProvider.java index a8d9f0a..2c208d8 100644 --- a/microservices/src/main/java/io/silverware/microservices/providers/MicroserviceProvider.java +++ b/microservices/src/main/java/io/silverware/microservices/providers/MicroserviceProvider.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2014 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/ActiveMQSilverService.java b/microservices/src/main/java/io/silverware/microservices/silver/ActiveMQSilverService.java index b2c63c9..4e94e30 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/ActiveMQSilverService.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/ActiveMQSilverService.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2014 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/CamelSilverService.java b/microservices/src/main/java/io/silverware/microservices/silver/CamelSilverService.java index 874d5f2..0a617ee 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/CamelSilverService.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/CamelSilverService.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/CdiSilverService.java b/microservices/src/main/java/io/silverware/microservices/silver/CdiSilverService.java index 8ea97ec..9398890 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/CdiSilverService.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/CdiSilverService.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/ClusterSilverService.java b/microservices/src/main/java/io/silverware/microservices/silver/ClusterSilverService.java index 336a0e6..b619d06 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/ClusterSilverService.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/ClusterSilverService.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/DroolsSilverService.java b/microservices/src/main/java/io/silverware/microservices/silver/DroolsSilverService.java index aec3460..7b0a500 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/DroolsSilverService.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/DroolsSilverService.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/HttpInvokerSilverService.java b/microservices/src/main/java/io/silverware/microservices/silver/HttpInvokerSilverService.java index 1c0bb44..0800f3a 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/HttpInvokerSilverService.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/HttpInvokerSilverService.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/HttpServerSilverService.java b/microservices/src/main/java/io/silverware/microservices/silver/HttpServerSilverService.java index 41d6692..9d7fad3 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/HttpServerSilverService.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/HttpServerSilverService.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/HystrixSilverService.java b/microservices/src/main/java/io/silverware/microservices/silver/HystrixSilverService.java index f04e48a..45cf964 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/HystrixSilverService.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/HystrixSilverService.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/MonitoringSilverService.java b/microservices/src/main/java/io/silverware/microservices/silver/MonitoringSilverService.java index 7f50cf9..35e0eb6 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/MonitoringSilverService.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/MonitoringSilverService.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/ProvidingSilverService.java b/microservices/src/main/java/io/silverware/microservices/silver/ProvidingSilverService.java index 99cb5de..5e04748 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/ProvidingSilverService.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/ProvidingSilverService.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2014 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/RestClientSilverService.java b/microservices/src/main/java/io/silverware/microservices/silver/RestClientSilverService.java index de90a75..a6792ef 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/RestClientSilverService.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/RestClientSilverService.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2014 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/SilverService.java b/microservices/src/main/java/io/silverware/microservices/silver/SilverService.java index e2b72f1..878c91a 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/SilverService.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/SilverService.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/VertxSilverService.java b/microservices/src/main/java/io/silverware/microservices/silver/VertxSilverService.java index 580b07e..6792fe8 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/VertxSilverService.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/VertxSilverService.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2014 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/cluster/Invocation.java b/microservices/src/main/java/io/silverware/microservices/silver/cluster/Invocation.java index 7f5d8b8..8f9b09f 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/cluster/Invocation.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/cluster/Invocation.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/cluster/LocalServiceHandle.java b/microservices/src/main/java/io/silverware/microservices/silver/cluster/LocalServiceHandle.java index 3cd4e3e..65282d1 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/cluster/LocalServiceHandle.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/cluster/LocalServiceHandle.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/cluster/RemoteServiceHandlesStore.java b/microservices/src/main/java/io/silverware/microservices/silver/cluster/RemoteServiceHandlesStore.java index 48ed447..882cd84 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/cluster/RemoteServiceHandlesStore.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/cluster/RemoteServiceHandlesStore.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/cluster/ServiceHandle.java b/microservices/src/main/java/io/silverware/microservices/silver/cluster/ServiceHandle.java index 5511585..9528003 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/cluster/ServiceHandle.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/cluster/ServiceHandle.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/http/ServletDescriptor.java b/microservices/src/main/java/io/silverware/microservices/silver/http/ServletDescriptor.java index 391623c..6f2d9bf 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/http/ServletDescriptor.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/http/ServletDescriptor.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/services/LookupStrategy.java b/microservices/src/main/java/io/silverware/microservices/silver/services/LookupStrategy.java index 75436d1..4f8fa0a 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/services/LookupStrategy.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/services/LookupStrategy.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/services/LookupStrategyFactory.java b/microservices/src/main/java/io/silverware/microservices/silver/services/LookupStrategyFactory.java index a9808e8..998b869 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/services/LookupStrategyFactory.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/services/LookupStrategyFactory.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/AbstractLookupStrategy.java b/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/AbstractLookupStrategy.java index d33ac24..7f67435 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/AbstractLookupStrategy.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/AbstractLookupStrategy.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/FirstFoundLocalLookupStrategy.java b/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/FirstFoundLocalLookupStrategy.java index b102e0d..839cb74 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/FirstFoundLocalLookupStrategy.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/FirstFoundLocalLookupStrategy.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/RandomRobinLookupStrategy.java b/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/RandomRobinLookupStrategy.java index f33329b..315052c 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/RandomRobinLookupStrategy.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/RandomRobinLookupStrategy.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 - 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/RoundRobinLookupStrategy.java b/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/RoundRobinLookupStrategy.java index 03523e7..6129c6b 100644 --- a/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/RoundRobinLookupStrategy.java +++ b/microservices/src/main/java/io/silverware/microservices/silver/services/lookup/RoundRobinLookupStrategy.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ * SilverWare - * - * Copyright (C) 2015 - 2016 the original author or authors. - * + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/util/BootUtil.java b/microservices/src/main/java/io/silverware/microservices/util/BootUtil.java index e8b8e7a..8a0c48a 100644 --- a/microservices/src/main/java/io/silverware/microservices/util/BootUtil.java +++ b/microservices/src/main/java/io/silverware/microservices/util/BootUtil.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/util/ClassLoaderUtil.java b/microservices/src/main/java/io/silverware/microservices/util/ClassLoaderUtil.java index f2bbf4e..e23f01e 100644 --- a/microservices/src/main/java/io/silverware/microservices/util/ClassLoaderUtil.java +++ b/microservices/src/main/java/io/silverware/microservices/util/ClassLoaderUtil.java @@ -1,3 +1,22 @@ +/* + * -----------------------------------------------------------------------\ + * SilverWare + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   + * Licensed 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 io.silverware.microservices.util; import org.apache.logging.log4j.LogManager; diff --git a/microservices/src/main/java/io/silverware/microservices/util/DeployStats.java b/microservices/src/main/java/io/silverware/microservices/util/DeployStats.java index b3cc639..4d9f36a 100644 --- a/microservices/src/main/java/io/silverware/microservices/util/DeployStats.java +++ b/microservices/src/main/java/io/silverware/microservices/util/DeployStats.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/util/DeploymentScanner.java b/microservices/src/main/java/io/silverware/microservices/util/DeploymentScanner.java index 3b20c9d..316421e 100644 --- a/microservices/src/main/java/io/silverware/microservices/util/DeploymentScanner.java +++ b/microservices/src/main/java/io/silverware/microservices/util/DeploymentScanner.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/util/Utils.java b/microservices/src/main/java/io/silverware/microservices/util/Utils.java index 2883aef..44b23a1 100644 --- a/microservices/src/main/java/io/silverware/microservices/util/Utils.java +++ b/microservices/src/main/java/io/silverware/microservices/util/Utils.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/main/java/io/silverware/microservices/util/VersionComparator.java b/microservices/src/main/java/io/silverware/microservices/util/VersionComparator.java index 52750e0..e78e4e9 100644 --- a/microservices/src/main/java/io/silverware/microservices/util/VersionComparator.java +++ b/microservices/src/main/java/io/silverware/microservices/util/VersionComparator.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ * SilverWare - * - * Copyright (C) 2015 - 2016 the original author or authors. - * + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   * Licensed 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. diff --git a/microservices/src/test/java/io/silverware/microservices/BootTest.java b/microservices/src/test/java/io/silverware/microservices/BootTest.java index f77d28a..586f4a3 100644 --- a/microservices/src/test/java/io/silverware/microservices/BootTest.java +++ b/microservices/src/test/java/io/silverware/microservices/BootTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/AbstractLookupStrategyTest.java b/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/AbstractLookupStrategyTest.java index 1d24579..400ef3a 100644 --- a/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/AbstractLookupStrategyTest.java +++ b/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/AbstractLookupStrategyTest.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ * SilverWare - * - * Copyright (C) 2015 - 2016 the original author or authors. - * + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   * Licensed 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. diff --git a/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/FirstFoundLocalLookupStrategyTest.java b/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/FirstFoundLocalLookupStrategyTest.java index f112ddd..29e28d5 100644 --- a/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/FirstFoundLocalLookupStrategyTest.java +++ b/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/FirstFoundLocalLookupStrategyTest.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ * SilverWare - * - * Copyright (C) 2015 - 2016 the original author or authors. - * + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   * Licensed 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. diff --git a/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/RandomRobinLookupStrategyTest.java b/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/RandomRobinLookupStrategyTest.java index daf1b3a..f562ffd 100644 --- a/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/RandomRobinLookupStrategyTest.java +++ b/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/RandomRobinLookupStrategyTest.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ * SilverWare - * - * Copyright (C) 2015 - 2016 the original author or authors. - * + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   * Licensed 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. diff --git a/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/RoundRobinLookupStrategyTest.java b/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/RoundRobinLookupStrategyTest.java index 24c507a..333cd34 100644 --- a/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/RoundRobinLookupStrategyTest.java +++ b/microservices/src/test/java/io/silverware/microservices/silver/services/lookup/RoundRobinLookupStrategyTest.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ * SilverWare - * - * Copyright (C) 2015 - 2016 the original author or authors. - * + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   * Licensed 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. diff --git a/microservices/src/test/java/io/silverware/microservices/util/VersionComparatorTest.java b/microservices/src/test/java/io/silverware/microservices/util/VersionComparatorTest.java index 4864e83..2a02672 100644 --- a/microservices/src/test/java/io/silverware/microservices/util/VersionComparatorTest.java +++ b/microservices/src/test/java/io/silverware/microservices/util/VersionComparatorTest.java @@ -1,15 +1,15 @@ /* * -----------------------------------------------------------------------\ * SilverWare - * - * Copyright (C) 2015 - 2016 the original author or authors. - * + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   * Licensed 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. diff --git a/monitoring-microservice-provider/src/main/java/io/silverware/microservices/providers/monitoring/MonitoringMicroserviceProvider.java b/monitoring-microservice-provider/src/main/java/io/silverware/microservices/providers/monitoring/MonitoringMicroserviceProvider.java index 52f04a8..79612e5 100644 --- a/monitoring-microservice-provider/src/main/java/io/silverware/microservices/providers/monitoring/MonitoringMicroserviceProvider.java +++ b/monitoring-microservice-provider/src/main/java/io/silverware/microservices/providers/monitoring/MonitoringMicroserviceProvider.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2015 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/monitoring-microservice-provider/src/test/java/io/silverware/microservices/providers/monitoring/MonitoringMicroserviceProviderTest.java b/monitoring-microservice-provider/src/test/java/io/silverware/microservices/providers/monitoring/MonitoringMicroserviceProviderTest.java index b720741..4af9f74 100644 --- a/monitoring-microservice-provider/src/test/java/io/silverware/microservices/providers/monitoring/MonitoringMicroserviceProviderTest.java +++ b/monitoring-microservice-provider/src/test/java/io/silverware/microservices/providers/monitoring/MonitoringMicroserviceProviderTest.java @@ -1,3 +1,22 @@ +/* + * -----------------------------------------------------------------------\ + * SilverWare + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   + * Licensed 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 io.silverware.microservices.providers.monitoring; import io.silverware.microservices.providers.http.HttpServerMicroserviceProvider; diff --git a/pom.xml b/pom.xml index a36e62d..b93862b 100644 --- a/pom.xml +++ b/pom.xml @@ -1,5 +1,5 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 io.silverware silverware-parent @@ -276,8 +276,11 @@ -----------------------------------------------------------------------/   + SilverWare the original author or authors. apache_v2 + true + 2015 src/main/java src/test/java diff --git a/rest-client-microservice-provider/src/main/java/io/silverware/microservices/providers/rest/RestClientMicroserviceProvider.java b/rest-client-microservice-provider/src/main/java/io/silverware/microservices/providers/rest/RestClientMicroserviceProvider.java index de7415d..1c5bc6f 100644 --- a/rest-client-microservice-provider/src/main/java/io/silverware/microservices/providers/rest/RestClientMicroserviceProvider.java +++ b/rest-client-microservice-provider/src/main/java/io/silverware/microservices/providers/rest/RestClientMicroserviceProvider.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/rest-client-microservice-provider/src/main/java/io/silverware/microservices/providers/rest/annotation/ServiceConfiguration.java b/rest-client-microservice-provider/src/main/java/io/silverware/microservices/providers/rest/annotation/ServiceConfiguration.java index 46268b7..8bf4b8a 100644 --- a/rest-client-microservice-provider/src/main/java/io/silverware/microservices/providers/rest/annotation/ServiceConfiguration.java +++ b/rest-client-microservice-provider/src/main/java/io/silverware/microservices/providers/rest/annotation/ServiceConfiguration.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/rest-client-microservice-provider/src/main/resources/META-INF/beans.xml b/rest-client-microservice-provider/src/main/resources/META-INF/beans.xml index e69de29..25aab64 100644 --- a/rest-client-microservice-provider/src/main/resources/META-INF/beans.xml +++ b/rest-client-microservice-provider/src/main/resources/META-INF/beans.xml @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/rest-client-microservice-provider/src/test/java/io/silverware/microservices/providers/rest/RestClientMicroserviceProviderTest.java b/rest-client-microservice-provider/src/test/java/io/silverware/microservices/providers/rest/RestClientMicroserviceProviderTest.java index ec24c6a..f5e38dc 100644 --- a/rest-client-microservice-provider/src/test/java/io/silverware/microservices/providers/rest/RestClientMicroserviceProviderTest.java +++ b/rest-client-microservice-provider/src/test/java/io/silverware/microservices/providers/rest/RestClientMicroserviceProviderTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. diff --git a/rest-client-microservice-provider/src/test/resources/META-INF/beans.xml b/rest-client-microservice-provider/src/test/resources/META-INF/beans.xml index e69de29..e10a85a 100644 --- a/rest-client-microservice-provider/src/test/resources/META-INF/beans.xml +++ b/rest-client-microservice-provider/src/test/resources/META-INF/beans.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/travis.sh b/travis.sh index 5bbf911..a77dda9 100755 --- a/travis.sh +++ b/travis.sh @@ -30,10 +30,10 @@ PING_LOOP_PID=$! # My build is using maven, but you could build anything with this, E.g. # your_build_command_1 >> $BUILD_OUTPUT 2>&1 # your_build_command_2 >> $BUILD_OUTPUT 2>&1 -mvn checkstyle::check install >> $BUILD_OUTPUT 2>&1 +mvn checkstyle::check license:check-file-header -Dlicense.licenseName=apache_v2 install >> $BUILD_OUTPUT 2>&1 # The build finished without returning an error so dump a tail of the output dump_output # nicely terminate the ping output loop -kill $PING_LOOP_PID \ No newline at end of file +kill $PING_LOOP_PID diff --git a/vertx-microservice-provider/src/main/java/io/silverware/microservices/annotations/Deployment.java b/vertx-microservice-provider/src/main/java/io/silverware/microservices/annotations/Deployment.java index 2c76476..7601f2b 100644 --- a/vertx-microservice-provider/src/main/java/io/silverware/microservices/annotations/Deployment.java +++ b/vertx-microservice-provider/src/main/java/io/silverware/microservices/annotations/Deployment.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.annotations; import io.silverware.microservices.enums.VerticleType; diff --git a/vertx-microservice-provider/src/main/java/io/silverware/microservices/enums/VerticleType.java b/vertx-microservice-provider/src/main/java/io/silverware/microservices/enums/VerticleType.java index 1e950a8..93ec3dc 100644 --- a/vertx-microservice-provider/src/main/java/io/silverware/microservices/enums/VerticleType.java +++ b/vertx-microservice-provider/src/main/java/io/silverware/microservices/enums/VerticleType.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.enums; /** diff --git a/vertx-microservice-provider/src/main/java/io/silverware/microservices/providers/vertx/VertxMicroserviceProvider.java b/vertx-microservice-provider/src/main/java/io/silverware/microservices/providers/vertx/VertxMicroserviceProvider.java index a793055..7537009 100644 --- a/vertx-microservice-provider/src/main/java/io/silverware/microservices/providers/vertx/VertxMicroserviceProvider.java +++ b/vertx-microservice-provider/src/main/java/io/silverware/microservices/providers/vertx/VertxMicroserviceProvider.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.providers.vertx; import io.silverware.microservices.Context; diff --git a/vertx-microservice-provider/src/main/java/io/silverware/microservices/utils/VertxConstants.java b/vertx-microservice-provider/src/main/java/io/silverware/microservices/utils/VertxConstants.java index ca81c3f..1a81189 100644 --- a/vertx-microservice-provider/src/main/java/io/silverware/microservices/utils/VertxConstants.java +++ b/vertx-microservice-provider/src/main/java/io/silverware/microservices/utils/VertxConstants.java @@ -1,3 +1,22 @@ +/* + * -----------------------------------------------------------------------\ + * SilverWare + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   + * Licensed 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 io.silverware.microservices.utils; /** diff --git a/vertx-microservice-provider/src/main/java/io/silverware/microservices/utils/VertxUtils.java b/vertx-microservice-provider/src/main/java/io/silverware/microservices/utils/VertxUtils.java index 4065c3f..674e4bc 100644 --- a/vertx-microservice-provider/src/main/java/io/silverware/microservices/utils/VertxUtils.java +++ b/vertx-microservice-provider/src/main/java/io/silverware/microservices/utils/VertxUtils.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.utils; import io.silverware.microservices.annotations.Deployment; diff --git a/vertx-microservice-provider/src/main/resources/forbidden-verticles.xml b/vertx-microservice-provider/src/main/resources/forbidden-verticles.xml index e5234f7..ca18700 100644 --- a/vertx-microservice-provider/src/main/resources/forbidden-verticles.xml +++ b/vertx-microservice-provider/src/main/resources/forbidden-verticles.xml @@ -1,5 +1,4 @@ - io.vertx.core.AbstractVerticle diff --git a/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/DeploymentAnnotationTest.java b/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/DeploymentAnnotationTest.java index 58bcfda..0fb4f8b 100644 --- a/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/DeploymentAnnotationTest.java +++ b/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/DeploymentAnnotationTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.providers.vertx; import io.silverware.microservices.annotations.Deployment; diff --git a/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/VerticleDeploymentTest.java b/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/VerticleDeploymentTest.java index fc77a0b..e71de2c 100644 --- a/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/VerticleDeploymentTest.java +++ b/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/VerticleDeploymentTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.providers.vertx; import io.silverware.microservices.providers.cdi.CdiMicroserviceProvider; diff --git a/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/VertxMicroserviceCDITest.java b/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/VertxMicroserviceCDITest.java index a733aae..6a9fb6c 100644 --- a/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/VertxMicroserviceCDITest.java +++ b/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/VertxMicroserviceCDITest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.providers.vertx; import io.silverware.microservices.annotations.Microservice; diff --git a/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/VertxMicroserviceProviderTestUtil.java b/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/VertxMicroserviceProviderTestUtil.java index 8a3b47a..fd3e371 100644 --- a/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/VertxMicroserviceProviderTestUtil.java +++ b/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/VertxMicroserviceProviderTestUtil.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.providers.vertx; import io.silverware.microservices.providers.cdi.CdiMicroserviceProvider; diff --git a/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/XMLConfigTest.java b/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/XMLConfigTest.java index 8ac6a19..671a5f6 100644 --- a/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/XMLConfigTest.java +++ b/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/XMLConfigTest.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.providers.vertx; import io.silverware.microservices.providers.cdi.CdiMicroserviceProvider; diff --git a/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/verticle/MyGroovyVerticle.groovy b/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/verticle/MyGroovyVerticle.groovy index 66a8793..d749758 100644 --- a/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/verticle/MyGroovyVerticle.groovy +++ b/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/verticle/MyGroovyVerticle.groovy @@ -1,3 +1,22 @@ +/* + * -----------------------------------------------------------------------\ + * SilverWare + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   + * Licensed 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 io.silverware.microservices.providers.vertx.verticle import io.vertx.core.logging.LoggerFactory diff --git a/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/verticle/TestVerticle.java b/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/verticle/TestVerticle.java index 2af2cf3..3d4aa54 100644 --- a/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/verticle/TestVerticle.java +++ b/vertx-microservice-provider/src/test/java/io/silverware/microservices/providers/vertx/verticle/TestVerticle.java @@ -2,14 +2,14 @@ * -----------------------------------------------------------------------\ * SilverWare *   - * Copyright (C) 2016 the original author or authors. + * Copyright (C) 2015 - 2017 the original author or authors. *   * Licensed 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. @@ -17,7 +17,6 @@ * limitations under the License. * -----------------------------------------------------------------------/ */ - package io.silverware.microservices.providers.vertx.verticle; import io.silverware.microservices.providers.vertx.VerticleDeploymentTest; diff --git a/vertx-microservice-provider/src/test/resources/example.json b/vertx-microservice-provider/src/test/resources/example.json index ea5531e..146c57e 100644 --- a/vertx-microservice-provider/src/test/resources/example.json +++ b/vertx-microservice-provider/src/test/resources/example.json @@ -1,3 +1,22 @@ +/* + * #%L + * SilverWare + *   + * Copyright (C) 2015 - 2017 the original author or authors. + *   + * Licensed 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. + * #L% + */ { "foo": "FOO", "bar": "BaR" diff --git a/vertx-microservice-provider/src/test/resources/vertx-config.xml b/vertx-microservice-provider/src/test/resources/vertx-config.xml index 77dd665..eab1990 100644 --- a/vertx-microservice-provider/src/test/resources/vertx-config.xml +++ b/vertx-microservice-provider/src/test/resources/vertx-config.xml @@ -1,5 +1,4 @@ - javascriptVerticle.js