Package org.housecream.restmcu.api.resource.server

Examples of org.housecream.restmcu.api.resource.server.RestMcuNotifyResource


    public void sendNotif(RestMcuLineNotification notif) {
        if (notif.getSource() == null) {
            notif.setSource(source);
        }
        RestMcuNotifyResource client = builder.buildClient(RestMcuNotifyResource.class,
                boardSettings.getNotifyUrl());
        client.lineNotification(notif);
    }
View Full Code Here


                boardSettings.getNotifyUrl());
        client.lineNotification(notif);
    }

    public void sendNotif(RestMcuBoardNotification notif) {
        RestMcuNotifyResource client = builder.buildClient(RestMcuNotifyResource.class,
                boardSettings.getNotifyUrl());
        client.boardNotification(notif);
    }
View Full Code Here

TOP

Related Classes of org.housecream.restmcu.api.resource.server.RestMcuNotifyResource

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.