Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 package org.enhydra.shark.eventaudit; 2 3 4 5 6 7 import org.enhydra.shark.api.internal.eventaudit.*; 8 9 10 11 public class DODSAssignmentEventAudit extends DODSEventAudit implements AssignmentEventAuditPersistenceInterface { 12 13 14 15 private String oldResourceKey; 16 17 private String oldResourceName; 18 19 private String newResourceKey; 20 21 private String newResourceName; 22 23 private boolean isAccepted; 24 25 26 27 public void setOldResourceUsername (String un) { 28 29 this.oldResourceKey=un; 30 31 } 32 33 34 35 public String getOldResourceUsername () { 36 37 return oldResourceKey; 38 39 } 40 41 42 43 public void setOldResourceName (String n) { 44 45 this.oldResourceName=n; 46 47 } 48 49 50 51 public String getOldResourceName () { 52 53 return oldResourceName; 54 55 } 56 57 58 59 public void setNewResourceUsername (String un) { 60 61 this.newResourceKey=un; 62 63 } 64 65 66 67 public String getNewResourceUsername () { 68 69 return newResourceKey; 70 71 } 72 73 74 75 public void setNewResourceName (String n) { 76 77 this.newResourceName=n; 78 79 } 80 81 82 83 public String getNewResourceName () { 84 85 return newResourceName; 86 87 } 88 89 90 91 public void setIsAccepted(boolean acc) { 92 93 this.isAccepted=acc; 94 95 } 96 97 98 99 public boolean getIsAccepted() { 100 101 return isAccepted; 102 103 } 104 105 106 107 } 108 109
| Popular Tags
|