1
2
3
4
5
6 package org.weda.store.impl;
7
8 import org.weda.store.AuditableProperty;
9
10 /**
11 *
12 * @author Mikhail Titov
13 */
14 public class AuditablePropertyImpl implements AuditableProperty{
15 private String propertyName;
16 private String auditOperations;
17
18 public String getPropertyName() {
19 return propertyName;
20 }
21
22 public void setPropertyName(String propertyName) {
23 this.propertyName = propertyName;
24 }
25
26 public String getAuditOperations() {
27 return auditOperations;
28 }
29
30 public void setAuditOperations(String auditOperations) {
31 this.auditOperations = auditOperations;
32 }
33 }