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 ItIssue entity. <P>
21: *
22: * @author <a href='mailto:jnutting@sourcetap.com'>John Nutting</a>
23: */
24: public class ItIssueReplicator extends EntityReplicator {
25:
26: public static final String module = ItIssueReplicator.class
27: .getName();
28:
29: /**
30: * Populate the related entity map vector. This method is called from the constructors
31: * to allow the related entities to be specified before replication begins.
32: *
33: * @author <a href='mailto:jnutting@sourcetap.com'>John Nutting</a>
34: */
35: public void populateRelatedEntityMapVector() {
36: // Add related entity maps for all entities to be replicated for each
37: // replicated account.
38:
39: addRelatedEntityMap("", "ItIssueHistory", null, false, false,
40: "com.sourcetap.sfa.replication.ItIssueHistoryReplicator");
41:
42: return;
43: }
44: }
|