1 33 package net.myvietnam.mvncore.service; 34 35 public class BinaryStorageHandle { 36 37 private int type; 38 private int primaryKey; 39 private String fileName; 40 41 public BinaryStorageHandle(int type, int primaryKey, String fileName){ 42 this.type = type; 43 this.primaryKey = primaryKey; 44 this.fileName = fileName ; 45 } 46 47 public String getFileName() { 48 return fileName; 49 } 50 public void setFileName(String fileName) { 51 this.fileName = fileName; 52 } 53 public int getPrimaryKey() { 54 return primaryKey; 55 } 56 public void setPrimaryKey(int primaryKey) { 57 this.primaryKey = primaryKey; 58 } 59 public int getType() { 60 return type; 61 } 62 public void setType(int type) { 63 this.type = type; 64 } 65 } 66 | Popular Tags |