Skip to content

Commit b8f12f6

Browse files
committed
Added extra enums
1 parent 2d0267c commit b8f12f6

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package software.xdev.bzst.dip.client.model.message.cesop;
2+
3+
public enum BzstCesopMessageTypeEnum
4+
{
5+
/**
6+
* The message type is 'Payment data' (or 'No Payment data').
7+
*/
8+
PMT,
9+
10+
/**
11+
* The message type is 'Validation result message'.
12+
*/
13+
VLD;
14+
15+
public String value()
16+
{
17+
return this.name();
18+
}
19+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package software.xdev.bzst.dip.client.model.message.cesop;
2+
3+
public enum BzstCesopMessageTypeIndicEnum
4+
{
5+
6+
/**
7+
* The message contains new data.
8+
*/
9+
CESOP_100("CESOP100"),
10+
11+
/**
12+
* The message contains corrections or deletions of previously sent data.
13+
*/
14+
CESOP_101("CESOP101"),
15+
16+
/**
17+
* The message indicates there is no data to report.
18+
*/
19+
CESOP_102("CESOP102");
20+
private final String value;
21+
22+
BzstCesopMessageTypeIndicEnum(final String v)
23+
{
24+
this.value = v;
25+
}
26+
27+
public String value()
28+
{
29+
return this.value;
30+
}
31+
}

0 commit comments

Comments
 (0)