Package framework.generic

Examples of framework.generic.ENotMoveToTrash


        /*Class <? extends GenericEntity> checked = Diagnosis.class;
        Field f[] = { new Field("type", entity) };
        int count = getEntityCount(checked, f);
        if (count > 0) throw new EDataIntegrity("На элемент '" + entity.getTitle()
                + "' ссылаются " + count + " элементов из таблицы " + getEntityHumanName(checked));*/
        throw new ENotMoveToTrash("Типы диагнозов не подлежат удалению");
    }
View Full Code Here


                + "' ссылаются " + count + " элементов из таблицы " + getEntityHumanName(checked));*/
        throw new ENotMoveToTrash("Типы диагнозов не подлежат удалению");
    }

    private void onRemovemedexamType(DirectoryEntity entity) throws ClipsServerException {
        throw new ENotMoveToTrash("Типы медосмотров не подлежат удалению");
    }
View Full Code Here

    private void onRemovemedexamType(DirectoryEntity entity) throws ClipsServerException {
        throw new ENotMoveToTrash("Типы медосмотров не подлежат удалению");
    }

    private void onRemoveCityDistrict(DirectoryEntity entity) throws ClipsServerException {
        throw new ENotMoveToTrash("Районы городов не подлежат удалению");
    }
View Full Code Here

    private void onRemoveCityDistrict(DirectoryEntity entity) throws ClipsServerException {
        throw new ENotMoveToTrash("Районы городов не подлежат удалению");
    }

    private void onRemoveExemptionType(DirectoryEntity entity) throws ClipsServerException {
        throw new ENotMoveToTrash("Категории льготности не подлежат удалению");
    }
View Full Code Here

                DiscountCardDetails details = (DiscountCardDetails) cardBeanRemote.getDetails();
                details.collaboratorBlockerID = getCollaboratorId();
                cardBeanRemote.update(details);
            }
        } catch (ClipsServerException ex) {
            throw new ENotMoveToTrash("Ошибка при блокировке диск. карты", ex);
        }
       
        int count = getEntityCount(checked, f);
        if (count > 0) throw new EDataIntegrity("На элемент '" + entity.getTitle()
                + "' ссылаются " + count + " элементов из таблицы " + getEntityHumanName(checked));
View Full Code Here

TOP

Related Classes of framework.generic.ENotMoveToTrash

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.