Package org.gatein.common

Examples of org.gatein.common.NotYetImplemented


        throw new NotYetImplemented();
    }

    @Override
    public HttpSession getHttpSession(String s) {
        throw new NotYetImplemented();
    }
View Full Code Here


         return locales;
      }

      public Object getAttribute(String arg0)
      {
         throw new NotYetImplemented();
      }
View Full Code Here

         throw new NotYetImplemented();
      }

      public void setAttribute(String arg0, Object arg1)
      {
         throw new NotYetImplemented();
      }
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

   }

   @Override
   public List<Extension> releaseExport(RegistrationContext registrationContext, byte[] exportContext, UserContext userContext)
   {
      throw new NotYetImplemented(); // WFT? this operation cannot fail? :)
   }
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

      final EventParams eventParams = handleEvents.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

      return driverContext.getRequestCount();
   }

   public String rewriteURLForNode(String url/*, NodeId nodeId*/) throws MalformedURLException
   {
      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.