]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/diff/DiffNotMatched.java
Add distribution cache in CreateSrpm
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / main / java / org / argeo / slc / diff / DiffNotMatched.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package org.argeo.slc.diff;
18
19 import org.argeo.slc.SlcException;
20
21 /** Diff issue where reached and expected values are different. */
22 public class DiffNotMatched extends DiffIssueKey {
23
24 // To enable hibernate persistance, these object cannot be final
25 // private final Object expected;
26 // private final Object reached;
27
28 private Object expected;
29 private Object reached;
30
31 public DiffNotMatched(DiffPosition position, Object expected, Object reached) {
32 super(position);
33 this.expected = expected;
34 this.reached = reached;
35 }
36
37 public DiffNotMatched(DiffPosition position, Object expected,
38 Object reached, DiffKey key) {
39 super(position, key);
40 this.expected = expected;
41 this.reached = reached;
42 }
43
44 public Object getExpected() {
45 return expected;
46 }
47
48 public Object getReached() {
49 return reached;
50 }
51
52 @Override
53 public String toString() {
54 String result = position + ": not matched " + expected + " <> "
55 + reached;
56 if (super.key != null) {
57 result = result + " - Key: " + super.toString();
58 }
59
60 return result;
61 }
62
63 @SuppressWarnings("unused")
64 private String getExpectedStr() {
65 if (expected instanceof String)
66 return (String) expected;
67 else
68 throw new SlcException(
69 "Object 'expected' is of wrong type. Must be a String");
70 }
71
72 @SuppressWarnings("unused")
73 private String getReachedStr() {
74 if (reached instanceof String)
75 return (String) reached;
76 else
77 throw new SlcException(
78 "Object 'reached' is of wrong type. Must be a String");
79 }
80
81 @SuppressWarnings("unused")
82 private void setReachedStr(String reachedStr) {
83 this.reached = reachedStr;
84 }
85
86 @SuppressWarnings("unused")
87 private void setExpectedStr(String expectedStr) {
88 this.expected = expectedStr;
89 }
90
91 }