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

org.milyn.edi.unedifact.d94a.common.Ugh Maven / Gradle / Ivy

The newest version!
/**
 * This class was generated by Smooks EJC (http://www.smooks.org).
 */
package org.milyn.edi.unedifact.d94a.common;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    

public class Ugh implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private String id;

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

        if(id != null) {
            nodeWriter.write(delimiters.escape(id.toString()));
        }
        writer.write(delimiters.getSegmentDelimiter());
        writer.flush();
    }

    public String getId() {
        return id;
    }

    public Ugh setId(String id) {
        this.id = id;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy