com.landawn.abacus.jdbc.dao.UncheckedReadOnlyJoinEntityHelper Maven / Gradle / Ivy
/*
* Copyright (c) 2021, Haiyang Li.
*
* 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 com.landawn.abacus.jdbc.dao;
import java.util.Collection;
import java.util.concurrent.Executor;
import com.landawn.abacus.exception.UncheckedSQLException;
import com.landawn.abacus.util.SQLBuilder;
public interface UncheckedReadOnlyJoinEntityHelper>
extends UncheckedJoinEntityHelper, ReadOnlyJoinEntityHelper {
/**
*
*
* @param entity
* @param joinEntityClass
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteJoinEntities(final T entity, final Class> joinEntityClass) throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entities
* @param joinEntityClass
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteJoinEntities(final Collection entities, final Class> joinEntityClass) throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entity
* @param joinEntityPropName
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteJoinEntities(final T entity, final String joinEntityPropName) throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entities
* @param joinEntityPropName
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteJoinEntities(final Collection entities, final String joinEntityPropName) throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entity
* @param joinEntityPropNames
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteJoinEntities(final T entity, final Collection joinEntityPropNames) throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entity
* @param joinEntityPropNames
* @param inParallel
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteJoinEntities(final T entity, final Collection joinEntityPropNames, final boolean inParallel)
throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entity
* @param joinEntityPropNames
* @param executor
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteJoinEntities(final T entity, final Collection joinEntityPropNames, final Executor executor)
throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entities
* @param joinEntityPropNames
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteJoinEntities(final Collection entities, final Collection joinEntityPropNames)
throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entities
* @param joinEntityPropNames
* @param inParallel
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteJoinEntities(final Collection entities, final Collection joinEntityPropNames, final boolean inParallel)
throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entities
* @param joinEntityPropNames
* @param executor
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteJoinEntities(final Collection entities, final Collection joinEntityPropNames, final Executor executor)
throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entity
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteAllJoinEntities(final T entity) throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entity
* @param inParallel
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteAllJoinEntities(final T entity, final boolean inParallel) throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entity
* @param executor
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteAllJoinEntities(final T entity, final Executor executor) throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entities
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteAllJoinEntities(final Collection entities) throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entities
* @param inParallel
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteAllJoinEntities(final Collection entities, final boolean inParallel) throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
*
*
* @param entities
* @param executor
* @return the total count of updated/deleted records.
* @throws UncheckedSQLException
* @throws UnsupportedOperationException
* @deprecated unsupported Operation
*/
@Deprecated
@Override
default int deleteAllJoinEntities(final Collection entities, final Executor executor) throws UncheckedSQLException, UnsupportedOperationException {
throw new UnsupportedOperationException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy