-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
3,557 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...id-sdk-appsync-api/src/main/java/com/apollographql/apollo/api/S3InputObjectInterface.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/** | ||
* Copyright 2018-2018 Amazon.com, | ||
* Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Amazon Software License (the "License"). | ||
* You may not use this file except in compliance with the | ||
* License. A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/asl/ | ||
* | ||
* or in the "license" file accompanying this file. This file is | ||
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
* CONDITIONS OF ANY KIND, express or implied. See the License | ||
* for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.apollographql.apollo.api; | ||
|
||
/** | ||
* S3InputObjectInterface. | ||
*/ | ||
|
||
public interface S3InputObjectInterface extends S3ObjectInterface { | ||
public String localUri(); | ||
public String mimeType(); | ||
} |
28 changes: 28 additions & 0 deletions
28
...android-sdk-appsync-api/src/main/java/com/apollographql/apollo/api/S3ObjectInterface.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/** | ||
* Copyright 2018-2018 Amazon.com, | ||
* Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Amazon Software License (the "License"). | ||
* You may not use this file except in compliance with the | ||
* License. A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/asl/ | ||
* | ||
* or in the "license" file accompanying this file. This file is | ||
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
* CONDITIONS OF ANY KIND, express or implied. See the License | ||
* for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.apollographql.apollo.api; | ||
|
||
/** | ||
* S3ObjectInterface. | ||
*/ | ||
|
||
public interface S3ObjectInterface { | ||
public String bucket(); | ||
public String key(); | ||
public String region(); | ||
} |
26 changes: 26 additions & 0 deletions
26
aws-android-sdk-appsync-api/src/main/java/com/apollographql/apollo/api/S3ObjectManager.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/** | ||
* Copyright 2018-2018 Amazon.com, | ||
* Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Amazon Software License (the "License"). | ||
* You may not use this file except in compliance with the | ||
* License. A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/asl/ | ||
* | ||
* or in the "license" file accompanying this file. This file is | ||
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
* CONDITIONS OF ANY KIND, express or implied. See the License | ||
* for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.apollographql.apollo.api; | ||
|
||
/** | ||
* S3ObjectManager. | ||
*/ | ||
public interface S3ObjectManager { | ||
void upload(final S3InputObjectInterface s3Object) throws Exception; | ||
void download(final S3ObjectInterface s3Object, final String filePath) throws Exception; | ||
} |
24 changes: 24 additions & 0 deletions
24
aws-android-sdk-appsync-api/src/main/java/com/apollographql/apollo/api/Subscription.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* Copyright 2018-2018 Amazon.com, | ||
* Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Amazon Software License (the "License"). | ||
* You may not use this file except in compliance with the | ||
* License. A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/asl/ | ||
* | ||
* or in the "license" file accompanying this file. This file is | ||
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
* CONDITIONS OF ANY KIND, express or implied. See the License | ||
* for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.apollographql.apollo.api; | ||
|
||
/** | ||
* Represents a GraphQL subscription. | ||
*/ | ||
public interface Subscription<D extends Operation.Data, T, V extends Operation.Variables> extends Operation<D, T, V> { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ | |
|
||
// Generated file. Do not edit! | ||
package com.apollographql.android | ||
val VERSION = "2.6.15" | ||
val VERSION = "2.6.16" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.