| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| IIncludePattern |
|
| 1.0;1 |
| 1 | package com.aurea.maven.plugins.sonic.sdm.container; | |
| 2 | ||
| 3 | import java.util.Properties; | |
| 4 | ||
| 5 | public interface IIncludePattern { | |
| 6 | ||
| 7 | ||
| 8 | /** | |
| 9 | * | |
| 10 | */ | |
| 11 | String ROLE = IIncludePattern.class.getName(); | |
| 12 | ||
| 13 | /** | |
| 14 | * @return String | |
| 15 | */ | |
| 16 | String getPattern(); | |
| 17 | ||
| 18 | /** | |
| 19 | * @return Properties | |
| 20 | */ | |
| 21 | Properties getIncludeProperties(); | |
| 22 | } |