1 57 package org.apache.wsif.providers.jca.toolplugin; 58 59 63 public class ImportResource implements java.io.Serializable { 64 65 private static final long serialVersionUID = 1L; 66 private String fieldLocation = null; 67 private byte[] fieldContents = null; 68 69 74 public String getLocation() { 75 return fieldLocation; 76 } 77 81 public void setLocation(String location) { 82 this.fieldLocation = location; 83 } 84 88 public byte[] getContents() { 89 return fieldContents; 90 } 91 92 96 public void setContents(byte[] contents) { 97 this.fieldContents = contents; 98 } 99 100 } 101 102 | Popular Tags |