1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.bo;
17
18 import org.apache.commons.lang.builder.ToStringBuilder;
19
20 import java.util.LinkedHashMap;
21
22
23
24
25 public abstract class BusinessObjectBase implements BusinessObject {
26
27
28
29
30
31 public BusinessObjectBase() {
32 }
33
34
35 @Deprecated
36 protected final String toStringBuilder(LinkedHashMap<String, Object> fieldValues) {
37 throw new UnsupportedOperationException("do not call. this method will be removed from rice 1.1");
38 }
39
40
41 @Deprecated
42 protected final LinkedHashMap<String, Object> toStringMapper() {
43 throw new UnsupportedOperationException("do not call. this method will be removed from rice 1.1");
44 }
45
46 @Override
47 public String toString() {
48 return ToStringBuilder.reflectionToString(this);
49 }
50
51
52 @Deprecated
53 public final void prepareForWorkflow() {
54 throw new UnsupportedOperationException("do not call. this method will be removed from rice 1.1");
55 }
56 }