Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2015-2016 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.
* You may obtain a copy of the License at:
*
* http://aws.amazon.com/apache2.0
*
* 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.dynamodbv2.datamodeling;
import java.util.List;
import java.util.Map;
import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMapper.FailedBatch;
import com.amazonaws.services.dynamodbv2.model.AttributeValue;
import com.amazonaws.services.dynamodbv2.model.CreateTableRequest;
import com.amazonaws.services.dynamodbv2.model.DeleteTableRequest;
import com.amazonaws.services.s3.model.Region;
/**
* Abstract implementation of {@code IDynamoDBMapper}. Convenient method forms pass through to the
* corresponding overload that takes a request object, which throws an
* {@code UnsupportedOperationException}.
*/
public class AbstractDynamoDBMapper implements IDynamoDBMapper {
protected AbstractDynamoDBMapper() {
}
@Override
public T load(Class clazz, Object hashKey, DynamoDBMapperConfig config) {
throw new UnsupportedOperationException();
}
@Override
public T load(Class clazz, Object hashKey) {
throw new UnsupportedOperationException();
}
@Override
public T load(Class clazz, Object hashKey, Object rangeKey) {
throw new UnsupportedOperationException();
}
@Override
public T load(T keyObject) {
throw new UnsupportedOperationException();
}
@Override
public T load(T keyObject, DynamoDBMapperConfig config) {
throw new UnsupportedOperationException();
}
@Override
public T load(Class clazz, Object hashKey, Object rangeKey, DynamoDBMapperConfig config) {
throw new UnsupportedOperationException();
}
@Override
public T marshallIntoObject(Class clazz, Map itemAttributes) {
throw new UnsupportedOperationException();
}
@Override
public List marshallIntoObjects(Class clazz, List