org.skyscreamer.nevado.jms.message.NevadoProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nevado-jms Show documentation
Show all versions of nevado-jms Show documentation
JMS Provider for Amazon's cloud services (uses SQS/SNS)
package org.skyscreamer.nevado.jms.message;
/**
* Created by IntelliJ IDEA.
* User: Carter Page
* Date: 3/24/12
* Time: 2:42 PM
*/
public enum NevadoProperty {
SQSReceiptHandle(String.class), DisableMessageID(Boolean.class), ConnectionID(String.class);
public static final String PROVIDER_PREFIX = "JMS_nevado";
private final Class _propertyType;
private NevadoProperty(Class propertyType) {
_propertyType = propertyType;
}
public Class getPropertyType() {
return _propertyType;
}
@Override
public String toString() {
return PROVIDER_PREFIX + super.toString();
}
}