Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.ws.service.policy/src/org/eclipse/wst/ws/service/internal/policy/StateEnumerationItemImpl.java')
-rw-r--r--bundles/org.eclipse.wst.ws.service.policy/src/org/eclipse/wst/ws/service/internal/policy/StateEnumerationItemImpl.java64
1 files changed, 0 insertions, 64 deletions
diff --git a/bundles/org.eclipse.wst.ws.service.policy/src/org/eclipse/wst/ws/service/internal/policy/StateEnumerationItemImpl.java b/bundles/org.eclipse.wst.ws.service.policy/src/org/eclipse/wst/ws/service/internal/policy/StateEnumerationItemImpl.java
deleted file mode 100644
index 0ce22946d..000000000
--- a/bundles/org.eclipse.wst.ws.service.policy/src/org/eclipse/wst/ws/service/internal/policy/StateEnumerationItemImpl.java
+++ /dev/null
@@ -1,64 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others.
- * 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:
- * IBM Corporation - initial API and implementation
- * yyyymmdd bug Email and other contact information
- * -------- -------- -----------------------------------------------------------
- * 20071024 196997 pmoogk@ca.ibm.com - Peter Moogk
- *******************************************************************************/
-package org.eclipse.wst.ws.service.internal.policy;
-
-import org.eclipse.wst.ws.service.policy.IStateEnumerationItem;
-
-public class StateEnumerationItemImpl implements IStateEnumerationItem
-{
- private String id;
- private String shortName;
- private String longName;
- private boolean isDefault = false;
-
- public String getId()
- {
- return id;
- }
-
- public void setId(String id)
- {
- this.id = id;
- }
-
- public String getShortName()
- {
- return shortName;
- }
-
- public void setShortName(String shortName)
- {
- this.shortName = shortName;
- }
-
- public String getLongName()
- {
- return longName;
- }
-
- public void setLongName(String longName)
- {
- this.longName = longName;
- }
-
- public boolean isDefault()
- {
- return isDefault;
- }
-
- public void setDefault(boolean isDefault)
- {
- this.isDefault = isDefault;
- }
-}

Back to the top