001    package com.khubla.pragmatach.framework.form;
002    
003    /**
004     * @author tome
005     */
006    public class FormItem {
007       /**
008        * name
009        */
010       private final String name;
011       /**
012        * value
013        */
014       private final String value;
015       /**
016        * content type
017        */
018       private final String contentType;
019    
020       /**
021        * ctor
022        */
023       public FormItem(String name, String value, String contentType) {
024          this.name = name;
025          this.value = value;
026          this.contentType = contentType;
027       }
028    
029       public String getContentType() {
030          return contentType;
031       }
032    
033       public String getName() {
034          return name;
035       }
036    
037       public String getValue() {
038          return value;
039       }
040    }