forked from aws/aws-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
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
AWS
committed
Nov 30, 2017
1 parent
a1c4f6d
commit a873140
Showing
703 changed files
with
161,779 additions
and
14,880 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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
source.. = src/main/java,\ | ||
src/main/resources | ||
output.. = bin/ | ||
|
||
bin.includes = LICENSE.txt,\ | ||
NOTICE.txt,\ | ||
META-INF/,\ | ||
. | ||
|
||
jre.compilation.profile = JavaSE-1.6 |
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,97 @@ | ||
<?xml version="1.0"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.amazonaws</groupId> | ||
<artifactId>aws-java-sdk-pom</artifactId> | ||
<version>1.11.240</version> | ||
</parent> | ||
<groupId>com.amazonaws</groupId> | ||
<artifactId>aws-java-sdk-alexaforbusiness</artifactId> | ||
<name>AWS Java SDK for Alexa For Business</name> | ||
<description>The AWS Java SDK for Alexa For Business module holds the client classes that are used for communicating with Alexa For Business Service</description> | ||
<url>https://aws.amazon.com/sdkforjava</url> | ||
|
||
<!-- The dependencies section in pom.xml is auto generated. No manual changes are allowed --> | ||
<dependencies> | ||
<dependency> | ||
<artifactId>aws-java-sdk-core</artifactId> | ||
<groupId>com.amazonaws</groupId> | ||
<optional>false</optional> | ||
<version>${awsjavasdk.version}</version> | ||
</dependency> | ||
<dependency> | ||
<artifactId>aws-java-sdk-test-utils</artifactId> | ||
<groupId>com.amazonaws</groupId> | ||
<optional>false</optional> | ||
<scope>test</scope> | ||
<version>${awsjavasdk.version}</version> | ||
</dependency> | ||
<dependency> | ||
<artifactId>jmespath-java</artifactId> | ||
<groupId>com.amazonaws</groupId> | ||
<optional>false</optional> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<!-- This profile uses the JAPICMP plugin to generate a report of changes between the release version and the latest version --> | ||
<!-- For more information on the plugin, see https://github.com/siom79/japicmp --> | ||
<profiles> | ||
<profile> | ||
<id>versiondiff</id> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.github.siom79.japicmp</groupId> | ||
<artifactId>japicmp-maven-plugin</artifactId> | ||
<version>0.5.0</version> | ||
<executions> | ||
<execution> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>cmp</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<oldVersion> | ||
<dependency> | ||
<groupId>com.amazonaws</groupId> | ||
<artifactId>aws-java-sdk-alexaforbusiness</artifactId> | ||
<version>RELEASE</version> | ||
</dependency> | ||
</oldVersion> | ||
<newVersion> | ||
<file> | ||
<path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path> | ||
</file> | ||
</newVersion> | ||
<parameter> | ||
<onlyModified>true</onlyModified> | ||
<accessModifier>public</accessModifier> | ||
<breakBuildOnModifications>false</breakBuildOnModifications> | ||
<breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications> | ||
<onlyBinaryIncompatible>false</onlyBinaryIncompatible> | ||
</parameter> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> |
220 changes: 220 additions & 0 deletions
220
...src/main/java/com/amazonaws/services/alexaforbusiness/AbstractAmazonAlexaForBusiness.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,220 @@ | ||
/* | ||
* Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (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/apache2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file 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 com.amazonaws.services.alexaforbusiness; | ||
|
||
import javax.annotation.Generated; | ||
|
||
import com.amazonaws.services.alexaforbusiness.model.*; | ||
import com.amazonaws.*; | ||
|
||
/** | ||
* Abstract implementation of {@code AmazonAlexaForBusiness}. Convenient method forms pass through to the corresponding | ||
* overload that takes a request object, which throws an {@code UnsupportedOperationException}. | ||
*/ | ||
@Generated("com.amazonaws:aws-java-sdk-code-generator") | ||
public class AbstractAmazonAlexaForBusiness implements AmazonAlexaForBusiness { | ||
|
||
protected AbstractAmazonAlexaForBusiness() { | ||
} | ||
|
||
@Override | ||
public AssociateDeviceWithRoomResult associateDeviceWithRoom(AssociateDeviceWithRoomRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public AssociateSkillGroupWithRoomResult associateSkillGroupWithRoom(AssociateSkillGroupWithRoomRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public CreateProfileResult createProfile(CreateProfileRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public CreateRoomResult createRoom(CreateRoomRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public CreateSkillGroupResult createSkillGroup(CreateSkillGroupRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public CreateUserResult createUser(CreateUserRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public DeleteProfileResult deleteProfile(DeleteProfileRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public DeleteRoomResult deleteRoom(DeleteRoomRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public DeleteRoomSkillParameterResult deleteRoomSkillParameter(DeleteRoomSkillParameterRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public DeleteSkillGroupResult deleteSkillGroup(DeleteSkillGroupRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public DeleteUserResult deleteUser(DeleteUserRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public DisassociateDeviceFromRoomResult disassociateDeviceFromRoom(DisassociateDeviceFromRoomRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public DisassociateSkillGroupFromRoomResult disassociateSkillGroupFromRoom(DisassociateSkillGroupFromRoomRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public GetDeviceResult getDevice(GetDeviceRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public GetProfileResult getProfile(GetProfileRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public GetRoomResult getRoom(GetRoomRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public GetRoomSkillParameterResult getRoomSkillParameter(GetRoomSkillParameterRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public GetSkillGroupResult getSkillGroup(GetSkillGroupRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public ListSkillsResult listSkills(ListSkillsRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public ListTagsResult listTags(ListTagsRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public PutRoomSkillParameterResult putRoomSkillParameter(PutRoomSkillParameterRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public ResolveRoomResult resolveRoom(ResolveRoomRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public RevokeInvitationResult revokeInvitation(RevokeInvitationRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public SearchDevicesResult searchDevices(SearchDevicesRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public SearchProfilesResult searchProfiles(SearchProfilesRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public SearchRoomsResult searchRooms(SearchRoomsRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public SearchSkillGroupsResult searchSkillGroups(SearchSkillGroupsRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public SearchUsersResult searchUsers(SearchUsersRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public SendInvitationResult sendInvitation(SendInvitationRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public StartDeviceSyncResult startDeviceSync(StartDeviceSyncRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public TagResourceResult tagResource(TagResourceRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public UntagResourceResult untagResource(UntagResourceRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public UpdateDeviceResult updateDevice(UpdateDeviceRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public UpdateProfileResult updateProfile(UpdateProfileRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public UpdateRoomResult updateRoom(UpdateRoomRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public UpdateSkillGroupResult updateSkillGroup(UpdateSkillGroupRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public void shutdown() { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public com.amazonaws.ResponseMetadata getCachedResponseMetadata(com.amazonaws.AmazonWebServiceRequest request) { | ||
throw new java.lang.UnsupportedOperationException(); | ||
} | ||
|
||
} |
Oops, something went wrong.