Coverage Report - org.mule.tools.visualizer.util.MuleTag
 
Classes in this File Line Coverage Branch Coverage Complexity
MuleTag
0%
0/1
N/A
0
 
 1  
 /*
 2  
  * $Id: MuleTag.java 7963 2007-08-21 08:53:15Z dirk.olmes $
 3  
  * --------------------------------------------------------------------------------------
 4  
  * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
 5  
  *
 6  
  * The software in this package is published under the terms of the CPAL v1.0
 7  
  * license, a copy of which has been included with this distribution in the
 8  
  * LICENSE.txt file.
 9  
  */
 10  
 
 11  
 package org.mule.tools.visualizer.util;
 12  
 
 13  0
 public class MuleTag
 14  
 {
 15  
 
 16  
     public static final String ATTRIBUTE_ADDRESS = "address";
 17  
 
 18  
     public static final String ELEMENT_ENDPOINT = "endpoint";
 19  
     public static final String ELEMENT_GLOBAL_ENDPOINT = "global-endpoint";
 20  
 
 21  
     public static final String ATTRIBUTE_INBOUNDENDPOINT = "inboundEndpoint";
 22  
 
 23  
     public static final String ATTRIBUTE_OUTBOUNDENDPOINT = "outboundEndpoint";
 24  
 
 25  
     public static final String ATTRIBUTE_CLASS_NAME = "className";
 26  
     public static final String ATTRIBUTE_RETURN_CLASS = "returnClass";
 27  
 
 28  
     public static final String ATTRIBUTE_NAME = "name";
 29  
     public static final String ATTRIBUTE_TYPE = "type";
 30  
     public static final String ATTRIBUTE_VALUE = "value";
 31  
     public static final String ATTRIBUTE_SYNCHRONOUS = "synchronous";
 32  
 
 33  
     public static final String ELEMENT_AGENT = "agent";
 34  
     public static final String ELEMENT_AGENTS = "agents";
 35  
     public static final String ELEMENT_CONNECTOR = "connector";
 36  
     public static final String ELEMENT_CONNECTION_STRATEGY = "connection-strategy";
 37  
     public static final String ELEMENT_ENDPOINT_IDENTFIERS = "endpoint-identifiers";
 38  
     public static final String ELEMENT_TRANSFORMERS = "transformers";
 39  
     public static final String ELEMENT_TRANSFORMER = "transformer";
 40  
     public static final String ELEMENT_MODEL = "model";
 41  
     public static final String ELEMENT_MULE_DESCRIPTOR = "mule-descriptor";
 42  
     public static final String ELEMENT_EXCEPTION_STRATEGY = "exception-strategy";
 43  
     public static final String ELEMENT_CATCH_ALL_STRATEGY = "catch-all-strategy";
 44  
     public static final String ELEMENT_MULE_ENVIRONMENT_PROPERTIES = "mule-environment-properties";
 45  
 
 46  
     public static final String ELEMENT_FILTER = "filter";
 47  
     public static final String ELEMENT_LEFT_FILTER = "left-filter";
 48  
     public static final String ELEMENT_RIGHT_FILTER = "right-filter";
 49  
 
 50  
     public static final String ELEMENT_INBOUND_ROUTER = "inbound-router";
 51  
     public static final String ELEMENT_OUTBOUND_ROUTER = "outbound-router";
 52  
     public static final String ELEMENT_RESPONSE_ROUTER = "response-router";
 53  
     public static final String ELEMENT_ROUTER = "router";
 54  
     public static final String ELEMENT_REPLY_TO = "reply-to";
 55  
 
 56  
     public static final String ELEMENT_PROPERTIES = "properties";
 57  
     public static final String ELEMENT_PROPERTY = "property";
 58  
     public static final String ELEMENT_DESCRIPTION = "description";
 59  
     public static final String ELEMENT_THREADING_PROFILE = "threading-profile";
 60  
     public static final String ELEMENT_POOLING_PROFILE = "pooling-profile";
 61  
     public static final String ELEMENT_QUEUE_PROFILE = "queue-profile";
 62  
 
 63  
 }