Package com.castronu.joomlajavaapi.domain

Examples of com.castronu.joomlajavaapi.domain.CustomNamingStrategy


        asfb.setHibernateProperties(getHibernateProperties());
        String prefixTable = environment.getProperty("joomladb.prefixtable");
        if (StringUtils.isEmpty(prefixTable)) {
            throw new IllegalStateException("Please provide joomladb.prefixtable");
        }
        asfb.setNamingStrategy(new CustomNamingStrategy(prefixTable));
        List<Class> classes = new ArrayList<Class>();
        classes.add(com.castronu.joomlajavaapi.domain.Category.class);
        classes.add(Content.class);
        classes.add(Menu.class);
        asfb.setAnnotatedClasses((classes.toArray(new Class[classes.size()])));
View Full Code Here

TOP

Related Classes of com.castronu.joomlajavaapi.domain.CustomNamingStrategy

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.