Examples of BeginConversation


Examples of com.google.code.rees.scope.conversation.annotations.BeginConversation

  @Override
  public Collection<String> getBeginConversations(Class<?> clazz, Method method) {
    Set<String> methodConversations = new HashSet<String>();
    if (method.isAnnotationPresent(BeginConversation.class)) {
      BeginConversation conversationmethod = method.getAnnotation(BeginConversation.class);
      String[] conversations = conversationmethod.conversations();
      if (conversations.length == 0) {
        conversations = getConversationControllerConversations(clazz, actionSuffix);
      }
      methodConversations.addAll(Arrays.asList(conversations));
    } else if (method.getName().startsWith("begin")) {
View Full Code Here

Examples of com.google.code.rees.scope.conversation.annotations.BeginConversation

    @Override
    public Collection<String> getBeginConversations(Class<?> clazz, Method method) {
        Set<String> methodConversations = new HashSet<String>();
        Class<?> declaringClass = method.getDeclaringClass();
        if (method.isAnnotationPresent(BeginConversation.class)) {
            BeginConversation conversationmethod = method.getAnnotation(BeginConversation.class);
            methodConversations.addAll(Arrays.asList(conversationmethod.conversations()));
            if (declaringClass.equals(clazz) && methodConversations.size() == 0) {
                methodConversations.addAll(Arrays.asList(getConversationsWithoutInheritance(clazz, actionSuffix)));
            }
        } else if (declaringClass.equals(clazz) && method.getName().startsWith("begin")) {
            methodConversations.addAll(Arrays.asList(getConversationsWithoutInheritance(clazz, actionSuffix)));
View Full Code Here

Examples of com.google.code.rees.scope.conversation.annotations.BeginConversation

    @Override
    public Collection<String> getBeginConversations(Class<?> clazz,
            Method method) {
        Set<String> methodConversations = new HashSet<String>();
        if (method.isAnnotationPresent(BeginConversation.class)) {
            BeginConversation conversationmethod = method
                    .getAnnotation(BeginConversation.class);
            String[] conversations = conversationmethod.conversations();
            if (conversations.length == 0) {
                conversations = getConversationsWithoutInheritance(clazz,
                        actionSuffix);
            }
            methodConversations.addAll(Arrays.asList(conversations));
View Full Code Here

Examples of com.google.code.rees.scope.conversation.annotations.BeginConversation

                        }
                       
                        //yeah this code just got placed here because it was easy - again, this class and the arbitrator just need overhauling (but thats a lot of work!)
                        long maxIdleTime = this.maxIdleTimeMillis;
                    if (method.isAnnotationPresent(BeginConversation.class)) {
                      BeginConversation beginConversation = method.getAnnotation(BeginConversation.class);
                      if (beginConversation.maxIdleTimeMillis() != -1L) {
                        maxIdleTime = beginConversation.maxIdleTimeMillis();
                      }
                    }
                   
                    if (LOG.isDebugEnabled()) {
                            LOG.debug("Adding method " + methodName + " as a Begin Action to ConversationClassConfigurationImpl for Conversation " + conversation + " with a timeout of " + maxIdleTime / 1000 + " seconds.");
View Full Code Here

Examples of com.google.code.rees.scope.conversation.annotations.BeginConversation

                        }
                       
                        //yeah this code just got placed here because it was easy - again, this class and the arbitrator just need overhauling (but thats a lot of work!)
                        long maxIdleTime = this.maxIdleTimeMillis;
                    if (method.isAnnotationPresent(BeginConversation.class)) {
                      BeginConversation beginConversation = method.getAnnotation(BeginConversation.class);
                      if (beginConversation.maxIdleTimeMillis() != -1L) {
                        maxIdleTime = beginConversation.maxIdleTimeMillis();
                      }
                    }
                   
                    if (LOG.isDebugEnabled()) {
                            LOG.debug("Adding method " + methodName + " as a Begin Action to ConversationClassConfigurationImpl for Conversation " + conversation + " with a timeout of " + maxIdleTime / 1000 + " seconds.");
View Full Code Here
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.