Package org.dspace.app.cris.model

Examples of org.dspace.app.cris.model.StatSubscription


        }

        // add any new freqs
        for (Integer nfreq : freqsToAdd)
        {
            StatSubscription newStatSub = new StatSubscription();
            newStatSub.setUid(uuid);
            newStatSub.setTypeDef(type);
            newStatSub.setFreq(nfreq);
            newStatSub.setEpersonID(e.getID());
            as.saveOrUpdate(StatSubscription.class, newStatSub);
        }
    }
View Full Code Here

TOP

Related Classes of org.dspace.app.cris.model.StatSubscription

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.