Package org.criticalfailure.torchlight.core.domain.entity.object

Examples of org.criticalfailure.torchlight.core.domain.entity.object.ObjectTemplate.save()


                ot.addProperty(op);
                op.setObjectTemplate(ot);
                op.setCampaign(ot.getCampaign());

                try {
                    ot.save();
                }
                catch(Exception e) {
                    logger.error("Exception while trying to save object template: " + e.getLocalizedMessage(), e);

                    alertService.addAlert(new Alert(Alert.Type.ERROR, this.getClass().getSimpleName(), e
View Full Code Here


                // TODO: alert service

                throw e;
            }

            ot.save();
        }

        return ot;
    }
View Full Code Here

        campaign.addObject(ot);

        // save the object template and the campaign
        try {
            ot.save();
            campaign.save();
        }
        catch(Exception e) {
            logger.error("Exception while trying to save object template: " + e.getLocalizedMessage(), e);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.