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

com.liberologico.cloudesire.cmw.model.dto.CacheDTO Maven / Gradle / Ivy

The newest version!
package com.liberologico.cloudesire.cmw.model.dto;

public class CacheDTO
{
    private HibernateCacheDTO hibernateCache = new HibernateCacheDTO();
    private SpringCacheDTO springCache = new SpringCacheDTO();

    public HibernateCacheDTO getHibernateCache()
    {
        return hibernateCache;
    }

    public void setHibernateCache( HibernateCacheDTO hibernateCache )
    {
        this.hibernateCache = hibernateCache;
    }

    public SpringCacheDTO getSpringCache()
    {
        return springCache;
    }

    public void setSpringCache( SpringCacheDTO springCache )
    {
        this.springCache = springCache;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy