taylor      01/05/07 08:28:56

  Added:       src/java/org/apache/jetspeed/services Profiler.java
  Log:
  renamed static accessor class 'ProfileManager' to 'Profiler'
  
  Revision  Changes    Path
  1.1                  
jakarta-jetspeed/src/java/org/apache/jetspeed/services/Profiler.java
  
  Index: Profiler.java
  ===================================================================
  /* ====================================================================
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 2000-2001 The Apache Software Foundation.  All rights
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution,
   *    if any, must include the following acknowledgment:
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowledgment may appear in the software itself,
   *    if and wherever such third-party acknowledgments normally appear.
   *
   * 4. The names "Apache" and "Apache Software Foundation" and
   *     "Apache Jetspeed" must not be used to endorse or promote products
   *    derived from this software without prior written permission. For
   *    written permission, please contact [EMAIL PROTECTED]
   *
   * 5. Products derived from this software may not be called "Apache" or
   *    "Apache Jetspeed", nor may "Apache" appear in their name, without
   *    prior written permission of the Apache Software Foundation.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   */
  
  package org.apache.jetspeed.services;
  
  import org.apache.jetspeed.om.profile.Profile;
  import org.apache.jetspeed.om.profile.ProfileException;
  import org.apache.jetspeed.services.profiler.ProfilerService;
  import org.apache.turbine.services.TurbineServices;
  import org.apache.turbine.util.RunData;
  import org.apache.turbine.util.DynamicURI;
  import org.apache.jetspeed.capability.CapabilityMap;
  import org.apache.jetspeed.util.MimeType;
  import java.io.IOException;
  
  /**
   * <P>This is a commodity static accessor class around the 
   * <code>ProfilerService</code> implementing the ProfilerService interface</P>
   * 
   * @see org.apache.jetspeed.services.profiler.Profiler
   * @see org.apache.jetspeed.services.profiler.ProfilerService
   * @author <a href="mailto:[EMAIL PROTECTED]";>David Sean Taylor</a>
   * @version $Id
   */
  public class Profiler
  {
  
      /** 
       * Commodity method for getting a reference to the service
       * singleton
       */
      private static ProfilerService getService()
      {
          return (ProfilerService)TurbineServices
                  .getInstance()
                  .getService(ProfilerService.SERVICE_NAME);
      }
      
      /**
       * @see ProfilerService#getProfile
       */
      public static Profile getProfile(RunData rundata, CapabilityMap cm)
          throws ProfileException
      {
         return getService().getProfile( rundata, cm );
      }
  
      /**
       * @see ProfilerService#getProfile
       */
      public static Profile getProfile(RunData rundata)
          throws ProfileException
      {
         return getService().getProfile( rundata );
      }
  
      /**
       * @see ProfilerService#getProfile
       */
      public static Profile getProfile(RunData data, MimeType mt)
          throws ProfileException
      {
          return getService().getProfile( data, mt );
      }
  
      /**
       * @see ProfilerService#setSessionProfile
       */
      public static void setSessionProfile(RunData rundata, Profile profile)
      {
          getService().setSessionProfile( rundata, profile );
      }
  
      /**
       * @see ProfilerService#getSessionProfile
       */
      public static Profile getSessionProfile(RunData rundata)
          throws ProfileException
      {
          return getService().getSessionProfile( rundata );
      }
  
      /**
       * @see ProfilerService#getSessionProfile
       */
      public static Profile createUserProfile(RunData rundata, String userName)
          throws IOException, ProfileException
      {
          return getService().createUserProfile( rundata, userName );
      }
  
      /**
       * @see ProfilerService#storeCookie
       */
      public static void storeCookie(RunData rundata)
      {
         getService().storeCookie( rundata );
      }
  
      /**
       * @see ProfilerService#makeDynamicURI
       */
       public static DynamicURI makeDynamicURI( RunData data )
          throws ProfileException
       {
          return getService().makeDynamicURI( data );
       }
  
      /**
       * @see ProfilerService#setSecurity
       */
      public void setSecurity( boolean flag )
      {
          getService().setSecurity(flag);
      }
  
      /**
       * @see ProfilerService#getSecurity
       */
      public boolean getSecurity()
      {
          return getService().getSecurity();
      }
  
      /**
       * @see ProfilerService#setLanguageProfiling
       */
      public void setLanguageProfiling( boolean flag )
      {
          getService().setLanguageProfiling(flag);
      }
  
      /**
       * @see ProfilerService#getLanguageProfiling
       */
      public boolean getLanguageProfiling()
      {
          return getService().getLanguageProfiling();
      }
  
      /**
       * @see ProfilerService#setResourceNameCaching
       */
      public void setResourceNameCaching( boolean flag )
      {
          getService().setResourceNameCaching(flag);
      }
  
      /**
       * @see ProfilerService#getResourceNameCaching
       */
      public boolean getResourceNameCaching()
      {
          return getService().getResourceNameCaching();
      }
  
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to