1 package org.kuali.ole.docstore.model.xmlpojo.ingest; 2 3 /** 4 * Created by IntelliJ IDEA. 5 * User: PJ7789 6 * Date: 3/6/12 7 * Time: 3:54 PM 8 * To change this template use File | Settings | File Templates. 9 */ 10 public class Link { 11 private String name; 12 private String value; 13 14 public String getName() { 15 return name; 16 } 17 18 public void setName(String name) { 19 this.name = name; 20 } 21 22 public String getValue() { 23 return value; 24 } 25 26 public void setValue(String value) { 27 this.value = value; 28 } 29 }