Package org.mule.registry.impl

Examples of org.mule.registry.impl.AbstractUnit


        return descriptor;
    }

  public Unit getUnit(String name) {
    for (Iterator it = this.units.iterator(); it.hasNext();) {
      AbstractUnit u = (AbstractUnit) it.next();
      if (u.getName().equals(name)) {
        return u;
      }
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of org.mule.registry.impl.AbstractUnit

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.