From 3a0029ecee0150c37a8ae1df68a19d5baae23faf Mon Sep 17 00:00:00 2001 From: Arnold Schrijver Date: Mon, 25 Jul 2016 00:33:53 +0200 Subject: [PATCH] Bumped to initial release versin 0.9.0 Signed-off-by: Arnold Schrijver --- README.md | 8 +++---- build.gradle | 2 +- .../server/droids/DroidsData.java | 18 ++++++++++++++ .../server/droids/DroidsSchema.java | 24 +++++++++++++++++++ .../server/droids/DroidsServer.java | 21 ++++++++++++++++ .../server/utils/MapBuilder.java | 2 +- .../client/StarWarsClient.java | 21 ++++++++++++++++ .../server/starwars/HumanData.java | 18 ++++++++++++++ .../server/starwars/StarWarsSchema.java | 20 ++++++++++++++++ .../server/starwars/StarWarsServer.java | 21 ++++++++++++++++ .../server/utils/MapBuilder.java | 2 +- .../graphql/client/GraphQLClient.java | 2 +- .../graphql/consumer/DiscoveryRegistrar.java | 2 +- .../consumer/DiscoveryRegistration.java | 2 +- .../graphql/consumer/SchemaConsumer.java | 2 +- .../graphql/package-info.java | 3 +++ .../graphql/client/GraphQLClientTest.java | 2 +- .../consumer/DiscoveryRegistrarTest.java | 2 +- .../consumer/DiscoveryRegistrationTest.java | 2 +- .../graphql/consumer/SchemaConsumerTest.java | 2 +- .../graphql/discovery/Registrar.java | 2 +- .../graphql/discovery/Registration.java | 2 +- .../discovery/impl/AbstractRegistrar.java | 2 +- .../discovery/impl/AbstractRegistration.java | 2 +- .../impl/ManagedServiceDiscovery.java | 4 ++-- .../graphql/events/SchemaAnnounceHandler.java | 2 +- .../events/SchemaPublishedHandler.java | 2 +- .../graphql/events/SchemaReferenceData.java | 2 +- .../events/SchemaUnpublishedHandler.java | 2 +- .../graphql/events/SchemaUsageHandler.java | 2 +- .../events/impl/SchemaMessageConsumers.java | 2 +- .../graphql/package-info.java | 3 +++ .../graphql/query/QueryResult.java | 2 +- .../graphql/query/Queryable.java | 2 +- .../discovery/impl/AbstractRegistrarTest.java | 2 +- .../impl/AbstractRegistrationTest.java | 2 +- .../events/SchemaReferenceDataTest.java | 2 +- .../impl/SchemaMessageConsumersTest.java | 2 +- .../graphql/query/QueryResultTest.java | 2 +- .../graphql/package-info.java | 3 +++ .../publisher/PartialPublishException.java | 2 +- .../graphql/publisher/SchemaDefinition.java | 2 +- .../graphql/publisher/SchemaPublisher.java | 2 +- .../graphql/publisher/SchemaRegistrar.java | 2 +- .../graphql/publisher/SchemaRegistration.java | 2 +- .../graphql/service/GraphQLService.java | 2 +- .../service/impl/GraphQLServiceImpl.java | 2 +- .../graphql/data/DroidsSchema.java | 2 +- .../graphql/data/StarWarsSchema.java | 2 +- .../PartialPublishExceptionTest.java | 2 +- .../publisher/SchemaPublisherTest.java | 2 +- .../publisher/SchemaRegistrarTest.java | 2 +- .../graphql/service/GraphQLServiceTest.java | 2 +- .../service/impl/GraphQLServiceImplTest.java | 2 +- .../graphql/utils/MapBuilder.java | 2 +- 55 files changed, 201 insertions(+), 49 deletions(-) diff --git a/README.md b/README.md index df8405e..9887c18 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ repositories { } dependencies { - compile 'io.engagingspaces:vertx-graphql-publisher:0.8.2' + compile 'io.engagingspaces:vertx-graphql-publisher:0.9.0' } ``` Consumers of a published GraphQL service that want to execute queries need a dependency on `vertx-graphql-consumer`: @@ -127,7 +127,7 @@ repositories { } dependencies { - compile 'io.engagingspaces:vertx-graphql-consumer:0.8.2' + compile 'io.engagingspaces:vertx-graphql-consumer:0.9.0' } ``` ### Using with Maven @@ -178,7 +178,7 @@ When using Maven a publisher of a GraphQL schema needs to add the following depe io.engagingspaces graphql-publisher - 0.8.2 + 0.9.0 ``` And consumers of a GraphQL service need to add the `vertx-graphql-consumer` dependency to their `pom.xml`: @@ -186,7 +186,7 @@ And consumers of a GraphQL service need to add the `vertx-graphql-consumer` depe io.engagingspaces graphql-publisher - 0.8.2 + 0.9.0 ``` diff --git a/build.gradle b/build.gradle index 5e96768..5d9245c 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { } group = 'io.engagingspaces' - version = '0.8.2' + version = '0.9.0' sourceCompatibility = 1.8 archivesBaseName = "vertx-$name-$rootProject.version" } diff --git a/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/droids/DroidsData.java b/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/droids/DroidsData.java index 36f1479..89aa884 100644 --- a/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/droids/DroidsData.java +++ b/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/droids/DroidsData.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2016 The original author or authors + * + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * and Apache License v2.0 which accompanies this distribution. + * + * The Eclipse Public License is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * The Apache License v2.0 is available at + * http://www.opensource.org/licenses/apache2.0.php + * + * You may elect to redistribute this code under either of these licenses. + */ + package org.example.servicediscovery.server.droids; import graphql.schema.DataFetcher; @@ -14,6 +30,8 @@ /** * Test data converted from: * https://github.com/graphql-java/graphql-java/blob/master/src/test/groovy/graphql/StarWarsData.groovy + * + * @author Arnold Schrijver */ public interface DroidsData { diff --git a/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/droids/DroidsSchema.java b/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/droids/DroidsSchema.java index 6b92d3f..6bdd5c3 100644 --- a/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/droids/DroidsSchema.java +++ b/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/droids/DroidsSchema.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2016 The original author or authors + * + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * and Apache License v2.0 which accompanies this distribution. + * + * The Eclipse Public License is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * The Apache License v2.0 is available at + * http://www.opensource.org/licenses/apache2.0.php + * + * You may elect to redistribute this code under either of these licenses. + */ + package org.example.servicediscovery.server.droids; import graphql.schema.*; @@ -10,6 +26,14 @@ import static graphql.schema.GraphQLInterfaceType.newInterface; import static graphql.schema.GraphQLObjectType.newObject; +/** + * Example code demonstrating a schema definition that exposes a GraphQL schema. + *

+ * Test schema adapted from: + * https://github.com/graphql-java/graphql-java/blob/master/src/test/groovy/graphql/StarWarsSchema.java + * + * @author Arnold Schrijver + */ public class DroidsSchema implements SchemaDefinition { public static DroidsSchema get() { diff --git a/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/droids/DroidsServer.java b/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/droids/DroidsServer.java index 4e68441..e8dc8ef 100644 --- a/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/droids/DroidsServer.java +++ b/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/droids/DroidsServer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2016 The original author or authors + * + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * and Apache License v2.0 which accompanies this distribution. + * + * The Eclipse Public License is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * The Apache License v2.0 is available at + * http://www.opensource.org/licenses/apache2.0.php + * + * You may elect to redistribute this code under either of these licenses. + */ + package org.example.servicediscovery.server.droids; import io.engagingspaces.servicediscovery.graphql.publisher.SchemaPublisher; @@ -9,6 +25,11 @@ import io.vertx.core.logging.LoggerFactory; import io.vertx.servicediscovery.ServiceDiscoveryOptions; +/** + * Example code demonstrating a a Vert.x verticle that also functions as a schema publisher. + * + * @author Arnold Schrijver + */ public class DroidsServer extends AbstractVerticle implements SchemaPublisher { private static final Logger LOG = LoggerFactory.getLogger(DroidsServer.class); diff --git a/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/utils/MapBuilder.java b/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/utils/MapBuilder.java index d989a77..535df62 100644 --- a/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/utils/MapBuilder.java +++ b/examples/droids-microservice/src/main/java/org/example/servicediscovery/server/utils/MapBuilder.java @@ -26,7 +26,7 @@ /** * Adapted from: http://minborgsjavapot.blogspot.nl/2014/12/java-8-initializing-maps-in-smartest-way.html * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class MapBuilder { diff --git a/examples/starwars-client/src/main/java/org/example/servicediscovery/client/StarWarsClient.java b/examples/starwars-client/src/main/java/org/example/servicediscovery/client/StarWarsClient.java index ec2f103..ae6b81f 100644 --- a/examples/starwars-client/src/main/java/org/example/servicediscovery/client/StarWarsClient.java +++ b/examples/starwars-client/src/main/java/org/example/servicediscovery/client/StarWarsClient.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2016 The original author or authors + * + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * and Apache License v2.0 which accompanies this distribution. + * + * The Eclipse Public License is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * The Apache License v2.0 is available at + * http://www.opensource.org/licenses/apache2.0.php + * + * You may elect to redistribute this code under either of these licenses. + */ + package org.example.servicediscovery.client; import io.engagingspaces.servicediscovery.graphql.client.GraphQLClient; @@ -21,6 +37,11 @@ import static org.example.servicediscovery.client.StarWarsClient.AuthLevel.DROIDS; import static org.example.servicediscovery.client.StarWarsClient.AuthLevel.HUMANS; +/** + * Example code demonstrating a a Vert.x verticle that also functions as a schema consumer. + * + * @author Arnold Schrijver + */ public class StarWarsClient extends AbstractVerticle implements SchemaConsumer { public enum AuthLevel { diff --git a/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/starwars/HumanData.java b/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/starwars/HumanData.java index 5cdfb22..182e998 100644 --- a/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/starwars/HumanData.java +++ b/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/starwars/HumanData.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2016 The original author or authors + * + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * and Apache License v2.0 which accompanies this distribution. + * + * The Eclipse Public License is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * The Apache License v2.0 is available at + * http://www.opensource.org/licenses/apache2.0.php + * + * You may elect to redistribute this code under either of these licenses. + */ + package org.example.servicediscovery.server.starwars; import graphql.schema.DataFetcher; @@ -15,6 +31,8 @@ /** * Test data converted from: * https://github.com/graphql-java/graphql-java/blob/master/src/test/groovy/graphql/StarWarsData.groovy + * + * @author Arnold Schrijver */ public interface HumanData { diff --git a/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/starwars/StarWarsSchema.java b/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/starwars/StarWarsSchema.java index 489e475..0a0dfd1 100644 --- a/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/starwars/StarWarsSchema.java +++ b/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/starwars/StarWarsSchema.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2016 The original author or authors + * + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * and Apache License v2.0 which accompanies this distribution. + * + * The Eclipse Public License is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * The Apache License v2.0 is available at + * http://www.opensource.org/licenses/apache2.0.php + * + * You may elect to redistribute this code under either of these licenses. + */ + package org.example.servicediscovery.server.starwars; import graphql.schema.*; @@ -11,8 +27,12 @@ import static graphql.schema.GraphQLObjectType.newObject; /** + * Example code demonstrating a schema definition that exposes a GraphQL schema. + *

* Test schema adapted from: * https://github.com/graphql-java/graphql-java/blob/master/src/test/groovy/graphql/StarWarsSchema.java + * + * @author Arnold Schrijver */ public class StarWarsSchema implements SchemaDefinition { diff --git a/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/starwars/StarWarsServer.java b/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/starwars/StarWarsServer.java index 36c13e1..96c5bf3 100644 --- a/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/starwars/StarWarsServer.java +++ b/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/starwars/StarWarsServer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2016 The original author or authors + * + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * and Apache License v2.0 which accompanies this distribution. + * + * The Eclipse Public License is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * The Apache License v2.0 is available at + * http://www.opensource.org/licenses/apache2.0.php + * + * You may elect to redistribute this code under either of these licenses. + */ + package org.example.servicediscovery.server.starwars; import io.engagingspaces.servicediscovery.graphql.publisher.SchemaPublisher; @@ -9,6 +25,11 @@ import io.vertx.core.logging.LoggerFactory; import io.vertx.servicediscovery.ServiceDiscoveryOptions; +/** + * Example code demonstrating a a Vert.x verticle that also functions as a schema publisher. + * + * @author Arnold Schrijver + */ public class StarWarsServer extends AbstractVerticle implements SchemaPublisher { private static final Logger LOG = LoggerFactory.getLogger(StarWarsServer.class); diff --git a/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/utils/MapBuilder.java b/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/utils/MapBuilder.java index d989a77..535df62 100644 --- a/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/utils/MapBuilder.java +++ b/examples/starwars-microservice/src/main/java/org/example/servicediscovery/server/utils/MapBuilder.java @@ -26,7 +26,7 @@ /** * Adapted from: http://minborgsjavapot.blogspot.nl/2014/12/java-8-initializing-maps-in-smartest-way.html * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class MapBuilder { diff --git a/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/client/GraphQLClient.java b/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/client/GraphQLClient.java index e3e7b83..e5b7ae0 100644 --- a/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/client/GraphQLClient.java +++ b/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/client/GraphQLClient.java @@ -35,7 +35,7 @@ /** * Client for consuming GraphQL services. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @VertxGen public interface GraphQLClient { diff --git a/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistrar.java b/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistrar.java index 949e2d1..ba44f2a 100644 --- a/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistrar.java +++ b/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistrar.java @@ -28,7 +28,7 @@ /** * Manages {@link ServiceDiscovery} creation, and registration of discovery events. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class DiscoveryRegistrar extends AbstractRegistrar { diff --git a/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistration.java b/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistration.java index 389fdce..b62e2e9 100644 --- a/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistration.java +++ b/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistration.java @@ -24,7 +24,7 @@ * Registration for tracking service discovery events of a * registered {@link ServiceDiscovery}. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class DiscoveryRegistration extends AbstractRegistration { diff --git a/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/consumer/SchemaConsumer.java b/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/consumer/SchemaConsumer.java index 3b9c3f1..decff32 100644 --- a/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/consumer/SchemaConsumer.java +++ b/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/consumer/SchemaConsumer.java @@ -41,7 +41,7 @@ *

* Service discovery instances are automatically created and closed when needed. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public interface SchemaConsumer extends SchemaAnnounceHandler, SchemaUsageHandler { diff --git a/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/package-info.java b/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/package-info.java index 8228bfd..c447a5b 100644 --- a/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/package-info.java +++ b/graphql-consumer/src/main/java/io/engagingspaces/servicediscovery/graphql/package-info.java @@ -14,6 +14,9 @@ * You may elect to redistribute this code under either of these licenses. */ +/** + * @author Arnold Schrijver + */ @ModuleGen(name="vertx-graphql-service-consumer", groupPackage = "io.engagingspaces") package io.engagingspaces.servicediscovery.graphql; diff --git a/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/client/GraphQLClientTest.java b/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/client/GraphQLClientTest.java index 3e0ca6b..e5469dd 100644 --- a/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/client/GraphQLClientTest.java +++ b/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/client/GraphQLClientTest.java @@ -41,7 +41,7 @@ /** * Tests for the {@link GraphQLClient}. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @RunWith(VertxUnitRunner.class) public class GraphQLClientTest { diff --git a/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistrarTest.java b/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistrarTest.java index efc39ba..0017cd8 100644 --- a/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistrarTest.java +++ b/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistrarTest.java @@ -38,7 +38,7 @@ /** * Tests for discovery registrar. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @RunWith(VertxUnitRunner.class) public class DiscoveryRegistrarTest { diff --git a/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistrationTest.java b/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistrationTest.java index a30711a..e848dc7 100644 --- a/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistrationTest.java +++ b/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/consumer/DiscoveryRegistrationTest.java @@ -29,7 +29,7 @@ /** * Tests for the discovery registration class. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class DiscoveryRegistrationTest { diff --git a/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/consumer/SchemaConsumerTest.java b/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/consumer/SchemaConsumerTest.java index 7d818ce..bda3cc7 100644 --- a/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/consumer/SchemaConsumerTest.java +++ b/graphql-consumer/src/test/java/io/engagingspaces/servicediscovery/graphql/consumer/SchemaConsumerTest.java @@ -40,7 +40,7 @@ /** * Tests for the {@link SchemaConsumer}. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @RunWith(VertxUnitRunner.class) public class SchemaConsumerTest { diff --git a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/Registrar.java b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/Registrar.java index 994d0be..47dccfc 100644 --- a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/Registrar.java +++ b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/Registrar.java @@ -24,7 +24,7 @@ /** * Interface for registrar implementations. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public interface Registrar { diff --git a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/Registration.java b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/Registration.java index 75e8f97..07eddd1 100644 --- a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/Registration.java +++ b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/Registration.java @@ -22,7 +22,7 @@ /** * Interface for registrations managed by a particular {@link Registrar}. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public interface Registration { diff --git a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistrar.java b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistrar.java index 0e6fe49..85eafd2 100644 --- a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistrar.java +++ b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistrar.java @@ -29,7 +29,7 @@ /** * Base class for registrars. * - * @author Arnold Schrijver + * @author Arnold Schrijver * @param the registration type to use */ public abstract class AbstractRegistrar implements Registrar { diff --git a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistration.java b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistration.java index 5e92750..d93c3ce 100644 --- a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistration.java +++ b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistration.java @@ -25,7 +25,7 @@ /** * Base class for registration types. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class AbstractRegistration implements Registration { diff --git a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/ManagedServiceDiscovery.java b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/ManagedServiceDiscovery.java index e16d0d0..0df8776 100644 --- a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/ManagedServiceDiscovery.java +++ b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/ManagedServiceDiscovery.java @@ -39,7 +39,7 @@ * {@link ServiceDiscovery#close()} to a {@link Registrar} and * forwards all other method calls to the wrapped service discovery instance. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ class ManagedServiceDiscovery implements ServiceDiscovery { @@ -75,7 +75,7 @@ public static T of(ServiceDiscovery discovery, Acti * * @param managedDiscovery the managed discovery */ - static void closeUnmanaged(ManagedServiceDiscovery managedDiscovery) { + protected static void closeUnmanaged(ManagedServiceDiscovery managedDiscovery) { managedDiscovery.unmanagedDiscoveryInstance.close(); } diff --git a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaAnnounceHandler.java b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaAnnounceHandler.java index 1e6e1cb..48f4dfb 100644 --- a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaAnnounceHandler.java +++ b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaAnnounceHandler.java @@ -21,7 +21,7 @@ /** * Event handler that is invoked when a schema has been published or un-published. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @FunctionalInterface public interface SchemaAnnounceHandler { diff --git a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaPublishedHandler.java b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaPublishedHandler.java index d038f87..b410ee5 100644 --- a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaPublishedHandler.java +++ b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaPublishedHandler.java @@ -21,7 +21,7 @@ /** * Event handler that is invoked on publishers, when a new schema definition has been published. * - * @author Arnold Schrijver + * @author Arnold Schrijver * @param the registration type of the event data */ @FunctionalInterface diff --git a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaReferenceData.java b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaReferenceData.java index bb475af..711a33e 100644 --- a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaReferenceData.java +++ b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaReferenceData.java @@ -24,7 +24,7 @@ * Immutable data object that represents the state of a {@link io.vertx.servicediscovery.ServiceReference} when a * service discovery `usage` event occurs that matches a published schema. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @DataObject public class SchemaReferenceData { diff --git a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaUnpublishedHandler.java b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaUnpublishedHandler.java index 64c8e2e..9734007 100644 --- a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaUnpublishedHandler.java +++ b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaUnpublishedHandler.java @@ -21,7 +21,7 @@ /** * Event handler that is invoked on publishers, when one of its published schema's is unpublished. * - * @author Arnold Schrijver + * @author Arnold Schrijver * @param the registration type of the event data */ @FunctionalInterface diff --git a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaUsageHandler.java b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaUsageHandler.java index d9cec78..c968bb1 100644 --- a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaUsageHandler.java +++ b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/SchemaUsageHandler.java @@ -19,7 +19,7 @@ /** * Event handler that is invoked after a schema reference has been bound or released. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @FunctionalInterface public interface SchemaUsageHandler { diff --git a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/impl/SchemaMessageConsumers.java b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/impl/SchemaMessageConsumers.java index 3d4649f..eee0df1 100644 --- a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/impl/SchemaMessageConsumers.java +++ b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/events/impl/SchemaMessageConsumers.java @@ -33,7 +33,7 @@ /** * Internal class for managing message consumers. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class SchemaMessageConsumers { diff --git a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/package-info.java b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/package-info.java index 82f234a..baaecab 100644 --- a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/package-info.java +++ b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/package-info.java @@ -14,6 +14,9 @@ * You may elect to redistribute this code under either of these licenses. */ +/** + * @author Arnold Schrijver + */ @ModuleGen(name="vertx-graphql-service-core", groupPackage = "io.engagingspaces") package io.engagingspaces.servicediscovery.graphql; diff --git a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/query/QueryResult.java b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/query/QueryResult.java index c4b7e8f..c8ea53a 100644 --- a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/query/QueryResult.java +++ b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/query/QueryResult.java @@ -29,7 +29,7 @@ * If the query was successful the response is available as {@link JsonObject}. Otherwise a list of * {@link QueryError} provides more detail on the failure. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @DataObject public class QueryResult { diff --git a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/query/Queryable.java b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/query/Queryable.java index ccf3179..fcd5b57 100644 --- a/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/query/Queryable.java +++ b/graphql-core/src/main/java/io/engagingspaces/servicediscovery/graphql/query/Queryable.java @@ -28,7 +28,7 @@ /** * Service proxy interface that provides access to the schema definitions that are exposed by a GraphQL publisher. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @ProxyGen public interface Queryable { diff --git a/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistrarTest.java b/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistrarTest.java index 8aaa273..82e27d5 100644 --- a/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistrarTest.java +++ b/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistrarTest.java @@ -32,7 +32,7 @@ /** * Tests for the abstract registrar base class. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @RunWith(VertxUnitRunner.class) public class AbstractRegistrarTest { diff --git a/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistrationTest.java b/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistrationTest.java index 8fbf0d5..1e1ea74 100644 --- a/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistrationTest.java +++ b/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/discovery/impl/AbstractRegistrationTest.java @@ -29,7 +29,7 @@ /** * Tests for the abstract registration base class. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class AbstractRegistrationTest { diff --git a/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/events/SchemaReferenceDataTest.java b/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/events/SchemaReferenceDataTest.java index e2a02d4..6861b1e 100644 --- a/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/events/SchemaReferenceDataTest.java +++ b/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/events/SchemaReferenceDataTest.java @@ -25,7 +25,7 @@ /** * Tests for the {@link SchemaReferenceData} data object. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class SchemaReferenceDataTest { diff --git a/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/events/impl/SchemaMessageConsumersTest.java b/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/events/impl/SchemaMessageConsumersTest.java index 7206be9..e592689 100644 --- a/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/events/impl/SchemaMessageConsumersTest.java +++ b/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/events/impl/SchemaMessageConsumersTest.java @@ -31,7 +31,7 @@ /** * Tests for the schema message consumers helper class. - * @author Arnold Schrijver + * @author Arnold Schrijver */ @RunWith(VertxUnitRunner.class) public class SchemaMessageConsumersTest { diff --git a/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/query/QueryResultTest.java b/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/query/QueryResultTest.java index c4107ac..8e3aa8b 100644 --- a/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/query/QueryResultTest.java +++ b/graphql-core/src/test/java/io/engagingspaces/servicediscovery/graphql/query/QueryResultTest.java @@ -37,7 +37,7 @@ /** * Tests for the query results data object. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @RunWith(VertxUnitRunner.class) public class QueryResultTest { diff --git a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/package-info.java b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/package-info.java index f64cd5d..f37a36d 100644 --- a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/package-info.java +++ b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/package-info.java @@ -14,6 +14,9 @@ * You may elect to redistribute this code under either of these licenses. */ +/** + * @author Arnold Schrijver + */ @ModuleGen(name="vertx-graphql-service-publisher", groupPackage = "io.engagingspaces") package io.engagingspaces.servicediscovery.graphql; diff --git a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/PartialPublishException.java b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/PartialPublishException.java index 30130cd..60de1a8 100644 --- a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/PartialPublishException.java +++ b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/PartialPublishException.java @@ -25,7 +25,7 @@ * This exception can be used to determine which schema definitions failed, re-publish them, or rollback by * un-publishing schema's that were successful in the publishing operation. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public final class PartialPublishException extends RuntimeException { diff --git a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaDefinition.java b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaDefinition.java index c2cb061..703fb1d 100644 --- a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaDefinition.java +++ b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaDefinition.java @@ -35,7 +35,7 @@ /** * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public interface SchemaDefinition extends Queryable { diff --git a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaPublisher.java b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaPublisher.java index 8710fb1..09332bf 100644 --- a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaPublisher.java +++ b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaPublisher.java @@ -38,7 +38,7 @@ *

* Service discovery instances are automatically created and closed as needed. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public interface SchemaPublisher extends SchemaPublishedHandler, SchemaUnpublishedHandler { diff --git a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaRegistrar.java b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaRegistrar.java index 70f3946..347b7ac 100644 --- a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaRegistrar.java +++ b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaRegistrar.java @@ -38,7 +38,7 @@ /** * Manages {@link ServiceDiscovery} creation, schema registration and schema events. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class SchemaRegistrar extends AbstractRegistrar { diff --git a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaRegistration.java b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaRegistration.java index b1f3257..b89f583 100644 --- a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaRegistration.java +++ b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaRegistration.java @@ -32,7 +32,7 @@ /** * Registration tracking publication state of a registered {@link SchemaDefinition}. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class SchemaRegistration extends AbstractRegistration { diff --git a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/service/GraphQLService.java b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/service/GraphQLService.java index aaa633f..8066237 100644 --- a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/service/GraphQLService.java +++ b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/service/GraphQLService.java @@ -40,7 +40,7 @@ * {@link ServiceType} for GraphQL services. * Consumers receive a suitable service proxy to handle GraphQL queries and mutations. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public interface GraphQLService extends ServiceType { diff --git a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/service/impl/GraphQLServiceImpl.java b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/service/impl/GraphQLServiceImpl.java index 39f19cc..0cba5b2 100644 --- a/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/service/impl/GraphQLServiceImpl.java +++ b/graphql-publisher/src/main/java/io/engagingspaces/servicediscovery/graphql/service/impl/GraphQLServiceImpl.java @@ -30,7 +30,7 @@ /** * Implementation of the {@link GraphQLService} interface. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class GraphQLServiceImpl implements GraphQLService { diff --git a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/data/DroidsSchema.java b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/data/DroidsSchema.java index dc491bb..af7764b 100644 --- a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/data/DroidsSchema.java +++ b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/data/DroidsSchema.java @@ -30,7 +30,7 @@ * Test schema adapted from: * https://github.com/graphql-java/graphql-java/blob/master/src/test/groovy/graphql/StarWarsSchema.java * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class DroidsSchema implements SchemaDefinition { diff --git a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/data/StarWarsSchema.java b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/data/StarWarsSchema.java index a35c336..fd2fd97 100644 --- a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/data/StarWarsSchema.java +++ b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/data/StarWarsSchema.java @@ -30,7 +30,7 @@ * Test schema adapted from: * https://github.com/graphql-java/graphql-java/blob/master/src/test/groovy/graphql/StarWarsSchema.java * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class StarWarsSchema implements SchemaDefinition { diff --git a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/publisher/PartialPublishExceptionTest.java b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/publisher/PartialPublishExceptionTest.java index 785587f..5f3bd25 100644 --- a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/publisher/PartialPublishExceptionTest.java +++ b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/publisher/PartialPublishExceptionTest.java @@ -27,7 +27,7 @@ /** * Tests for partial publish exception. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class PartialPublishExceptionTest { diff --git a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaPublisherTest.java b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaPublisherTest.java index 5ac98bd..4e3fefb 100644 --- a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaPublisherTest.java +++ b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaPublisherTest.java @@ -35,7 +35,7 @@ /** * Tests for schema publisher interface default implementation. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @RunWith(VertxUnitRunner.class) public class SchemaPublisherTest { diff --git a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaRegistrarTest.java b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaRegistrarTest.java index 2143137..78c370f 100644 --- a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaRegistrarTest.java +++ b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/publisher/SchemaRegistrarTest.java @@ -35,7 +35,7 @@ /** * Tests for schema registrar class. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @RunWith(VertxUnitRunner.class) public class SchemaRegistrarTest { diff --git a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/service/GraphQLServiceTest.java b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/service/GraphQLServiceTest.java index cb71c06..bc9b7aa 100644 --- a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/service/GraphQLServiceTest.java +++ b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/service/GraphQLServiceTest.java @@ -42,7 +42,7 @@ /** * Tests for graphql service interface static members. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @RunWith(VertxUnitRunner.class) public class GraphQLServiceTest { diff --git a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/service/impl/GraphQLServiceImplTest.java b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/service/impl/GraphQLServiceImplTest.java index 101a213..1271f6e 100644 --- a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/service/impl/GraphQLServiceImplTest.java +++ b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/service/impl/GraphQLServiceImplTest.java @@ -34,7 +34,7 @@ /** * Tests for graphql service type implementation class. * - * @author Arnold Schrijver + * @author Arnold Schrijver */ @RunWith(VertxUnitRunner.class) public class GraphQLServiceImplTest { diff --git a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/utils/MapBuilder.java b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/utils/MapBuilder.java index a6dbde4..c58ec08 100644 --- a/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/utils/MapBuilder.java +++ b/graphql-publisher/src/test/java/io/engagingspaces/servicediscovery/graphql/utils/MapBuilder.java @@ -26,7 +26,7 @@ /** * Adapted from: http://minborgsjavapot.blogspot.nl/2014/12/java-8-initializing-maps-in-smartest-way.html * - * @author Arnold Schrijver + * @author Arnold Schrijver */ public class MapBuilder {