Ray McDermott

Results 23 issues of Ray McDermott

Given a class like this... @javax.persistence.IdClass(TrfsetupTblEntityPK.class) @javax.persistence.Table(name = "TRFSETUP_TBL", schema = "FOO") @Entity public class TrfsetupTblEntity extends Model { private String tcsPrdfuncCod; ``` @javax.persistence.Column(name = "TCS_PRDFUNC_COD") @Id public String getTcsPrdfuncCod()...

When making API calls to an external provider, we need to have the query parameters in `camelCase` rather than our beloved `kebab-case` 😢 To achieve this we have a small...