Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/condition/StatusCondition.java')
-rw-r--r--plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/condition/StatusCondition.java53
1 files changed, 0 insertions, 53 deletions
diff --git a/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/condition/StatusCondition.java b/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/condition/StatusCondition.java
deleted file mode 100644
index 26130052d10..00000000000
--- a/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/condition/StatusCondition.java
+++ /dev/null
@@ -1,53 +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.messaging.dds.condition;
-
-import java.util.Collection;
-import org.eclipse.osee.ote.messaging.dds.NotImplementedException;
-import org.eclipse.osee.ote.messaging.dds.ReturnCode;
-import org.eclipse.osee.ote.messaging.dds.entity.Entity;
-
-/**
- * This class is here for future functionality that is described in the DDS specification but has not been implemented
- * or used.
- *
- * @author Robert A. Fisher
- * @author David Diepenbrock
- */
-public class StatusCondition extends Condition {
-
- private final Collection<?> enabledStatuses;
- private final Entity parentEntity;
-
- public StatusCondition(Entity parentEntity) {
-
- this.parentEntity = parentEntity;
- enabledStatuses = null; // UNSURE find out if this should be something else?
-
- // This class, and the use of it has not been implemented
- throw new NotImplementedException();
- }
-
- public ReturnCode setEnabledStatuses(Collection<?> mask) {
- return ReturnCode.ERROR;
- }
-
- public Collection<?> getEnabledStatuses() {
- return enabledStatuses;
- }
-
- /**
- * @return Returns the entity.
- */
- public Entity getParentEntity() {
- return parentEntity;
- }
-}

Back to the top