Package com.moneychanger.core.dataobjects

Examples of com.moneychanger.core.dataobjects.ContactAcctDetails


            if(newContact.getContact_id().equals(contact.getContact_id())){
                contact = newContact;
                break;
            }
        }
        ContactAcctDetails data = new ContactAcctDetails();
           if(contact!=null && index>-1){
            ContactAcct contactAcct = contact.GetContactAcct(index);
            if(contactAcct==null){
                System.out.println("getContactNymDetails contact.getContactAccDetails(index) returned null");
                return null;
            }
            data.setLabel(contactAcct.getGui_label());
            data.setMemo(contactAcct.getMemo());
            data.setNymID(contactAcct.getNym_id());
            data.setAcctID(contactAcct.getAcct_id());
            data.setAssetID(contactAcct.getAsset_type_id());
            data.setServerID(contactAcct.getServer_id());
            data.setServerType(contactAcct.getServer_type());
            data.setPublicKey(contactAcct.getPublic_key());

        }
        return data;
    }
View Full Code Here

TOP

Related Classes of com.moneychanger.core.dataobjects.ContactAcctDetails

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.