All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.milyn.edi.unedifact.d02a.common.AccountingJournalIdentification Maven / Gradle / Ivy

There is a newer version: 1.7.1.0
Show newest version
/**
 * This class was generated by Smooks EJC (http://www.smooks.org).
 */
package org.milyn.edi.unedifact.d02a.common;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d02a.common.field.AccountingJournalIdentificationC595;    
import org.milyn.edi.unedifact.d02a.common.field.AccountingEntryTypeDetailsC596;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    
import java.io.StringWriter;    
import java.util.List;    
import java.util.ArrayList;    
import org.milyn.edisax.util.EDIUtils;    
import org.milyn.edisax.model.internal.DelimiterType;    

public class AccountingJournalIdentification implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private AccountingJournalIdentificationC595 accountingJournalIdentification;
    private AccountingEntryTypeDetailsC596 accountingEntryTypeDetails;

    public void write(Writer writer, Delimiters delimiters) throws IOException {
        
        Writer nodeWriter = new StringWriter();

        List nodeTokens = new ArrayList();

        if(accountingJournalIdentification != null) {
            accountingJournalIdentification.write(nodeWriter, delimiters);
            nodeTokens.add(nodeWriter.toString());
            ((StringWriter)nodeWriter).getBuffer().setLength(0);
        }
        nodeWriter.write(delimiters.getField());
        if(accountingEntryTypeDetails != null) {
            accountingEntryTypeDetails.write(nodeWriter, delimiters);
            nodeTokens.add(nodeWriter.toString());
            ((StringWriter)nodeWriter).getBuffer().setLength(0);
        }
        nodeTokens.add(nodeWriter.toString());
        writer.write(EDIUtils.concatAndTruncate(nodeTokens, DelimiterType.FIELD, delimiters));
        writer.write(delimiters.getSegmentDelimiter());
        writer.flush();
    }

    public AccountingJournalIdentificationC595 getAccountingJournalIdentification() {
        return accountingJournalIdentification;
    }

    public AccountingJournalIdentification setAccountingJournalIdentification(AccountingJournalIdentificationC595 accountingJournalIdentification) {
        this.accountingJournalIdentification = accountingJournalIdentification;  return this;
    }

    public AccountingEntryTypeDetailsC596 getAccountingEntryTypeDetails() {
        return accountingEntryTypeDetails;
    }

    public AccountingJournalIdentification setAccountingEntryTypeDetails(AccountingEntryTypeDetailsC596 accountingEntryTypeDetails) {
        this.accountingEntryTypeDetails = accountingEntryTypeDetails;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy