IDEMPIERE-3101 implement OAuth2 for mail (gmail, outlook and other mail system) (#773)
Make the table and record ID from MPInstanceLog accessible related to IDEMPIERE-4678 too
This commit is contained in:
parent
16032399fa
commit
0b3e307d86
|
@ -274,6 +274,15 @@ public class MPInstanceLog
|
||||||
m_P_Msg = P_Msg;
|
m_P_Msg = P_Msg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get Table ID
|
||||||
|
* @return Table ID
|
||||||
|
*/
|
||||||
|
public int getAD_Table_ID()
|
||||||
|
{
|
||||||
|
return m_AD_Table_ID;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set Table ID
|
* Set Table ID
|
||||||
* @param tableId
|
* @param tableId
|
||||||
|
@ -283,6 +292,15 @@ public class MPInstanceLog
|
||||||
m_AD_Table_ID = tableId;
|
m_AD_Table_ID = tableId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get Record ID
|
||||||
|
* @return Record ID
|
||||||
|
*/
|
||||||
|
public int getRecord_ID()
|
||||||
|
{
|
||||||
|
return m_Record_ID;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set Record ID
|
* Set Record ID
|
||||||
* @param recordId
|
* @param recordId
|
||||||
|
|
Loading…
Reference in New Issue