View Javadoc

1   package org.kuali.ole.docstore.model.bo;
2   
3   /**
4    * Created by IntelliJ IDEA.
5    * User: Pranitha
6    * Date: 3/30/12
7    * Time: 10:41 AM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class WorkHoldingsDocument  {
11      private String holdingsIdentifier;
12  
13      public String getHoldingsIdentifier() {
14          return holdingsIdentifier;
15      }
16  
17      public void setHoldingsIdentifier(String holdingsIdentifier) {
18          this.holdingsIdentifier = holdingsIdentifier;
19      }
20  }