GUACAMOLE-5: Define sharing profiles and their relationship to connections.

This commit is contained in:
Michael Jumper
2016-07-14 01:47:06 -07:00
parent 11b64be3de
commit eededc33ca
8 changed files with 335 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ package org.apache.guacamole.rest.connection;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.apache.guacamole.GuacamoleException;
import org.apache.guacamole.net.GuacamoleTunnel;
import org.apache.guacamole.net.auth.Connection;
@@ -122,6 +123,11 @@ public class APIConnectionWrapper implements Connection {
apiConnection.setAttributes(attributes);
}
@Override
public Set<String> getSharingProfileIdentifiers() {
throw new UnsupportedOperationException("Operation not supported.");
}
@Override
public GuacamoleTunnel connect(GuacamoleClientInformation info) throws GuacamoleException {
throw new UnsupportedOperationException("Operation not supported.");