Hi we are using D2 4.7 and i have written code but the method is not getting invoked. D2-JMS.log is also not printing the logger. Need your suggestions please. I have put the verb the same way
com.emc.d2.api.methods.D2Method -class_name com.plugin.methods.CreateRelation
public class CreateRelation implements ID2Method, IDfModule{
private static final Logger LOG = LoggerFactory.getLogger(CreateRelation.class);
@Override
public D2methodBean execute(IDfSession session, IDfSysObject job, Locale locale, ArgumentParser argumentParser) throws Exception {
LOG.info("***********************Inside D2Method**************************");
System.out.println("***********************Inside D2Method**************************");
// TODO Auto-generated method stub
return null;
}
}