Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/commands/RecordCommand.java')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/commands/RecordCommand.java102
1 files changed, 0 insertions, 102 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/commands/RecordCommand.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/commands/RecordCommand.java
deleted file mode 100644
index d643c9106a7..00000000000
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/commands/RecordCommand.java
+++ /dev/null
@@ -1,102 +0,0 @@
-/*******************************************************************************
- * 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.ote.message.commands;
-
-import java.io.Serializable;
-import java.net.InetSocketAddress;
-import java.util.Collection;
-import java.util.List;
-import java.util.UUID;
-
-import org.eclipse.osee.ote.message.enums.DataType;
-
-/**
- * @author Ken J. Aguilar
- */
-public class RecordCommand implements Serializable {
-
- public static final class MessageRecordDetails implements Serializable {
-
- private static final long serialVersionUID = 2954398510075588584L;
- private final String name;
- private final DataType type;
- private final List<List<Object>> headerElementNames;
- private final List<List<Object>> bodyElementNames;
- private final boolean headerDump;
- private final boolean bodyDump;
-
- public MessageRecordDetails(final String name, final DataType type, boolean headerDump, final List<List<Object>> headerElementNames, boolean bodyDump, final List<List<Object>> bodyElementNames) {
- super();
- this.name = name;
- this.type = type;
- this.headerDump = headerDump;
- this.bodyDump = bodyDump;
- this.headerElementNames = headerElementNames;
- this.bodyElementNames = bodyElementNames;
- }
-
- public static long getSerialVersionUID() {
- return serialVersionUID;
- }
-
- public List<List<Object>> getBodyElementNames() {
- return bodyElementNames;
- }
-
- public List<List<Object>> getHeaderElementNames() {
- return headerElementNames;
- }
-
- public boolean getHeaderDump() {
- return this.headerDump;
- }
-
- public boolean getBodyDump() {
- return this.bodyDump;
- }
-
- public String getName() {
- return name;
- }
-
- public DataType getType() {
- return type;
- }
-
- }
- private static final long serialVersionUID = -1000973301709084337L;
-
- private final List<MessageRecordDetails> list;
- private final InetSocketAddress destAddress;
- private final UUID key;
-
- public RecordCommand(UUID key, InetSocketAddress destAddress, List<MessageRecordDetails> list) {
- this.list = list;
- this.destAddress = destAddress;
- this.key = key;
- }
-
- /**
- * @return the destAddress
- */
- public InetSocketAddress getDestAddress() {
- return destAddress;
- }
-
- public Collection<MessageRecordDetails> getMsgsToRecord() {
- return list;
- }
-
- public UUID getKey(){
- return key;
- }
-
-}

Back to the top