1 package org.kuali.student.lum.common.client.helpers; 2 3 public class RecentDocInfo{ 4 private String name; 5 private String location; 6 7 public RecentDocInfo(String name, String location) { 8 super(); 9 this.name = name; 10 this.location = location; 11 } 12 13 public String getName() { 14 return name; 15 } 16 public void setName(String name) { 17 this.name = name; 18 } 19 public String getLocation() { 20 return location; 21 } 22 public void setLocation(String location) { 23 this.location = location; 24 } 25 26 }