Skip to content

Commit 81a48a7

Browse files
committed
add license
1 parent 6d72580 commit 81a48a7

File tree

9 files changed

+112
-17
lines changed

9 files changed

+112
-17
lines changed

src/main/java/graphql/annotations/GraphQLInterfaceRetriever.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Copyright 2016 Yurii Rashkovskii
3+
* <p>
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
* <p>
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
* <p>
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
*/
115
package graphql.annotations;
216

317
import graphql.annotations.util.GraphQLOutputObjectRetriever;

src/test/java/typeFunctions/BooleanFunctionTests.java

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Copyright 2016 Yurii Rashkovskii
3+
* <p>
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
* <p>
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
* <p>
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
*/
115
package typeFunctions;
216

317
import graphql.annotations.GraphQLAnnotations;
@@ -9,9 +23,6 @@
923
import static org.testng.Assert.assertEquals;
1024
import static typeFunctions.DefaultTypeFunctionTestHelper.testedDefaultTypeFunction;
1125

12-
/**
13-
* Created by Yael on 25/10/17.
14-
*/
1526
public class BooleanFunctionTests {
1627

1728
@BeforeMethod

src/test/java/typeFunctions/DefaultTypeFunctionTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@
1515
package typeFunctions;
1616

1717
import graphql.annotations.*;
18-
import graphql.annotations.graphQLProcessors.GraphQLInputProcessor;
19-
import graphql.annotations.graphQLProcessors.GraphQLOutputProcessor;
20-
import graphql.annotations.typeFunctions.DefaultTypeFunction;
2118
import graphql.schema.*;
2219
import graphql.schema.GraphQLType;
2320
import org.testng.annotations.BeforeMethod;

src/test/java/typeFunctions/DefaultTypeFunctionTestHelper.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Copyright 2016 Yurii Rashkovskii
3+
* <p>
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
* <p>
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
* <p>
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
*/
115
package typeFunctions;
216

317
import graphql.annotations.GraphQLAnnotations;

src/test/java/typeFunctions/FloatFunctionTests.java

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Copyright 2016 Yurii Rashkovskii
3+
* <p>
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
* <p>
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
* <p>
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
*/
115
package typeFunctions;
216

317
import graphql.annotations.GraphQLAnnotations;
@@ -9,9 +23,6 @@
923
import static org.testng.Assert.assertEquals;
1024
import static typeFunctions.DefaultTypeFunctionTestHelper.testedDefaultTypeFunction;
1125

12-
/**
13-
* Created by Yael on 25/10/17.
14-
*/
1526
public class FloatFunctionTests {
1627

1728
@BeforeMethod

src/test/java/typeFunctions/IDFunctionTests.java

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
1+
/**
2+
* Copyright 2016 Yurii Rashkovskii
3+
* <p>
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
* <p>
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
* <p>
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
*/
115
package typeFunctions;
216

317
import graphql.annotations.GraphQLAnnotations;
418
import graphql.annotations.GraphQLID;
5-
import graphql.annotations.graphQLProcessors.GraphQLInputProcessor;
6-
import graphql.annotations.graphQLProcessors.GraphQLOutputProcessor;
719
import graphql.annotations.typeFunctions.DefaultTypeFunction;
820
import org.testng.annotations.BeforeMethod;
921
import org.testng.annotations.Test;

src/test/java/typeFunctions/IntegerFunctionTests.java

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Copyright 2016 Yurii Rashkovskii
3+
* <p>
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
* <p>
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
* <p>
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
*/
115
package typeFunctions;
216

317
import graphql.annotations.GraphQLAnnotations;
@@ -9,9 +23,6 @@
923
import static org.testng.Assert.assertEquals;
1024
import static typeFunctions.DefaultTypeFunctionTestHelper.testedDefaultTypeFunction;
1125

12-
/**
13-
* Created by Yael on 25/10/17.
14-
*/
1526
public class IntegerFunctionTests {
1627

1728
@BeforeMethod

src/test/java/typeFunctions/LongFunctionTests.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Copyright 2016 Yurii Rashkovskii
3+
* <p>
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
* <p>
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
* <p>
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
*/
115
package typeFunctions;
216

317

src/test/java/typeFunctions/StringFunctionTests.java

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Copyright 2016 Yurii Rashkovskii
3+
* <p>
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
* <p>
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
* <p>
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
*/
115
package typeFunctions;
216

317
import graphql.annotations.GraphQLAnnotations;
@@ -9,9 +23,6 @@
923
import static org.testng.Assert.assertEquals;
1024
import static typeFunctions.DefaultTypeFunctionTestHelper.testedDefaultTypeFunction;
1125

12-
/**
13-
* Created by Yael on 25/10/17.
14-
*/
1526
public class StringFunctionTests {
1627

1728
@BeforeMethod

0 commit comments

Comments
 (0)