#268: Add create/delete/update stubs.

This commit is contained in:
Michael Jumper
2013-02-09 01:54:35 -08:00
parent 11f34645e4
commit e493b36c62
7 changed files with 342 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
package net.sourceforge.guacamole.net.basic.crud.connections;
/*
* Guacamole - Clientless Remote Desktop
* Copyright (C) 2010 Michael Jumper
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.sourceforge.guacamole.net.auth.UserContext;
import net.sourceforge.guacamole.net.basic.AuthenticatingHttpServlet;
/**
* Simple HttpServlet which handles connection creation.
*
* @author Michael Jumper
*/
public class Create extends AuthenticatingHttpServlet {
@Override
protected void authenticatedService(
UserContext context,
HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
/* FIXME: STUB */
}
}

View File

@@ -0,0 +1,46 @@
package net.sourceforge.guacamole.net.basic.crud.connections;
/*
* Guacamole - Clientless Remote Desktop
* Copyright (C) 2010 Michael Jumper
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.sourceforge.guacamole.net.auth.UserContext;
import net.sourceforge.guacamole.net.basic.AuthenticatingHttpServlet;
/**
* Simple HttpServlet which handles connection deletion.
*
* @author Michael Jumper
*/
public class Delete extends AuthenticatingHttpServlet {
@Override
protected void authenticatedService(
UserContext context,
HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
/* FIXME: STUB */
}
}

View File

@@ -0,0 +1,46 @@
package net.sourceforge.guacamole.net.basic.crud.connections;
/*
* Guacamole - Clientless Remote Desktop
* Copyright (C) 2010 Michael Jumper
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.sourceforge.guacamole.net.auth.UserContext;
import net.sourceforge.guacamole.net.basic.AuthenticatingHttpServlet;
/**
* Simple HttpServlet which handles connection update.
*
* @author Michael Jumper
*/
public class Update extends AuthenticatingHttpServlet {
@Override
protected void authenticatedService(
UserContext context,
HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
/* FIXME: STUB */
}
}

View File

@@ -0,0 +1,46 @@
package net.sourceforge.guacamole.net.basic.crud.users;
/*
* Guacamole - Clientless Remote Desktop
* Copyright (C) 2010 Michael Jumper
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.sourceforge.guacamole.net.auth.UserContext;
import net.sourceforge.guacamole.net.basic.AuthenticatingHttpServlet;
/**
* Simple HttpServlet which handles user creation.
*
* @author Michael Jumper
*/
public class Create extends AuthenticatingHttpServlet {
@Override
protected void authenticatedService(
UserContext context,
HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
/* FIXME: STUB */
}
}

View File

@@ -0,0 +1,46 @@
package net.sourceforge.guacamole.net.basic.crud.users;
/*
* Guacamole - Clientless Remote Desktop
* Copyright (C) 2010 Michael Jumper
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.sourceforge.guacamole.net.auth.UserContext;
import net.sourceforge.guacamole.net.basic.AuthenticatingHttpServlet;
/**
* Simple HttpServlet which handles user deletion.
*
* @author Michael Jumper
*/
public class Delete extends AuthenticatingHttpServlet {
@Override
protected void authenticatedService(
UserContext context,
HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
/* FIXME: STUB */
}
}

View File

@@ -0,0 +1,46 @@
package net.sourceforge.guacamole.net.basic.crud.users;
/*
* Guacamole - Clientless Remote Desktop
* Copyright (C) 2010 Michael Jumper
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.sourceforge.guacamole.net.auth.UserContext;
import net.sourceforge.guacamole.net.basic.AuthenticatingHttpServlet;
/**
* Simple HttpServlet which handles user update.
*
* @author Michael Jumper
*/
public class Update extends AuthenticatingHttpServlet {
@Override
protected void authenticatedService(
UserContext context,
HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
/* FIXME: STUB */
}
}

View File

@@ -55,6 +55,17 @@
<url-pattern>/logout</url-pattern> <url-pattern>/logout</url-pattern>
</servlet-mapping> </servlet-mapping>
<!-- Connection Creation Servlet -->
<servlet>
<description>Connection creation servlet.</description>
<servlet-name>ConnectionCreate</servlet-name>
<servlet-class>net.sourceforge.guacamole.net.basic.crud.connections.Create</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>ConnectionCreate</servlet-name>
<url-pattern>/connections/create</url-pattern>
</servlet-mapping>
<!-- Connection List Servlet --> <!-- Connection List Servlet -->
<servlet> <servlet>
<description>Connection list servlet.</description> <description>Connection list servlet.</description>
@@ -66,6 +77,39 @@
<url-pattern>/connections</url-pattern> <url-pattern>/connections</url-pattern>
</servlet-mapping> </servlet-mapping>
<!-- Connection Update Servlet -->
<servlet>
<description>Connection update servlet.</description>
<servlet-name>ConnectionUpdate</servlet-name>
<servlet-class>net.sourceforge.guacamole.net.basic.crud.connections.Update</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>ConnectionUpdate</servlet-name>
<url-pattern>/connections/update</url-pattern>
</servlet-mapping>
<!-- Connection Deletion Servlet -->
<servlet>
<description>Connection deletion servlet.</description>
<servlet-name>ConnectionDelete</servlet-name>
<servlet-class>net.sourceforge.guacamole.net.basic.crud.connections.Delete</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>ConnectionDelete</servlet-name>
<url-pattern>/connections/delete</url-pattern>
</servlet-mapping>
<!-- User Creation Servlet -->
<servlet>
<description>User creation servlet.</description>
<servlet-name>UserCreate</servlet-name>
<servlet-class>net.sourceforge.guacamole.net.basic.crud.users.Create</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>UserCreate</servlet-name>
<url-pattern>/users/create</url-pattern>
</servlet-mapping>
<!-- User List Servlet --> <!-- User List Servlet -->
<servlet> <servlet>
<description>User list servlet.</description> <description>User list servlet.</description>
@@ -77,6 +121,28 @@
<url-pattern>/users</url-pattern> <url-pattern>/users</url-pattern>
</servlet-mapping> </servlet-mapping>
<!-- User Update Servlet -->
<servlet>
<description>User update servlet.</description>
<servlet-name>UserUpdate</servlet-name>
<servlet-class>net.sourceforge.guacamole.net.basic.crud.users.Update</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>UserUpdate</servlet-name>
<url-pattern>/users/update</url-pattern>
</servlet-mapping>
<!-- User Deletion Servlet -->
<servlet>
<description>User deletion servlet.</description>
<servlet-name>UserDelete</servlet-name>
<servlet-class>net.sourceforge.guacamole.net.basic.crud.users.Delete</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>UserDelete</servlet-name>
<url-pattern>/users/delete</url-pattern>
</servlet-mapping>
<!-- Permission List Servlet --> <!-- Permission List Servlet -->
<servlet> <servlet>
<description>Permission list servlet.</description> <description>Permission list servlet.</description>