View Javadoc

1   package org.kuali.ole.pojo.edi;
2   
3   /**
4    * Created by IntelliJ IDEA.
5    * User: palanivel
6    * Date: 3/6/12
7    * Time: 4:31 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class ProductArticleNumber {
11      private String productIsbn;
12      private String productItemNumberType;
13  
14      public String getProductIsbn() {
15          return productIsbn;
16      }
17  
18      public void setProductIsbn(String productIsbn) {
19          this.productIsbn = productIsbn;
20      }
21  
22      public String getProductItemNumberType() {
23          return productItemNumberType;
24      }
25  
26      public void setProductItemNumberType(String productItemNumberType) {
27          this.productItemNumberType = productItemNumberType;
28      }
29  
30  }