001package org.kuali.ole.docstore.model.xmlpojo.ingest;
002
003/**
004 * Created by IntelliJ IDEA.
005 * User: PJ7789
006 * Date: 3/6/12
007 * Time: 3:54 PM
008 * To change this template use File | Settings | File Templates.
009 */
010public class Link {
011    private String name;
012    private String value;
013
014    public String getName() {
015        return name;
016    }
017
018    public void setName(String name) {
019        this.name = name;
020    }
021
022    public String getValue() {
023        return value;
024    }
025
026    public void setValue(String value) {
027        this.value = value;
028    }
029}