Skip to content

Commit

Permalink
Merge pull request #1 from mdietz198/master
Browse files Browse the repository at this point in the history
Update to aws-java-sdk 1.6.12 and add kinesis stubs
  • Loading branch information
ogrodnek committed Jan 25, 2014
2 parents 52cc8f0 + 4ef0ebc commit ce6ae76
Show file tree
Hide file tree
Showing 8 changed files with 452 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.bizo</groupId>
<artifactId>aws-java-sdk-stubs</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
<packaging>jar</packaging>
<name>aws-java-sdk-stubs</name>
<description>stubs for the aws-java-sdk services</description>
Expand Down Expand Up @@ -45,7 +45,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
<version>1.6.4</version>
<version>1.6.12</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -93,4 +93,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
2 changes: 2 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@ This project provides stub classes for the [aws-sdk-java](https://github.com/aws

`mvn clean package` to build the jar

Make sure M2_REPO is defined in java build path classpath variables

## License
[Apache 2](http://www.apache.org/licenses/LICENSE-2.0.html)
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.bizo.awsstubs.services.autoscaling;

import com.amazonaws.AmazonClientException;
import com.amazonaws.AmazonServiceException;
import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.ResponseMetadata;
import com.amazonaws.regions.Region;
Expand Down Expand Up @@ -266,4 +268,21 @@ public TerminateInstanceInAutoScalingGroupResult terminateInstanceInAutoScalingG
public ResponseMetadata getCachedResponseMetadata(final AmazonWebServiceRequest arg0) {
throw new UnsupportedOperationException();
}

@Override
public void attachInstances(final AttachInstancesRequest arg0) throws AmazonServiceException, AmazonClientException {
throw new UnsupportedOperationException();
}

@Override
public DescribeAccountLimitsResult describeAccountLimits() throws AmazonServiceException, AmazonClientException {
throw new UnsupportedOperationException();
}

@Override
public DescribeAccountLimitsResult describeAccountLimits(final DescribeAccountLimitsRequest arg0)
throws AmazonServiceException,
AmazonClientException {
throw new UnsupportedOperationException();
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.bizo.awsstubs.services.elasticloadbalancing;

import com.amazonaws.AmazonClientException;
import com.amazonaws.AmazonServiceException;
import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.ResponseMetadata;
import com.amazonaws.regions.Region;
Expand Down Expand Up @@ -168,4 +170,17 @@ public ResponseMetadata getCachedResponseMetadata(final AmazonWebServiceRequest
throw new UnsupportedOperationException();
}

@Override
public DescribeLoadBalancerAttributesResult describeLoadBalancerAttributes(
final DescribeLoadBalancerAttributesRequest arg0) throws AmazonServiceException, AmazonClientException {
throw new UnsupportedOperationException();
}

@Override
public ModifyLoadBalancerAttributesResult modifyLoadBalancerAttributes(final ModifyLoadBalancerAttributesRequest arg0)
throws AmazonServiceException,
AmazonClientException {
throw new UnsupportedOperationException();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,24 @@ public ListInstancesResult listInstances() throws AmazonServiceException, Amazon
public DescribeClusterResult describeCluster() throws AmazonServiceException, AmazonClientException {
throw new UnsupportedOperationException();
}

@Override
public AddTagsResult addTags() throws AmazonServiceException, AmazonClientException {
throw new UnsupportedOperationException();
}

@Override
public AddTagsResult addTags(final AddTagsRequest arg0) throws AmazonServiceException, AmazonClientException {
throw new UnsupportedOperationException();
}

@Override
public RemoveTagsResult removeTags() throws AmazonServiceException, AmazonClientException {
throw new UnsupportedOperationException();
}

@Override
public RemoveTagsResult removeTags(final RemoveTagsRequest arg0) throws AmazonServiceException, AmazonClientException {
throw new UnsupportedOperationException();
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.bizo.awsstubs.services.identitymanagement;

import com.amazonaws.AmazonClientException;
import com.amazonaws.AmazonServiceException;
import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.ResponseMetadata;
import com.amazonaws.regions.Region;
Expand Down Expand Up @@ -447,4 +449,44 @@ public ResponseMetadata getCachedResponseMetadata(final AmazonWebServiceRequest
throw new UnsupportedOperationException();
}

@Override
public CreateSAMLProviderResult createSAMLProvider(final CreateSAMLProviderRequest arg0)
throws AmazonServiceException,
AmazonClientException {
throw new UnsupportedOperationException();
}

@Override
public void deleteSAMLProvider(final DeleteSAMLProviderRequest arg0)
throws AmazonServiceException,
AmazonClientException {
throw new UnsupportedOperationException();
}

@Override
public GetSAMLProviderResult getSAMLProvider(final GetSAMLProviderRequest arg0)
throws AmazonServiceException,
AmazonClientException {
throw new UnsupportedOperationException();
}

@Override
public ListSAMLProvidersResult listSAMLProviders() throws AmazonServiceException, AmazonClientException {
throw new UnsupportedOperationException();
}

@Override
public ListSAMLProvidersResult listSAMLProviders(final ListSAMLProvidersRequest arg0)
throws AmazonServiceException,
AmazonClientException {
throw new UnsupportedOperationException();
}

@Override
public UpdateSAMLProviderResult updateSAMLProvider(final UpdateSAMLProviderRequest arg0)
throws AmazonServiceException,
AmazonClientException {
throw new UnsupportedOperationException();
}

}
Loading

0 comments on commit ce6ae76

Please sign in to comment.