01: /******************************************************************************
02: * JBoss, a division of Red Hat *
03: * Copyright 2006, Red Hat Middleware, LLC, and individual *
04: * contributors as indicated by the @authors tag. See the *
05: * copyright.txt in the distribution for a full listing of *
06: * individual contributors. *
07: * *
08: * This is free software; you can redistribute it and/or modify it *
09: * under the terms of the GNU Lesser General Public License as *
10: * published by the Free Software Foundation; either version 2.1 of *
11: * the License, or (at your option) any later version. *
12: * *
13: * This software is distributed in the hope that it will be useful, *
14: * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
16: * Lesser General Public License for more details. *
17: * *
18: * You should have received a copy of the GNU Lesser General Public *
19: * License along with this software; if not, write to the Free *
20: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
21: * 02110-1301 USA, or see the FSF site: http://www.fsf.org. *
22: ******************************************************************************/package org.jboss.portal.test.theme;
23:
24: import org.jboss.portal.common.text.FastURLEncoder;
25: import org.jboss.portal.common.util.IteratorStatus;
26: import org.jboss.portal.test.theme.model.RenderedObject;
27: import org.jboss.portal.test.theme.model.WindowObject;
28:
29: import java.util.HashMap;
30: import java.util.Map;
31:
32: /**
33: * @author <a href="mailto:julien@jboss.org">Julien Viet</a>
34: * @version $Revision: 8811 $
35: */
36: public class ObjectURL {
37:
38: /** . */
39: private RenderedObject object;
40:
41: /** . */
42: private Map params;
43:
44: /** . */
45: private RequestContext requestContext;
46:
47: public ObjectURL(RenderedObject object,
48: RequestContext requestContext) {
49: this .object = object;
50: this .requestContext = requestContext;
51: this .params = new HashMap();
52: }
53:
54: public void setParameter(String name, String value) {
55: params.put(name, value);
56: }
57:
58: public String toString() {
59: StringBuffer url = new StringBuffer();
60:
61: //
62: url.append(requestContext.request.getContextPath());
63: url.append(requestContext.request.getServletPath());
64:
65: FastURLEncoder encoder = FastURLEncoder.getUTF8Instance();
66: //
67: if (object instanceof WindowObject) {
68: WindowObject window = (WindowObject) object;
69: url.append("/window/");
70: encoder.encode(window.getId(), url);
71: } else {
72: throw new IllegalStateException();
73: }
74:
75: //
76: for (IteratorStatus i = new IteratorStatus(params.entrySet()
77: .iterator()); i.hasNext();) {
78: Map.Entry entry = (Map.Entry) i.next();
79: String key = (String) entry.getKey();
80: String value = (String) entry.getValue();
81: url.append(i.isFirst() ? '?' : '&');
82: encoder.encode(key, url);
83: url.append('=');
84: encoder.encode(value, url);
85: }
86:
87: return url.toString();
88: }
89: }
|