All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ning.api.client.item.BroadcastMessageField Maven / Gradle / Ivy

There is a newer version: 0.5.1
Show newest version
package com.ning.api.client.item;

/**
 * Dummy enumeration that we need for API, although there is no read access
 * to broadcast messages.
 */
public enum BroadcastMessageField implements Typed
{
    subject(String.class),
    body(String.class),
    messageId(String.class)
    ;

    private final Class valueType;

    private BroadcastMessageField(Class valueType) {
        this.valueType = valueType;
    }
    
    //@Override
    public Class type() { return valueType; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy