Package org.gatein.common

Examples of org.gatein.common.NotYetImplemented


        return MAIN_ROOT;
    }

    // Not needed for integration cache
    protected TreeCache getCacheFromRegistry(Object registry, String registryName) throws IdentityException {
        throw new NotYetImplemented("getCacheFromRegistry not implemented on IntegrationCache");
    }
View Full Code Here


         PortletStateType stateType = statefulUpdatedPortletContext.getType();

         //
         if (consumerContext.stateId == null)
         {
            throw new NotYetImplemented();
         }

         //
         ConsumerState consumerState = new ConsumerState<Serializable>(updatedPortletContext.getId(), stateType, state);
         try
         {
            persistenceManager.updateState(consumerContext.stateId, consumerState);
         }
         catch (NoSuchStateException e)
         {
            // What to do ?
         }
         catch (InvalidStateIdException e)
         {
            // What to do ?
         }
      }
      else
      {
         if (consumerContext.stateId != null)
         {
            throw new NotYetImplemented();
         }
      }

      // As the point is to make it constant we can simply return it
      return portletContext;
View Full Code Here

      }
   }

   public WebExecutor getExecutor(HttpServletRequest request, HttpServletResponse response)
   {
      throw new NotYetImplemented();
   }
View Full Code Here

      }
   }

   public WebExecutor getExecutor(HttpServletRequest request, HttpServletResponse response)
   {
      throw new NotYetImplemented();
   }
View Full Code Here

      final EventParams eventParams = request.getEventParams();
      List<Event> events = eventParams.getEvents();

      if (events.size() > 1)
      {
         throw new NotYetImplemented("Need to support multiple events at once...");
      }

      // since we currently don't support sending multiple events to process at once, assume there's only one
      Event event = events.get(0);
View Full Code Here

         PortletStateType stateType = statefulUpdatedPortletContext.getType();

         //
         if (consumerContext.stateId == null)
         {
            throw new NotYetImplemented();
         }

         //
         ConsumerState consumerState = new ConsumerState<Serializable>(updatedPortletContext.getId(), stateType, state);
         try
         {
            persistenceManager.updateState(consumerContext.stateId, consumerState);
         }
         catch (NoSuchStateException e)
         {
            // What to do ?
         }
         catch (InvalidStateIdException e)
         {
            // What to do ?
         }
      }
      else
      {
         if (consumerContext.stateId != null)
         {
            throw new NotYetImplemented();
         }
      }

      // As the point is to make it constant we can simply return it
      return portletContext;
View Full Code Here

   }

   public PortletContext exportPortlet(PortletStateType stateType, PortletContext originalPortletContext)
      throws PortletInvokerException
   {
      throw new NotYetImplemented();
   }
View Full Code Here

   }

   public PortletContext importPortlet(PortletStateType stateType, PortletContext originalPortletContext)
      throws PortletInvokerException
   {
      throw new NotYetImplemented();
   }
View Full Code Here

                     return event.getType().toString();
                  }

                  public XmlRootElement getXMLBinding()
                  {
                     throw new NotYetImplemented(); // todo
                  }
               },
               event.getAliases());

            this.eventDescriptions.put(name, eventInfo);
View Full Code Here

   }

   public String rewriteURLForNode(String url, NodeId nodeId) throws MalformedURLException
   {
//      return testContext.rewriteURLForNode(url, nodeId);
      throw new NotYetImplemented("todo");
   }
View Full Code Here

TOP

Related Classes of org.gatein.common.NotYetImplemented

Copyright © 2018 www.massapicom. 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.