Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/test/java/de/intevation/gnv/artifacts/TestCallContext.java @ 1118:c01c220312d0
Made it compile again with an updated ArtifactDatabase.
gnv-artifacts/trunk@4137 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 12 Mar 2012 08:31:46 +0000 |
parents | f953c9a559d8 |
children |
comparison
equal
deleted
inserted
replaced
1117:dec4257ad570 | 1118:c01c220312d0 |
---|---|
6 * or visit http://www.gnu.org/licenses/ if it does not exist. | 6 * or visit http://www.gnu.org/licenses/ if it does not exist. |
7 */ | 7 */ |
8 | 8 |
9 package de.intevation.gnv.artifacts; | 9 package de.intevation.gnv.artifacts; |
10 | 10 |
11 import java.util.List; | |
12 import java.util.LinkedList; | |
13 | |
11 import de.intevation.artifacts.ArtifactDatabase; | 14 import de.intevation.artifacts.ArtifactDatabase; |
12 import de.intevation.artifacts.ArtifactFactory; | 15 import de.intevation.artifacts.ArtifactFactory; |
13 import de.intevation.artifacts.CallContext; | 16 import de.intevation.artifacts.CallContext; |
14 import de.intevation.artifacts.CallMeta; | 17 import de.intevation.artifacts.CallMeta; |
18 import de.intevation.artifacts.DataProvider; | |
19 import de.intevation.artifacts.Message; | |
15 | 20 |
16 /** | 21 /** |
17 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> | 22 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> |
18 * | 23 * |
19 */ | 24 */ |
46 * @see de.intevation.artifacts.CallContext#afterCall(int) | 51 * @see de.intevation.artifacts.CallContext#afterCall(int) |
47 */ | 52 */ |
48 public void afterCall(int action) { | 53 public void afterCall(int action) { |
49 } | 54 } |
50 | 55 |
56 public boolean isInBackground() { | |
57 throw new UnsupportedOperationException("Not supported yet."); | |
58 } | |
59 | |
60 public void addBackgroundMessage(Message msg) { | |
61 throw new UnsupportedOperationException("Not supported yet."); | |
62 } | |
63 | |
51 /** | 64 /** |
52 * @see de.intevation.artifacts.CallContext#globalContext() | 65 * @see de.intevation.artifacts.CallContext#globalContext() |
53 */ | 66 */ |
54 public Object globalContext() { | 67 public Object globalContext() { |
55 return this.globalContext; | 68 return this.globalContext; |
72 } | 85 } |
73 | 86 |
74 public Long getTimeToLive() { | 87 public Long getTimeToLive() { |
75 throw new UnsupportedOperationException("Not supported yet."); | 88 throw new UnsupportedOperationException("Not supported yet."); |
76 } | 89 } |
90 | |
91 public Object registerDataProvider(Object key, DataProvider provider) { | |
92 throw new UnsupportedOperationException("Not supported yet."); | |
93 } | |
94 | |
95 public List<DataProvider> getDataProvider(Object key) { | |
96 throw new UnsupportedOperationException("Not supported yet."); | |
97 } | |
98 | |
99 public LinkedList<Message> getBackgroundMessages() { | |
100 throw new UnsupportedOperationException("Not supported yet."); | |
101 } | |
77 } | 102 } |