All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nuiton.web.security.GeneratedSecurityUserTopiaDao Maven / Gradle / Ivy

There is a newer version: 1.20
Show newest version
package org.nuiton.web.security;

/*-
 * #%L
 * Nuiton Web :: Nuiton Security
 * %%
 * Copyright (C) 2010 - 2017 CodeLutin
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import javax.annotation.Generated;
import org.nuiton.topia.persistence.TopiaDao;
import org.nuiton.topia.persistence.TopiaEntity;
import org.nuiton.topia.persistence.TopiaException;
import org.nuiton.topia.persistence.TopiaQueryBuilderAddCriteriaOrRunQueryStep;
import org.nuiton.web.AbstractSecurityTopiaDao;
import org.nuiton.web.SecurityEntityEnum;

@Generated(value = "org.nuiton.topia.templates.EntityDaoTransformer", date = "Thu Sep 07 10:56:15 CEST 2017")
public abstract class GeneratedSecurityUserTopiaDao extends AbstractSecurityTopiaDao {

    @Override
    public Class getEntityClass() {
        return (Class) SecurityUser.class;
    }

    @Override
    public SecurityEntityEnum getTopiaEntityEnum() {
        return SecurityEntityEnum.SecurityUser;
    }

    @Override
    public void delete(E entity) {
        if ( ! entity.isPersisted()) {
            throw new IllegalArgumentException("entity " + entity  + " is not persisted, you can't delete it");
        }

        super.delete(entity);
    }

    public TopiaQueryBuilderAddCriteriaOrRunQueryStep forLoginIn(Collection v) {
        TopiaQueryBuilderAddCriteriaOrRunQueryStep result = forIn(SecurityUser.PROPERTY_LOGIN, (Collection) v);
        return result;
    }

    public TopiaQueryBuilderAddCriteriaOrRunQueryStep forLoginEquals(String v) {
        TopiaQueryBuilderAddCriteriaOrRunQueryStep result = forEquals(SecurityUser.PROPERTY_LOGIN, v);
        return result;
    }

    @Deprecated
    public E findByLogin(String v) {
        return forLoginEquals(v).findAnyOrNull();
    }

    @Deprecated
    public List findAllByLogin(String v) {
        return forLoginEquals(v).findAll();
    }

    public TopiaQueryBuilderAddCriteriaOrRunQueryStep forPasswordIn(Collection v) {
        TopiaQueryBuilderAddCriteriaOrRunQueryStep result = forIn(SecurityUser.PROPERTY_PASSWORD, (Collection) v);
        return result;
    }

    public TopiaQueryBuilderAddCriteriaOrRunQueryStep forPasswordEquals(String v) {
        TopiaQueryBuilderAddCriteriaOrRunQueryStep result = forEquals(SecurityUser.PROPERTY_PASSWORD, v);
        return result;
    }

    @Deprecated
    public E findByPassword(String v) {
        return forPasswordEquals(v).findAnyOrNull();
    }

    @Deprecated
    public List findAllByPassword(String v) {
        return forPasswordEquals(v).findAll();
    }

    public TopiaQueryBuilderAddCriteriaOrRunQueryStep forExternalIdIn(Collection v) {
        TopiaQueryBuilderAddCriteriaOrRunQueryStep result = forIn(SecurityUser.PROPERTY_EXTERNAL_ID, (Collection) v);
        return result;
    }

    public TopiaQueryBuilderAddCriteriaOrRunQueryStep forExternalIdEquals(String v) {
        TopiaQueryBuilderAddCriteriaOrRunQueryStep result = forEquals(SecurityUser.PROPERTY_EXTERNAL_ID, v);
        return result;
    }

    @Deprecated
    public E findByExternalId(String v) {
        return forExternalIdEquals(v).findAnyOrNull();
    }

    @Deprecated
    public List findAllByExternalId(String v) {
        return forExternalIdEquals(v).findAll();
    }

    public TopiaQueryBuilderAddCriteriaOrRunQueryStep forSecurityRoleContains(SecurityRole v) {
        return forContains(SecurityUser.PROPERTY_SECURITY_ROLE, v);
    }

    @Deprecated
    public E findContainsSecurityRole(SecurityRole v) {
        return forSecurityRoleContains(v).findAnyOrNull();
    }

    @Deprecated
    public List findAllContainsSecurityRole(SecurityRole v) {
        return forSecurityRoleContains(v).findAll();
    }

    @Override
    public  List findUsages(Class type, E entity) {
        return new LinkedList();
    }

    @Override
    public Map, List> findAllUsages(E entity) {
        return new HashMap, List>();
    }

    @Override
    public List getAggregate(E entity) throws TopiaException {
        List tmp = new ArrayList();

        // pour tous les attributs rechecher les composites et les class d'asso
        // on les ajoute dans tmp

        // on refait un tour sur chaque entity de tmp pour recuperer leur
        // composite
        List result = new ArrayList();
        for (TopiaEntity e : tmp) {
            result.add(e);
            TopiaDao dao = (TopiaDao) topiaDaoSupplier.getDao(e.getClass());
            result.addAll(dao.getAggregate(e));
        }
        return result;
    }

    @Override
    public List getComposite(E entity) throws TopiaException {
        List tmp = new ArrayList();

        // pour tous les attributs rechecher les composites et les class d'asso
        // on les ajoute dans tmp

        // on refait un tour sur chaque entity de tmp pour recuperer leur
        // composite
        List result = new ArrayList();
        for (TopiaEntity e : tmp) {
            if (e != null) {
                result.add(e);
                TopiaDao dao = (TopiaDao) topiaDaoSupplier.getDao(e.getClass());
                result.addAll(dao.getComposite(e));
            }
        }
        return result;
    }

} //GeneratedSecurityUserTopiaDao