Skip to main content
summaryrefslogtreecommitdiffstats
blob: eb7c84c45cb3dbb5e6e0b16a69ca5431126ccdc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.messaging.event.res.event;

import org.eclipse.osee.framework.core.data.DefaultBasicGuidArtifact;

/**
 * @author Donald G. Dunne
 */
public class NetworkAccessControlArtifactsEvent extends FrameworkArtifactEventBase {
   private final String accessControlModType;

   public static String GUID = "Aylfa1pAo0QntOBC7TgA";

   public NetworkAccessControlArtifactsEvent(String accessControlModType, String branchGuid, String artGuid, String artTypeGuid, NetworkSender networkSender) {
      super(GUID, new DefaultBasicGuidArtifact(branchGuid, artTypeGuid, artGuid), networkSender);
      this.accessControlModType = accessControlModType;
   }

   public NetworkAccessControlArtifactsEvent(NetworkAccessControlArtifactsEvent base) {
      super(base);
      this.accessControlModType = base.getAccessControlModTypeName();
   }

   public String getAccessControlModTypeName() {
      return accessControlModType;
   }

}

Back to the top