1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package net.sf.plausj.bank.german.strategy;
18
19 import net.sf.plausj.bank.german.AccountCode;
20 import net.sf.plausj.bank.german.BankCode;
21 import net.sf.plausj.bank.german.CheckDigit;
22 import net.sf.plausj.bank.german.strategy.util.Strategy01AlikeHelper;
23
24 /**
25 * @author ninan
26 *
27 */
28 public class StrategyB5 implements Strategy {
29
30 private static final int[] multiplicators = new int[] { 1, 3, 7, 1, 3, 7,
31 1, 3, 7 };
32
33 /**
34 * @see net.sf.plausj.bank.german.strategy.Strategy#calculateCheckDigit(net.sf.plausj.bank.german.BankCode,
35 * net.sf.plausj.bank.german.AccountCode)
36 */
37 public CheckDigit calculateCheckDigit(final BankCode bankCode,
38 final AccountCode accountCode) {
39
40 CheckDigit cd = calculateCheckDigitMethodA(accountCode);
41 if (!accountCode.matchesCheckDigit(cd)) {
42 if (8 == accountCode.getDigitAtPos(0)
43 || 9 == accountCode.getDigitAtPos(1)) {
44 cd = new CheckDigit(CheckDigit.ALWAYS_INVALID, 0);
45 } else {
46 cd = new Strategy00()
47 .calculateCheckDigit(bankCode, accountCode);
48 }
49 }
50
51 return cd;
52
53 }
54
55 private CheckDigit calculateCheckDigitMethodA(final AccountCode accountCode) {
56
57 int sum = Strategy01AlikeHelper.calculateSum(accountCode,
58 multiplicators);
59 int cd = Strategy01AlikeHelper.getCheckDigitFromSum(sum);
60
61 return new CheckDigit(9, cd);
62
63 }
64
65 }