
com.crabshue.commons.aggregator.model.Function Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-aggregator Show documentation
Show all versions of commons-aggregator Show documentation
Library aggregating fields using annotations in complex objects structures
The newest version!
package com.crabshue.commons.aggregator.model;
import lombok.Data;
@Data
public class Function {
private String registerClass;
private String namespace;
public Function() {
}
public Function(String namespace, String registerClass) {
this.namespace = namespace;
this.registerClass = registerClass;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy