org.stjs.bridge.cloudinary.CloudinaryEventHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudinaryjs Show documentation
Show all versions of cloudinaryjs Show documentation
Cloudinary_js is the js libary to use library from webbrowser in javascript. Currently supports the v1 of the library ((https://github.com/cloudinary/cloudinary_js/))
The newest version!
/*
ST-JS-Cloudinary, a ST-JS bridge for cloudinary_js
(c) 2015 La Roue Verte
This file is part of ST-JS-Cloudinary.
ST-JS-Cloudinary is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or any later version.
ST-JS-Cloudinary is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with ST-JS-Cloudinary. If not, see
*/
package org.stjs.bridge.cloudinary;
import org.stjs.javascript.annotation.JavascriptFunction;
import org.stjs.javascript.annotation.SyntheticType;
import org.stjs.javascript.jquery.Event;
@SyntheticType
@JavascriptFunction
public interface CloudinaryEventHandler {
public boolean onEvent(Event ev, CloudinaryResponse data);
}