Coverage Report - org.mule.api.registry.ServiceType
 
Classes in this File Line Coverage Branch Coverage Complexity
ServiceType
0%
0/11
N/A
0
 
 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.api.registry;
 8  
 
 9  
 /**
 10  
  * TODO
 11  
  */
 12  0
 public enum ServiceType
 13  
 {
 14  0
     TRANSPORT("transport", "org/mule/transport"),
 15  0
     MODEL("model", "org/mule/model"),
 16  0
     EXCEPTION("exception", "org/mule/config");
 17  
 
 18  
     private String name;
 19  
     private String path;
 20  
 
 21  
     ServiceType(String name, String path)
 22  0
     {
 23  0
         this.name = name;
 24  0
         this.path = path;
 25  0
     }
 26  
 
 27  
     @Override
 28  
     public String toString()
 29  
     {
 30  0
         return name + ": " + path;
 31  
     }
 32  
 
 33  
     public String getPath()
 34  
     {
 35  0
         return path;
 36  
     }
 37  
 
 38  
     public String getName()
 39  
     {
 40  0
         return name;
 41  
     }
 42  
 }
 43  
 
 44