Remove trailing whitespace.
[guacamole.git] / src / main / java / net / sourceforge / guacamole / net / basic / ConfigurationList.java
1 package net.sourceforge.guacamole.net.basic;
2
3 /*
4  *  Guacamole - Clientless Remote Desktop
5  *  Copyright (C) 2010  Michael Jumper
6  *
7  *  This program is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU Affero General Public License as published by
9  *  the Free Software Foundation, either version 3 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU Affero General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Affero General Public License
18  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 import java.io.IOException;
22 import java.io.PrintWriter;
23 import java.util.Map;
24 import java.util.Map.Entry;
25 import javax.servlet.http.HttpServlet;
26 import javax.servlet.http.HttpServletRequest;
27 import javax.servlet.http.HttpServletResponse;
28 import javax.servlet.http.HttpSession;
29 import net.sourceforge.guacamole.protocol.GuacamoleConfiguration;
30
31 /**
32  * Simple HttpServlet which outputs XML containing a list of all authorized
33  * configurations for the current user.
34  *
35  * @author Michael Jumper
36  */
37 public class ConfigurationList extends AuthenticatingHttpServlet {
38
39     @Override
40     protected void authenticatedService(
41             Map<String, GuacamoleConfiguration> configs,
42             HttpServletRequest request, HttpServletResponse response)
43     throws IOException {
44
45         // Do not cache
46         response.setHeader("Cache-Control", "no-cache");
47
48         // Write XML
49         response.setHeader("Content-Type", "text/xml");
50         PrintWriter out = response.getWriter();
51         out.println("<configs>");
52
53         for (Entry<String, GuacamoleConfiguration> entry : configs.entrySet()) {
54
55             GuacamoleConfiguration config = entry.getValue();
56
57             // Write config
58             out.print("<config id=\"");
59             out.print(entry.getKey());
60             out.print("\" protocol=\"");
61             out.print(config.getProtocol());
62             out.println("\"/>");
63
64         }
65
66         out.println("</configs>");
67     }
68
69 }
70