Let's suppose that I have the next class:
public class MyClass {
private String name;
private String surName;
private String phone;
private String address;
private String gender;
}
I want to parametrize obsidian job to do something similar like this:
@Parameter(name="sample", type= Type.STRING, required=false)
But instead of String type, I want MyClass.java type
Any idea how to do it?