graphql/cxs-impl/src/main/java/org/apache/unomi/graphql/types/input/property/CDPStringPropertyInput.java [32:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public CDPStringPropertyInput(@GraphQLName("name") String name,
                                  @GraphQLName("minOccurrences") Integer minOccurrences,
                                  @GraphQLName("maxOccurrences") Integer maxOccurrences,
                                  @GraphQLName("tags") List<String> tags,
                                  @GraphQLName("regexp") String regexp,
                                  @GraphQLName("defaultValue") String defaultValue) {
        super(name, minOccurrences, maxOccurrences, tags);
        this.regexp = regexp;
        this.defaultValue = defaultValue;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



graphql/cxs-impl/src/main/java/org/apache/unomi/graphql/types/input/property/CDPIdentifierPropertyInput.java [32:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public CDPIdentifierPropertyInput(@GraphQLName("name") String name,
                                      @GraphQLName("minOccurrences") Integer minOccurrences,
                                      @GraphQLName("maxOccurrences") Integer maxOccurrences,
                                      @GraphQLName("tags") List<String> tags,
                                      @GraphQLName("regexp") String regexp,
                                      @GraphQLName("defaultValue") String defaultValue) {
        super(name, minOccurrences, maxOccurrences, tags);
        this.regexp = regexp;
        this.defaultValue = defaultValue;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



