org.notima.businessobjects.adapter.json.JsonBusinessPartnerMgr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonAdapter Show documentation
Show all versions of jsonAdapter Show documentation
Adapter to convert JSON data to the common format found on
https://github.com/notima/businessobjects
The newest version!
package org.notima.businessobjects.adapter.json;
import org.notima.generic.businessobjects.BusinessPartner;
import org.notima.generic.businessobjects.TaxSubjectIdentifier;
import org.notima.generic.ifacebusinessobjects.BusinessPartnerManager;
public class JsonBusinessPartnerMgr implements BusinessPartnerManager {
@Override
public BusinessPartner lookupBusinessPartner(TaxSubjectIdentifier tsi) {
// TODO Auto-generated method stub
return null;
}
@Override
public BusinessPartner addBusinessPartner(TaxSubjectIdentifier tsi, BusinessPartner bp) {
// TODO Auto-generated method stub
return null;
}
@Override
public boolean removeBusinessPartner(TaxSubjectIdentifier tsi) {
// TODO Auto-generated method stub
return false;
}
@Override
public String getSystemName() {
// TODO Auto-generated method stub
return null;
}
}