01: /*
02: *
03: * Copyright (c) 2004 SourceTap - www.sourcetap.com
04: *
05: * The contents of this file are subject to the SourceTap Public License
06: * ("License"); You may not use this file except in compliance with the
07: * License. You may obtain a copy of the License at http://www.sourcetap.com/license.htm
08: * Software distributed under the License is distributed on an "AS IS" basis,
09: * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
10: * the specific language governing rights and limitations under the License.
11: *
12: * The above copyright notice and this permission notice shall be included
13: * in all copies or substantial portions of the Software.
14: *
15: */
16:
17: package com.sourcetap.sfa.replication;
18:
19: /**
20: * This class is used for replication of the ItIssueHistory entity. <P>
21: *
22: * @author <a href='mailto:jnutting@sourcetap.com'>John Nutting</a>
23: */
24: public class ItIssueHistoryReplicator extends EntityReplicator {
25: public static final String module = ItIssueHistoryReplicator.class
26: .getName();
27:
28: /**
29: * Populate the related entity map vector. This method is called from the constructors
30: * to allow the related entities to be specified before replication begins.
31: *
32: * @author <a href='mailto:jnutting@sourcetap.com'>John Nutting</a>
33: */
34: public void populateRelatedEntityMapVector() {
35: // Add related entity maps for all entities to be replicated for each
36: // replicated account.
37:
38: addRelatedEntityMap("", "LargeData", null, false, false, "");
39:
40: return;
41: }
42: }
|