diff --git a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/event/ClipboardChangeEvent.java b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/event/ClipboardChangeEvent.java new file mode 100644 index 000000000..9e8f65714 --- /dev/null +++ b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/event/ClipboardChangeEvent.java @@ -0,0 +1,51 @@ +/* + * Copyright (C) 2013 Glyptodon LLC + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +package org.glyptodon.guacamole.net.basic.event; + +/** + * An event which is triggered whenever new clipboard data is received. + * + * @author Michael Jumper + */ +public class ClipboardChangeEvent { + + /** + * The new clipboard data. + */ + private final String data; + + /** + * Creates a new ClipboardChangeEvent which represents the changing of + * clipboard contents (or, rather, the receipt of new clipboard contents). + * + * @param data The new clipboard contents. + */ + public ClipboardChangeEvent(String data) { + this.data = data; + } + + public String getData() { + return data; + } + +} diff --git a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/event/listener/ClipboardChangeListener.java b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/event/listener/ClipboardChangeListener.java new file mode 100644 index 000000000..6ea3f6b8a --- /dev/null +++ b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/event/listener/ClipboardChangeListener.java @@ -0,0 +1,50 @@ +/* + * Copyright (C) 2013 Glyptodon LLC + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +package org.glyptodon.guacamole.net.basic.event.listener; + +import org.glyptodon.guacamole.GuacamoleException; +import org.glyptodon.guacamole.net.basic.event.ClipboardChangeEvent; + +/** + * A listener whose clipboardChanged() hook will fire immediately after + * clipboard data is received. + * + * @author Michael Jumper + */ +public interface ClipboardChangeListener { + + /** + * Event hook which fires immediately after an existing tunnel is closed. + * The return value of this hook dictates whether the tunnel is allowed to + * be closed. + * + * @param e The TunnelCloseEvent describing the tunnel being closed and + * any associated credentials. + * @throws GuacamoleException If an error occurs while handling the + * tunnel close event. Throwing an exception + * will also stop the tunnel from being closed. + */ + void clipboardChanged(ClipboardChangeEvent e) + throws GuacamoleException; + +}