Do not generate union builders
[mdsal.git] / binding / mdsal-binding-java-api-generator / src / main / java / org / opendaylight / mdsal / binding / java / api / generator / Constants.java
index 194e73bd4fa2dd8b009a88511918edb2dc3a891c..a7c05835c0a33194a0d0b507179d4860305fe9b5 100644 (file)
@@ -7,23 +7,16 @@
  */
 package org.opendaylight.mdsal.binding.java.api.generator;
 
-import org.opendaylight.mdsal.binding.model.api.Type;
-import org.opendaylight.mdsal.binding.model.util.Types;
-import org.opendaylight.yangtools.yang.common.Empty;
-
 /**
  * Various constants when generating JAVA source code.
  */
 final class Constants {
-    public static final String COMMA = ",";
-    public static final String DOT = ".";
-
     /**
      * Name or prefix (multiple patterns in builder class as composed with '_' and upper case of the field name)
      * of the class constant which contains list of <code>Pattern</code> instances. The type of this constant is
      * Pattern[] for more than one pattern, or Pattern if there is only a single one.
      */
-    public static final String MEMBER_PATTERN_LIST = "patterns";
+    static final String MEMBER_PATTERN_LIST = "patterns";
 
     /**
      * Name or prefix (multiple patterns in builder class as composed with '_' and upper case of the field name)
@@ -31,12 +24,9 @@ final class Constants {
      * String[] (or String for single strings) and it corresponds to {@link #MEMBER_PATTERN_LIST} in both size
      * and ordering.
      */
-    public static final String MEMBER_REGEX_LIST = "regexes";
-
-    // This should live in a common artifact
-    static final Type EMPTY = Types.typeForClass(Empty.class);
+    static final String MEMBER_REGEX_LIST = "regexes";
 
     private Constants() {
-
+        // Hidden on purpose
     }
 }