Package it.freedomotic.events

Examples of it.freedomotic.events.ObjectHasChangedBehavior


    @RequiresPermissions("objects:update")
    public synchronized void setChanged(boolean value) {
        if (value == true) {
            this.changed = true;

            ObjectHasChangedBehavior objectEvent = new ObjectHasChangedBehavior(this, this);
            //send multicast because an event must be received by all triggers registred on the destination channel
            LOG.log(Level.CONFIG, "Object {0} changes something in its status (eg: a behavior value)",
                    this.getPojo().getName());
            busService.send(objectEvent);
        } else {
View Full Code Here

TOP

Related Classes of it.freedomotic.events.ObjectHasChangedBehavior

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.