1 package net.sf.panoptes.model.node.log4j;
2
3 import java.util.Set;
4
5 /***
6 * RepositoryUpdateEvent.java
7 *
8 * Represents a batch of events in a <code>LoggerRepository</code>
9 *
10 * @author Dag Liodden
11 * @version 0.1
12 * @see com.glt.troodon.console.model.log4j.LoggerRepository
13 * @see com.glt.troodon.console.model.log4j.RepositoryListener
14 */
15 public class RepositoryUpdateEvent {
16
17 private Set changedLocations;
18 private Set newLocations;
19 /***
20 * Constructor for RepositoryUpdateEvent.
21 */
22 public RepositoryUpdateEvent(Set changedLocations, Set newLocations) {
23 this.changedLocations = changedLocations;
24 this.newLocations = newLocations;
25 }
26
27 public Set getChangedLocations() {
28 return changedLocations;
29 }
30
31 public Set getNewLocations() {
32 return newLocations;
33 }
34 }
35
36
This page was automatically generated by Maven