1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.labs.encryption;
17
18 import org.kuali.rice.krad.web.form.UifFormBase;
19
20
21
22
23
24
25 public class EncryptionForm extends UifFormBase {
26
27 private String encryptionServiceName;
28 private String input;
29 private String encryptedText;
30 private String decryptedText;
31
32
33
34
35
36
37 public String getEncryptionServiceName() {
38 return encryptionServiceName;
39 }
40
41 public void setEncryptionServiceName(String encryptionServiceName) {
42 this.encryptionServiceName = encryptionServiceName;
43 }
44
45
46
47
48
49
50 public String getInput() {
51 return input;
52 }
53
54 public void setInput(String input) {
55 this.input = input;
56 }
57
58
59
60
61
62
63 public String getEncryptedText() {
64 return encryptedText;
65 }
66
67 public void setEncryptedText(String encryptedText) {
68 this.encryptedText = encryptedText;
69 }
70
71
72
73
74
75
76 public String getDecryptedText() {
77 return decryptedText;
78 }
79
80 public void setDecryptedText(String decryptedText) {
81 this.decryptedText = decryptedText;
82 }
83 }