Hello,
I have a TBO implementation class in which i am overriding a doCheckout method
@Override
protected IDfId doCheckout(String arg0, String arg1, String arg2,
Object[] arg3) throws DfException {
// TODO Auto-generated method stub
return super.doCheckout(arg0, arg1, arg2, arg3);
}
if instead of "return super.doCheckout(arg0, arg1, arg2, arg3);" if i checkout the document with IDfCheckoutOperation will that be right way to do this or i need to
implement with "return super.doCheckout(arg0, arg1, arg2, arg3);"
Regards