1 package com.github.mikkoi.maven.plugins.enforcer.rule.propertyusage.configuration;
2
3 import javax.annotation.Nonnull;
4 import java.util.Collection;
5 import java.util.Collections;
6
7 public class Usages {
8
9 private Usages() {
10 // This class cannot be instantiated.
11 throw new AssertionError();
12 }
13
14 /**
15 * Get Default value
16 *
17 * @return collection of strings
18 */
19 @Nonnull
20 public static Collection<String> getDefault() {
21 return Collections.singleton("src/main/java/**/*.java");
22 }
23 }