mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUAC-1104: Move parent identifier functions to common base objects.
This commit is contained in:
@@ -0,0 +1,78 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2015 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.auth.jdbc.base;
|
||||||
|
|
||||||
|
import org.glyptodon.guacamole.auth.jdbc.connectiongroup.RootConnectionGroup;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Common base class for objects that will ultimately be made available through
|
||||||
|
* the Directory class. All such objects will need the same base set of queries
|
||||||
|
* to fulfill the needs of the Directory class.
|
||||||
|
*
|
||||||
|
* @author Michael Jumper
|
||||||
|
* @param <ModelType>
|
||||||
|
* The type of model object that corresponds to this object.
|
||||||
|
*/
|
||||||
|
public abstract class GroupedDirectoryObject<ModelType extends GroupedObjectModel>
|
||||||
|
extends DirectoryObject<ModelType> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the identifier of the parent connection group, which cannot be
|
||||||
|
* null. If the parent is the root connection group, this will be
|
||||||
|
* RootConnectionGroup.IDENTIFIER.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* The identifier of the parent connection group.
|
||||||
|
*/
|
||||||
|
public String getParentIdentifier() {
|
||||||
|
|
||||||
|
// Translate null parent to proper identifier
|
||||||
|
String parentIdentifier = getModel().getParentIdentifier();
|
||||||
|
if (parentIdentifier == null)
|
||||||
|
return RootConnectionGroup.IDENTIFIER;
|
||||||
|
|
||||||
|
return parentIdentifier;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the identifier of the associated parent connection group. If the
|
||||||
|
* parent is the root connection group, this should be
|
||||||
|
* RootConnectionGroup.IDENTIFIER.
|
||||||
|
*
|
||||||
|
* @param parentIdentifier
|
||||||
|
* The identifier of the connection group to associate as this object's
|
||||||
|
* parent.
|
||||||
|
*/
|
||||||
|
public void setParentIdentifier(String parentIdentifier) {
|
||||||
|
|
||||||
|
// Translate root identifier back into null
|
||||||
|
if (parentIdentifier != null
|
||||||
|
&& parentIdentifier.equals(RootConnectionGroup.IDENTIFIER))
|
||||||
|
parentIdentifier = null;
|
||||||
|
|
||||||
|
getModel().setParentIdentifier(parentIdentifier);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,67 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2015 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.auth.jdbc.base;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Object representation of a Guacamole object, such as a user or connection,
|
||||||
|
* as represented in the database.
|
||||||
|
*
|
||||||
|
* @author Michael Jumper
|
||||||
|
*/
|
||||||
|
public abstract class GroupedObjectModel extends ObjectModel {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The unique identifier which identifies the parent of this object.
|
||||||
|
*/
|
||||||
|
private String parentIdentifier;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new, empty object.
|
||||||
|
*/
|
||||||
|
public GroupedObjectModel() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the identifier of the parent connection group, or null if the
|
||||||
|
* parent connection group is the root connection group.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* The identifier of the parent connection group, or null if the parent
|
||||||
|
* connection group is the root connection group.
|
||||||
|
*/
|
||||||
|
public String getParentIdentifier() {
|
||||||
|
return parentIdentifier;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the identifier of the parent connection group.
|
||||||
|
*
|
||||||
|
* @param parentIdentifier
|
||||||
|
* The identifier of the parent connection group, or null if the parent
|
||||||
|
* connection group is the root connection group.
|
||||||
|
*/
|
||||||
|
public void setParentIdentifier(String parentIdentifier) {
|
||||||
|
this.parentIdentifier = parentIdentifier;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
package org.glyptodon.guacamole.auth.jdbc.connection;
|
package org.glyptodon.guacamole.auth.jdbc.connection;
|
||||||
|
|
||||||
import org.glyptodon.guacamole.auth.jdbc.base.ObjectModel;
|
import org.glyptodon.guacamole.auth.jdbc.base.GroupedObjectModel;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Object representation of a Guacamole connection, as represented in the
|
* Object representation of a Guacamole connection, as represented in the
|
||||||
@@ -30,13 +30,7 @@ import org.glyptodon.guacamole.auth.jdbc.base.ObjectModel;
|
|||||||
*
|
*
|
||||||
* @author Michael Jumper
|
* @author Michael Jumper
|
||||||
*/
|
*/
|
||||||
public class ConnectionModel extends ObjectModel {
|
public class ConnectionModel extends GroupedObjectModel {
|
||||||
|
|
||||||
/**
|
|
||||||
* The identifier of the parent connection group in the database, or null
|
|
||||||
* if the parent connection group is the root group.
|
|
||||||
*/
|
|
||||||
private String parentIdentifier;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The human-readable name associated with this connection.
|
* The human-readable name associated with this connection.
|
||||||
@@ -95,29 +89,6 @@ public class ConnectionModel extends ObjectModel {
|
|||||||
this.protocol = protocol;
|
this.protocol = protocol;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the identifier of the parent connection group, or null if the
|
|
||||||
* parent connection group is the root connection group.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* The identifier of the parent connection group, or null if the parent
|
|
||||||
* connection group is the root connection group.
|
|
||||||
*/
|
|
||||||
public String getParentIdentifier() {
|
|
||||||
return parentIdentifier;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the identifier of the parent connection group.
|
|
||||||
*
|
|
||||||
* @param parentIdentifier
|
|
||||||
* The identifier of the parent connection group, or null if the parent
|
|
||||||
* connection group is the root connection group.
|
|
||||||
*/
|
|
||||||
public void setParentIdentifier(String parentIdentifier) {
|
|
||||||
this.parentIdentifier = parentIdentifier;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getIdentifier() {
|
public String getIdentifier() {
|
||||||
|
|
||||||
|
@@ -25,10 +25,9 @@ package org.glyptodon.guacamole.auth.jdbc.connection;
|
|||||||
import com.google.inject.Inject;
|
import com.google.inject.Inject;
|
||||||
import com.google.inject.Provider;
|
import com.google.inject.Provider;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import org.glyptodon.guacamole.auth.jdbc.base.DirectoryObject;
|
|
||||||
import org.glyptodon.guacamole.auth.jdbc.connectiongroup.RootConnectionGroup;
|
|
||||||
import org.glyptodon.guacamole.auth.jdbc.socket.GuacamoleSocketService;
|
import org.glyptodon.guacamole.auth.jdbc.socket.GuacamoleSocketService;
|
||||||
import org.glyptodon.guacamole.GuacamoleException;
|
import org.glyptodon.guacamole.GuacamoleException;
|
||||||
|
import org.glyptodon.guacamole.auth.jdbc.base.GroupedDirectoryObject;
|
||||||
import org.glyptodon.guacamole.net.GuacamoleSocket;
|
import org.glyptodon.guacamole.net.GuacamoleSocket;
|
||||||
import org.glyptodon.guacamole.net.auth.Connection;
|
import org.glyptodon.guacamole.net.auth.Connection;
|
||||||
import org.glyptodon.guacamole.net.auth.ConnectionRecord;
|
import org.glyptodon.guacamole.net.auth.ConnectionRecord;
|
||||||
@@ -42,7 +41,7 @@ import org.glyptodon.guacamole.protocol.GuacamoleConfiguration;
|
|||||||
* @author James Muehlner
|
* @author James Muehlner
|
||||||
* @author Michael Jumper
|
* @author Michael Jumper
|
||||||
*/
|
*/
|
||||||
public class ModeledConnection extends DirectoryObject<ConnectionModel>
|
public class ModeledConnection extends GroupedDirectoryObject<ConnectionModel>
|
||||||
implements Connection {
|
implements Connection {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -84,30 +83,6 @@ public class ModeledConnection extends DirectoryObject<ConnectionModel>
|
|||||||
getModel().setName(name);
|
getModel().setName(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getParentIdentifier() {
|
|
||||||
|
|
||||||
// Translate null parent to proper identifier
|
|
||||||
String parentIdentifier = getModel().getParentIdentifier();
|
|
||||||
if (parentIdentifier == null)
|
|
||||||
return RootConnectionGroup.IDENTIFIER;
|
|
||||||
|
|
||||||
return parentIdentifier;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setParentIdentifier(String parentIdentifier) {
|
|
||||||
|
|
||||||
// Translate root identifier back into null
|
|
||||||
if (parentIdentifier != null
|
|
||||||
&& parentIdentifier.equals(RootConnectionGroup.IDENTIFIER))
|
|
||||||
parentIdentifier = null;
|
|
||||||
|
|
||||||
getModel().setParentIdentifier(parentIdentifier);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public GuacamoleConfiguration getConfiguration() {
|
public GuacamoleConfiguration getConfiguration() {
|
||||||
|
|
||||||
|
@@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
package org.glyptodon.guacamole.auth.jdbc.connectiongroup;
|
package org.glyptodon.guacamole.auth.jdbc.connectiongroup;
|
||||||
|
|
||||||
import org.glyptodon.guacamole.auth.jdbc.base.ObjectModel;
|
import org.glyptodon.guacamole.auth.jdbc.base.GroupedObjectModel;
|
||||||
import org.glyptodon.guacamole.net.auth.ConnectionGroup;
|
import org.glyptodon.guacamole.net.auth.ConnectionGroup;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -31,13 +31,7 @@ import org.glyptodon.guacamole.net.auth.ConnectionGroup;
|
|||||||
*
|
*
|
||||||
* @author Michael Jumper
|
* @author Michael Jumper
|
||||||
*/
|
*/
|
||||||
public class ConnectionGroupModel extends ObjectModel {
|
public class ConnectionGroupModel extends GroupedObjectModel {
|
||||||
|
|
||||||
/**
|
|
||||||
* The identifier of the parent connection group in the database, or null
|
|
||||||
* if the parent connection group is the root group.
|
|
||||||
*/
|
|
||||||
private String parentIdentifier;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The human-readable name associated with this connection group.
|
* The human-readable name associated with this connection group.
|
||||||
@@ -75,29 +69,6 @@ public class ConnectionGroupModel extends ObjectModel {
|
|||||||
this.name = name;
|
this.name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the identifier of the parent connection group, or null if the
|
|
||||||
* parent connection group is the root connection group.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* The identifier of the parent connection group, or null if the parent
|
|
||||||
* connection group is the root connection group.
|
|
||||||
*/
|
|
||||||
public String getParentIdentifier() {
|
|
||||||
return parentIdentifier;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the identifier of the parent connection group.
|
|
||||||
*
|
|
||||||
* @param parentIdentifier
|
|
||||||
* The identifier of the parent connection group, or null if the parent
|
|
||||||
* connection group is the root connection group.
|
|
||||||
*/
|
|
||||||
public void setParentIdentifier(String parentIdentifier) {
|
|
||||||
this.parentIdentifier = parentIdentifier;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the type of this connection group, such as organizational or
|
* Returns the type of this connection group, such as organizational or
|
||||||
* balancing.
|
* balancing.
|
||||||
|
@@ -24,10 +24,10 @@ package org.glyptodon.guacamole.auth.jdbc.connectiongroup;
|
|||||||
|
|
||||||
import com.google.inject.Inject;
|
import com.google.inject.Inject;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import org.glyptodon.guacamole.auth.jdbc.base.DirectoryObject;
|
|
||||||
import org.glyptodon.guacamole.auth.jdbc.connection.ConnectionService;
|
import org.glyptodon.guacamole.auth.jdbc.connection.ConnectionService;
|
||||||
import org.glyptodon.guacamole.auth.jdbc.socket.GuacamoleSocketService;
|
import org.glyptodon.guacamole.auth.jdbc.socket.GuacamoleSocketService;
|
||||||
import org.glyptodon.guacamole.GuacamoleException;
|
import org.glyptodon.guacamole.GuacamoleException;
|
||||||
|
import org.glyptodon.guacamole.auth.jdbc.base.GroupedDirectoryObject;
|
||||||
import org.glyptodon.guacamole.net.GuacamoleSocket;
|
import org.glyptodon.guacamole.net.GuacamoleSocket;
|
||||||
import org.glyptodon.guacamole.net.auth.ConnectionGroup;
|
import org.glyptodon.guacamole.net.auth.ConnectionGroup;
|
||||||
import org.glyptodon.guacamole.protocol.GuacamoleClientInformation;
|
import org.glyptodon.guacamole.protocol.GuacamoleClientInformation;
|
||||||
@@ -38,7 +38,7 @@ import org.glyptodon.guacamole.protocol.GuacamoleClientInformation;
|
|||||||
*
|
*
|
||||||
* @author James Muehlner
|
* @author James Muehlner
|
||||||
*/
|
*/
|
||||||
public class ModeledConnectionGroup extends DirectoryObject<ConnectionGroupModel>
|
public class ModeledConnectionGroup extends GroupedDirectoryObject<ConnectionGroupModel>
|
||||||
implements ConnectionGroup {
|
implements ConnectionGroup {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -75,30 +75,6 @@ public class ModeledConnectionGroup extends DirectoryObject<ConnectionGroupModel
|
|||||||
getModel().setName(name);
|
getModel().setName(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getParentIdentifier() {
|
|
||||||
|
|
||||||
// Translate null parent to proper identifier
|
|
||||||
String parentIdentifier = getModel().getParentIdentifier();
|
|
||||||
if (parentIdentifier == null)
|
|
||||||
return RootConnectionGroup.IDENTIFIER;
|
|
||||||
|
|
||||||
return parentIdentifier;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setParentIdentifier(String parentIdentifier) {
|
|
||||||
|
|
||||||
// Translate root identifier back into null
|
|
||||||
if (parentIdentifier != null
|
|
||||||
&& parentIdentifier.equals(RootConnectionGroup.IDENTIFIER))
|
|
||||||
parentIdentifier = null;
|
|
||||||
|
|
||||||
getModel().setParentIdentifier(parentIdentifier);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public GuacamoleSocket connect(GuacamoleClientInformation info)
|
public GuacamoleSocket connect(GuacamoleClientInformation info)
|
||||||
throws GuacamoleException {
|
throws GuacamoleException {
|
||||||
|
Reference in New Issue
Block a user