blob: a2a7d2e6a6363898694f72b0a2491eab1a4498c4 [file] [log] [blame]
/*******************************************************************************
* 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
*******************************************************************************/
package org.eclipse.ptp.core.elements.attributes;
import org.eclipse.ptp.core.attributes.EnumeratedAttributeDefinition;
import org.eclipse.ptp.core.attributes.IAttributeDefinition;
import org.eclipse.ptp.core.attributes.StringAttributeDefinition;
import org.eclipse.ptp.core.messages.Messages;
/**
* Queue attributes
*/
public class QueueAttributes {
public enum State {
NORMAL,
STOPPED
};
private static final String STATE_ATTR_ID = "queueState"; //$NON-NLS-1$
private static final String STATUS_ATTR_ID = "queueStatus"; //$NON-NLS-1$
private final static EnumeratedAttributeDefinition<State> stateAttrDef =
new EnumeratedAttributeDefinition<State>(STATE_ATTR_ID, "state", Messages.QueueAttributes_0, //$NON-NLS-1$
false, State.NORMAL);
private final static StringAttributeDefinition statusAttrDef =
new StringAttributeDefinition(STATUS_ATTR_ID, "Status", //$NON-NLS-1$
Messages.QueueAttributes_1, true, ""); //$NON-NLS-1$
public static EnumeratedAttributeDefinition<State> getStateAttributeDefinition() {
return stateAttrDef;
}
public static StringAttributeDefinition getStatusAttributeDefinition() {
return statusAttrDef;
}
public static IAttributeDefinition<?,?,?>[] getDefaultAttributeDefinitions() {
return new IAttributeDefinition[]{stateAttrDef, statusAttrDef};
}
}