com.ning.api.client.item.BroadcastMessageField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ning-api-java Show documentation
Show all versions of ning-api-java Show documentation
Java client library for accessing Ning external API
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; }
}