Package in.partake.model.dao.postgres9

Examples of in.partake.model.dao.postgres9.Postgres9EntityDao


    private final Postgres9EntityDao entityDao;
    private final Postgres9IndexDao indexDao;
    private final EntityOpenIDLinkageMapper mapper;

    public Postgres9UserOpenIDLinkDao() {
        this.entityDao = new Postgres9EntityDao(ENTITY_TABLE_NAME);
        this.indexDao = new Postgres9IndexDao(INDEX_TABLE_NAME);
        this.mapper = new EntityOpenIDLinkageMapper();
    }
View Full Code Here


    private final Postgres9EntityDao entityDao;
    private final EntityMessageMapper mapper;

    public Postgres9MessageDao() {
        this.entityDao = new Postgres9EntityDao(ENTITY_TABLE_NAME);
        this.mapper = new EntityMessageMapper();
    }
View Full Code Here

    private final Postgres9IndexDao indexDao;
    private final EntityThumbnailMapper mapper;


    public Postgres9UserThumbnailDao() {
        this.entityDao = new Postgres9EntityDao(ENTITY_TABLE_NAME);
        this.indexDao = new Postgres9IndexDao(USER_INDEX_TABLE_NAME);
        this.mapper = new EntityThumbnailMapper();
    }
View Full Code Here

    private final Postgres9EntityDao entityDao;
    private final Postgres9IndexDao loginIndexDao;
    private final EntityUserMapper mapper;

    public Postgres9UserDao() {
        this.entityDao = new Postgres9EntityDao(ENTITY_TABLE_NAME);
        this.loginIndexDao = new Postgres9IndexDao(LOGIN_INDEX_TABLE_NAME);
        this.mapper = new EntityUserMapper();
    }
View Full Code Here

    private final Postgres9EntityDao entityDao;
    private final Postgres9IndexDao indexDao;
    private final EntityEventMessageMapper mapper;

    public Postgres9EventMessageDao() {
        this.entityDao = new Postgres9EntityDao(ENTITY_TABLE_NAME);
        this.indexDao = new Postgres9IndexDao(INDEX_TABLE_NAME);
        this.mapper = new EntityEventMessageMapper();
    }
View Full Code Here

    private final Postgres9EntityDao entityDao;
    private final EntityMessageEnvelopeMapper mapper;

    public Postgres9MessageEnvelopeDao() {
        this.entityDao = new Postgres9EntityDao(ENTITY_TABLE_NAME);
        this.mapper = new EntityMessageEnvelopeMapper();
    }
View Full Code Here

    private final Postgres9EntityDao entityDao;
    private final Postgres9IndexDao indexDao;
    private final EntityEventTicketMapper mapper;

    public Postgres9EventTicketDao() {
        this.entityDao = new Postgres9EntityDao(ENTITY_TABLE_NAME);
        this.indexDao = new Postgres9IndexDao(INDEX_TABLE_NAME);
        this.mapper = new EntityEventTicketMapper();
    }
View Full Code Here

    private final Postgres9EntityDao entityDao;
    private final Postgres9IndexDao indexDao;
    private final EntityUserNotificationMapper mapper;

    public Postgres9UserNotificationDao() {
        this.entityDao = new Postgres9EntityDao(ENTITY_TABLE_NAME);
        this.indexDao = new Postgres9IndexDao(INDEX_TABLE_NAME);
        this.mapper = new EntityUserNotificationMapper();
    }
View Full Code Here

    private final Postgres9EntityDao entityDao;
    private final Postgres9IndexDao indexDao;
    private final EntityUserTwitterLinkMapper mapper;

    public Postgres9UserTwitterLinkDao() {
        this.entityDao = new Postgres9EntityDao(ENTITY_TABLE_NAME);
        this.indexDao = new Postgres9IndexDao(INDEX_TABLE_NAME);
        this.mapper = new EntityUserTwitterLinkMapper();
    }
View Full Code Here

    private final Postgres9EntityDao entityDao;
    private final Postgres9IndexDao indexDao;
    private final EntityEnrollmentMapper mapper;

    public Postgres9UserTicketDao() {
        this.entityDao = new Postgres9EntityDao(ENTITY_TABLE_NAME);
        this.indexDao = new Postgres9IndexDao(INDEX_TABLE_NAME);
        this.mapper = new EntityEnrollmentMapper();
    }
View Full Code Here

TOP

Related Classes of in.partake.model.dao.postgres9.Postgres9EntityDao

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.