1
2
3
4
5
6 package org.weda.store.impl;
7
8 import org.weda.store.DetailObjectSourceInfo;
9
10 /**
11 *
12 * @author Mikhail Titov
13 */
14 public class DetailObjectSourceInfoImpl implements DetailObjectSourceInfo {
15 private String name;
16 private String propertyName;
17 private String masterPropertyName;
18 private boolean refreshOnActivate = false;
19
20 public String getName() {
21 return name;
22 }
23
24 public void setName(String name) {
25 this.name = name;
26 }
27
28 public String getPropertyName() {
29 return propertyName;
30 }
31
32 public void setPropertyName(String propertyName) {
33 this.propertyName = propertyName;
34 }
35
36 public boolean isRefreshOnActivate() {
37 return refreshOnActivate;
38 }
39
40 public void setRefreshOnActivate(boolean refreshOnActivate) {
41 this.refreshOnActivate = refreshOnActivate;
42 }
43
44 public String getMasterPropertyName() {
45 return masterPropertyName;
46 }
47
48 public void setMasterPropertyName(String masterPropertyName) {
49 this.masterPropertyName = masterPropertyName;
50 }
51 }