Package com.google.code.rees.scope.conversation.annotations

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


                        }
                       
                        //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

                        }
                       
                        //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

Related Classes of com.google.code.rees.scope.conversation.annotations.BeginConversation

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.