Skip to content

Commit

Permalink
namespace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Konyx committed Jan 3, 2025
1 parent 4133e05 commit fc4fa6a
Show file tree
Hide file tree
Showing 219 changed files with 677 additions and 731 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: set name
run: |
git config --global user.name "release-bot";
git config --global user.email "release-bot@fleetpin.co.nz";
git config --global user.email "release-bot@phocas.co.nz";
- name: add key
run: |
Expand Down
11 changes: 1 addition & 10 deletions graphql-builder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<url>https://github.com/ashley-taylor/graphql-builder</url>

<parent>
<groupId>com.fleetpin</groupId>
<groupId>com.phocas</groupId>
<artifactId>graphql-database-manager</artifactId>
<version>3.0.4-SNAPSHOT</version>
</parent>
Expand Down Expand Up @@ -62,15 +62,6 @@
</license>
</licenses>

<developers>
<developer>
<name>Ashley Taylor</name>
<email>[email protected]</email>
<organization>Fleetpin</organization>
<organizationUrl>http://www.fleetpin.co.nz</organizationUrl>
</developer>
</developers>

<build>
<plugins>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

public interface Authorizer {}
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import static com.fleetpin.graphql.builder.EntityUtil.isContext;
import static com.phocas.graphql.builder.EntityUtil.isContext;

import graphql.GraphQLContext;
import graphql.GraphqlErrorException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import graphql.schema.DataFetcher;
import java.lang.reflect.Method;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import graphql.schema.DataFetcher;
import graphql.schema.DataFetchingEnvironment;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import java.lang.annotation.Annotation;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import com.fleetpin.graphql.builder.annotations.Directive;
import com.phocas.graphql.builder.annotations.Directive;
import graphql.introspection.Introspection;
import graphql.schema.*;
import java.lang.annotation.Annotation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import com.fleetpin.graphql.builder.annotations.DataFetcherWrapper;
import com.fleetpin.graphql.builder.annotations.Directive;
import com.phocas.graphql.builder.annotations.DataFetcherWrapper;
import com.phocas.graphql.builder.annotations.Directive;
import graphql.schema.DataFetcher;
import graphql.schema.DataFetchingEnvironment;
import graphql.schema.GraphQLAppliedDirective;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import com.fleetpin.graphql.builder.TypeMeta.Flag;
import com.fleetpin.graphql.builder.annotations.Id;
import com.fleetpin.graphql.builder.mapper.InputTypeBuilder;
import com.phocas.graphql.builder.TypeMeta.Flag;
import com.phocas.graphql.builder.annotations.Id;
import com.phocas.graphql.builder.mapper.InputTypeBuilder;
import graphql.Scalars;
import graphql.schema.GraphQLInputType;
import graphql.schema.GraphQLList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import com.fleetpin.graphql.builder.annotations.Scalar;
import com.fleetpin.graphql.builder.annotations.Union;
import com.fleetpin.graphql.builder.mapper.InputTypeBuilder;
import com.phocas.graphql.builder.annotations.Scalar;
import com.phocas.graphql.builder.annotations.Union;
import com.phocas.graphql.builder.mapper.InputTypeBuilder;
import graphql.Scalars;
import graphql.schema.GraphQLAppliedDirective;
import graphql.schema.GraphQLCodeRegistry;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import com.fleetpin.graphql.builder.annotations.Context;
import com.fleetpin.graphql.builder.annotations.GraphQLIgnore;
import com.fleetpin.graphql.builder.annotations.GraphQLName;
import com.fleetpin.graphql.builder.annotations.InputIgnore;
import com.phocas.graphql.builder.annotations.Context;
import com.phocas.graphql.builder.annotations.GraphQLIgnore;
import com.phocas.graphql.builder.annotations.GraphQLName;
import com.phocas.graphql.builder.annotations.InputIgnore;
import graphql.GraphQLContext;
import graphql.schema.DataFetchingEnvironment;
import java.lang.annotation.Annotation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import static graphql.schema.GraphQLEnumValueDefinition.newEnumValueDefinition;

import com.fleetpin.graphql.builder.annotations.GraphQLDescription;
import com.fleetpin.graphql.builder.annotations.GraphQLIgnore;
import com.fleetpin.graphql.builder.mapper.InputTypeBuilder;
import com.phocas.graphql.builder.annotations.GraphQLDescription;
import com.phocas.graphql.builder.annotations.GraphQLIgnore;
import com.phocas.graphql.builder.mapper.InputTypeBuilder;
import graphql.schema.GraphQLEnumType;
import graphql.schema.GraphQLNamedInputType;
import graphql.schema.GraphQLNamedOutputType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import graphql.ErrorClassification;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import java.util.concurrent.CompletableFuture;
import java.util.function.BiConsumer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;

import com.fleetpin.graphql.builder.annotations.Entity;
import com.fleetpin.graphql.builder.annotations.GraphQLDescription;
import com.fleetpin.graphql.builder.annotations.GraphQLIgnore;
import com.fleetpin.graphql.builder.annotations.InputIgnore;
import com.fleetpin.graphql.builder.annotations.OneOf;
import com.fleetpin.graphql.builder.annotations.SchemaOption;
import com.fleetpin.graphql.builder.mapper.ConstructorFieldBuilder;
import com.fleetpin.graphql.builder.mapper.ConstructorFieldBuilder.RecordMapper;
import com.fleetpin.graphql.builder.mapper.InputTypeBuilder;
import com.fleetpin.graphql.builder.mapper.ObjectFieldBuilder;
import com.fleetpin.graphql.builder.mapper.ObjectFieldBuilder.FieldMapper;
import com.fleetpin.graphql.builder.mapper.OneOfBuilder;
package com.phocas.graphql.builder;

import com.phocas.graphql.builder.annotations.Entity;
import com.phocas.graphql.builder.annotations.GraphQLDescription;
import com.phocas.graphql.builder.annotations.GraphQLIgnore;
import com.phocas.graphql.builder.annotations.InputIgnore;
import com.phocas.graphql.builder.annotations.OneOf;
import com.phocas.graphql.builder.annotations.SchemaOption;
import com.phocas.graphql.builder.mapper.ConstructorFieldBuilder;
import com.phocas.graphql.builder.mapper.ConstructorFieldBuilder.RecordMapper;
import com.phocas.graphql.builder.mapper.InputTypeBuilder;
import com.phocas.graphql.builder.mapper.ObjectFieldBuilder;
import com.phocas.graphql.builder.mapper.ObjectFieldBuilder.FieldMapper;
import com.phocas.graphql.builder.mapper.OneOfBuilder;
import graphql.schema.GraphQLInputObjectField;
import graphql.schema.GraphQLInputObjectType;
import graphql.schema.GraphQLInputObjectType.Builder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import static com.fleetpin.graphql.builder.EntityUtil.isContext;
import static com.phocas.graphql.builder.EntityUtil.isContext;

import com.fleetpin.graphql.builder.annotations.Directive;
import com.fleetpin.graphql.builder.annotations.GraphQLDeprecated;
import com.fleetpin.graphql.builder.annotations.GraphQLDescription;
import com.fleetpin.graphql.builder.annotations.Mutation;
import com.fleetpin.graphql.builder.annotations.Query;
import com.fleetpin.graphql.builder.annotations.Subscription;
import com.phocas.graphql.builder.annotations.Directive;
import com.phocas.graphql.builder.annotations.GraphQLDeprecated;
import com.phocas.graphql.builder.annotations.GraphQLDescription;
import com.phocas.graphql.builder.annotations.Mutation;
import com.phocas.graphql.builder.annotations.Query;
import com.phocas.graphql.builder.annotations.Subscription;
import graphql.GraphQLContext;
import graphql.schema.DataFetcher;
import graphql.schema.DataFetchingEnvironment;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import com.fleetpin.graphql.builder.annotations.GraphQLCreator;
import com.fleetpin.graphql.builder.annotations.OneOf;
import com.fleetpin.graphql.builder.mapper.InputTypeBuilder;
import com.phocas.graphql.builder.annotations.GraphQLCreator;
import com.phocas.graphql.builder.annotations.OneOf;
import com.phocas.graphql.builder.mapper.InputTypeBuilder;
import graphql.schema.GraphQLNamedInputType;
import graphql.schema.GraphQLNamedOutputType;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import graphql.schema.DataFetchingEnvironment;
import java.lang.reflect.ParameterizedType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import com.fleetpin.graphql.builder.annotations.GraphQLDescription;
import com.fleetpin.graphql.builder.annotations.Scalar;
import com.fleetpin.graphql.builder.mapper.InputTypeBuilder;
import com.phocas.graphql.builder.annotations.GraphQLDescription;
import com.phocas.graphql.builder.annotations.Scalar;
import com.phocas.graphql.builder.mapper.InputTypeBuilder;
import graphql.schema.Coercing;
import graphql.schema.GraphQLNamedInputType;
import graphql.schema.GraphQLNamedOutputType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import com.fleetpin.graphql.builder.annotations.*;
import com.phocas.graphql.builder.annotations.*;
import graphql.schema.GraphQLScalarType;
import graphql.schema.GraphQLSchema;
import java.lang.reflect.Method;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

/**
* Used to add extra information to the schema. Currently only supports directives. That are inferred using the annotation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import com.fleetpin.graphql.builder.annotations.Entity;
import com.fleetpin.graphql.builder.annotations.GraphQLDescription;
import com.fleetpin.graphql.builder.annotations.GraphQLIgnore;
import com.phocas.graphql.builder.annotations.Entity;
import com.phocas.graphql.builder.annotations.GraphQLDescription;
import com.phocas.graphql.builder.annotations.GraphQLIgnore;
import graphql.schema.FieldCoordinates;
import graphql.schema.GraphQLInterfaceType;
import graphql.schema.GraphQLNamedOutputType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import com.fleetpin.graphql.builder.annotations.InnerNullable;
import com.phocas.graphql.builder.annotations.InnerNullable;
import java.lang.reflect.AnnotatedElement;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder;
package com.phocas.graphql.builder;

import com.fleetpin.graphql.builder.annotations.Union;
import com.fleetpin.graphql.builder.mapper.InputTypeBuilder;
import com.phocas.graphql.builder.annotations.Union;
import com.phocas.graphql.builder.mapper.InputTypeBuilder;
import graphql.schema.GraphQLNamedInputType;
import graphql.schema.GraphQLNamedOutputType;
import graphql.schema.GraphQLObjectType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder.annotations;
package com.phocas.graphql.builder.annotations;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.fleetpin.graphql.builder.annotations;
package com.phocas.graphql.builder.annotations;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

import com.fleetpin.graphql.builder.DirectiveOperation;
import com.phocas.graphql.builder.DirectiveOperation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.fleetpin.graphql.builder.annotations;
package com.phocas.graphql.builder.annotations;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

import com.fleetpin.graphql.builder.DirectiveCaller;
import com.fleetpin.graphql.builder.DirectiveOperation;
import com.phocas.graphql.builder.DirectiveCaller;
import com.phocas.graphql.builder.DirectiveOperation;
import graphql.introspection.Introspection;
import graphql.schema.DataFetcher;
import graphql.schema.DataFetchingEnvironment;
Expand Down
Loading

0 comments on commit fc4fa6a

Please sign in to comment.