Coverage Report - com.aurea.maven.plugins.sonic.sdm.container.IContainerSetting
 
Classes in this File Line Coverage Branch Coverage Complexity
IContainerSetting
N/A
N/A
1
 
 1  
 package com.aurea.maven.plugins.sonic.sdm.container;
 2  
 
 3  
 import java.util.List;
 4  
 
 5  
 public interface IContainerSetting {
 6  
 
 7  
 
 8  
   /**
 9  
    * 
 10  
    */
 11  
   String ROLE = IContainerSetting.class.getName();
 12  
 
 13  
   /**
 14  
    * @return String
 15  
    */
 16  
   String getBusConnection();
 17  
 
 18  
   String getSegment();
 19  
   
 20  
   String getLogDirectory();
 21  
   
 22  
   String getContainerParameterSet();
 23  
   
 24  
   /**
 25  
    * @return String
 26  
    */
 27  
   String getRoutingHttpConnection();
 28  
 
 29  
   /**
 30  
    * @return String
 31  
    */
 32  
   String getEnablePayloadCapture();
 33  
 
 34  
   /**
 35  
    * @return String
 36  
    */
 37  
   String getUseForLookingGlass();
 38  
 
 39  
   /**
 40  
    * @return String
 41  
    */
 42  
   String getUseIntraContainerMessaging();
 43  
 
 44  
   /**
 45  
    * @return String
 46  
    */
 47  
   String getName();
 48  
 
 49  
   /**
 50  
    * @return Name of the backup container or empty string if none.
 51  
    */
 52  
   String getBackupContainer();
 53  
   
 54  
   /**
 55  
    * @return true if this container should be started automatically after SDM installation
 56  
    */
 57  
   boolean isBootContainer();
 58  
 
 59  
   /**
 60  
    * @return List<IIncludePattern>
 61  
    */
 62  
   List<IIncludePattern> getIncludes();
 63  
 
 64  
   boolean isClone();
 65  
 
 66  
 }