Package org.jboss.portal.portlet.impl.jsr168.api

Source Code of org.jboss.portal.portlet.impl.jsr168.api.ResourceResponseImpl

/******************************************************************************
* JBoss, a division of Red Hat                                               *
* Copyright 2006, Red Hat Middleware, LLC, and individual                    *
* contributors as indicated by the @authors tag. See the                     *
* copyright.txt in the distribution for a full listing of                    *
* individual contributors.                                                   *
*                                                                            *
* This is free software; you can redistribute it and/or modify it            *
* under the terms of the GNU Lesser General Public License as                *
* published by the Free Software Foundation; either version 2.1 of           *
* the License, or (at your option) any later version.                        *
*                                                                            *
* This software 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           *
* Lesser General Public License for more details.                            *
*                                                                            *
* You should have received a copy of the GNU Lesser General Public           *
* License along with this software; if not, write to the Free                *
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA         *
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.                   *
******************************************************************************/
package org.jboss.portal.portlet.impl.jsr168.api;

import org.jboss.portal.common.net.media.ContentType;
import org.jboss.portal.common.net.media.MediaType;
import org.jboss.portal.common.net.media.Parameter;
import org.jboss.portal.portlet.invocation.ResourceInvocation;
import org.jboss.portal.portlet.invocation.response.ContentResponse;
import org.jboss.portal.portlet.invocation.response.ResponseProperties;
import org.jboss.portal.portlet.cache.CacheLevel;
import org.jboss.portal.portlet.cache.CacheControl;

import javax.portlet.ResourceResponse;
import javax.portlet.PortletURL;

import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import java.util.Map;

/**
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 630 $
*/
public class ResourceResponseImpl extends MimeResponseImpl implements ResourceResponse
{

   /** . */
   private final CacheLevel cacheability;

   public ResourceResponseImpl(ResourceInvocation invocation, PortletRequestImpl preq)
   {
      super(invocation, preq);

      //
      this.cacheability = invocation.getCacheLevel();
   }

   public void setLocale(Locale locale)
   {
      // TODO: setLocale should also set the character encoding according to the mapping done in web.xml
     
      if (locale == null)
      {
         throw new IllegalArgumentException("Locale cannot be null");
      }
      if ("".equals(locale.getCountry()))
      {
          addProperty("Content-Language", locale.getLanguage());
      }
      else
      {
          addProperty("Content-Language", locale.getLanguage() + "-" + locale.getCountry());
      }
   }

   public void setCharacterEncoding(String s)
   {
      List<Parameter> parameters = new ArrayList<Parameter>();
      MediaType mediaType = null;
     
      String contentTypeString = getContentType();
      if (contentTypeString != null)
      {
         ContentType contentType = ContentType.create(contentTypeString);
         mediaType = contentType.getMediaType();
         for (Parameter parameter : contentType.getParameters())
         {
            if (!parameter.getName().trim().toLowerCase().equals("charset"))
            {
               parameters.add(parameter);
            }
         }
      }
      else
      {
         // Default to "text/html"
         mediaType = MediaType.TEXT_HTML;
      }
      parameters.add(new Parameter("charset", s));
     
      setContentType(new ContentType(mediaType, parameters).getValue());
   }

   public void setContentLength(int i)
   {
      addProperty("Content-Length", "" + i);
   }

   public PortletURL createActionURL()
   {
      if (cacheability != CacheLevel.PAGE)
      {
         throw new IllegalStateException("Cannot create action URL because the current cache level " + cacheability +
            " is not " + CacheLevel.PAGE);
      }

      //
      return super.createActionURL();
   }

   public PortletURL createRenderURL()
   {
      if (cacheability != CacheLevel.PAGE)
      {
         throw new IllegalStateException("Cannot create render URL because the current cache level " + cacheability +
            " is not " + CacheLevel.PAGE);
      }

      //
      return super.createRenderURL();
   }

   protected ContentResponse createMarkupResponse(ResponseProperties properties, Map<String, Object> attributeMap, String contentType, byte[] bytes, String chars, CacheControl cacheControl)
   {
      return new ContentResponse(
         properties,
         attributeMap,
         contentType,
         bytes,
         chars,
         cacheControl);
   }
}
TOP

Related Classes of org.jboss.portal.portlet.impl.jsr168.api.ResourceResponseImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.