org.bson.EmptyBSONCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/*
* Copyright 2008-present MongoDB, Inc.
*
* 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://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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 org.bson;
import org.bson.types.Decimal128;
import org.bson.types.ObjectId;
/**
* Convenience implementation of BSONCallback that throws {@code UnsupportedOperationException} for all methods.
*
* @deprecated Usage of this API is not supported in AEM as a Cloud Service.
*/
@Deprecated(since = "2022-10-31")
public class EmptyBSONCallback implements BSONCallback {
@Override
public void objectStart() {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void objectStart(final String name) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public Object objectDone() {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void reset() {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public Object get() {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public BSONCallback createBSONCallback() {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void arrayStart() {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void arrayStart(final String name) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public Object arrayDone() {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotNull(final String name) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotUndefined(final String name) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotMinKey(final String name) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotMaxKey(final String name) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotBoolean(final String name, final boolean value) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotDouble(final String name, final double value) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotInt(final String name, final int value) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotLong(final String name, final long value) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotDecimal128(final String name, final Decimal128 value) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotDate(final String name, final long millis) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotString(final String name, final String value) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotSymbol(final String name, final String value) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotRegex(final String name, final String pattern, final String flags) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotTimestamp(final String name, final int time, final int increment) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotObjectId(final String name, final ObjectId id) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotDBRef(final String name, final String namespace, final ObjectId id) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
@Deprecated
public void gotBinaryArray(final String name, final byte[] data) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotBinary(final String name, final byte type, final byte[] data) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotUUID(final String name, final long part1, final long part2) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotCode(final String name, final String code) {
throw new UnsupportedOperationException("Operation is not supported");
}
@Override
public void gotCodeWScope(final String name, final String code, final Object scope) {
throw new UnsupportedOperationException("Operation is not supported");
}
}