01: package org.geotools.ml; 02: 03: public class Attachment { 04: String name; 05: MimeType mimeType; 06: String content; 07: 08: public Attachment(String name, MimeType mimeType, String content) { 09: this.name = name; 10: this.mimeType = mimeType; 11: this.content = content; 12: } 13: }