Package com.enioka.jqm.jpamodel

Examples of com.enioka.jqm.jpamodel.JobParameter


        return q;
    }

    private static JobParameter createJobParameter(String key, String value, EntityManager em)
    {
        JobParameter j = new JobParameter();

        j.setKey(key);
        j.setValue(value);

        em.persist(j);
        return j;
    }
View Full Code Here


    // ------------------ JOBPARAMETER -------------------------

    public static JobParameter createJobParameter(String key, String value, EntityManager em)
    {
        JobParameter j = new JobParameter();

        j.setKey(key);
        j.setValue(value);

        em.persist(j);
        return j;
    }
View Full Code Here

TOP

Related Classes of com.enioka.jqm.jpamodel.JobParameter

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.