1 /* 2 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com 3 * The software in this package is published under the terms of the CPAL v1.0 4 * license, a copy of which has been included with this distribution in the 5 * LICENSE.txt file. 6 */ 7 package org.mule.module.management.mbean; 8 9 import javax.management.ObjectName; 10 11 /** 12 * <code>FlowConstructServiceMBean</code> defines the management interface for a mule 13 * managed flow construct. 14 */ 15 public interface FlowConstructServiceMBean extends FlowConstructStatsMBean 16 { 17 /** 18 * The statistics for this flow construct 19 * 20 * @return statistics for this flow construct 21 * @see org.mule.module.management.mbean.FlowConstructStats 22 */ 23 ObjectName getStatistics(); 24 25 /** 26 * The name of this service 27 * 28 * @return The name of this service 29 */ 30 String getName(); 31 32 /** 33 * The type of flow construct 34 */ 35 String getType(); 36 }