Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: dfca6016fd1c87d55cd94636d33f3f8a8c94bcf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/**
 * All rights reserved. Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.jivesoftware.smackx.pubsub;

import java.util.Calendar;

/**
 * Defines the possible field options for a subscribe options form as defined 
 * by <a href="http://xmpp.org/extensions/xep-0060.html#registrar-formtypes-subscribe">Section 16.4.2</a>.
 * 
 * @author Robin Collier
 */
public enum SubscribeOptionFields
{
	/**
	 * Whether an entity wants to receive or disable notifications
	 * 
	 * <p><b>Value: boolean</b></p>
	 */
	deliver,

	/**
	 * Whether an entity wants to receive digests (aggregations) of 
	 * notifications or all notifications individually.
	 * 
	 * <p><b>Value: boolean</b></p>
	 */
	digest,
	
	/**
	 * The minimum number of seconds between sending any two notifications digests
	 * 
	 * <p><b>Value: int</b></p>
	 */
	digest_frequency,

	/**
	 * The DateTime at which a leased subsscription will end ro has ended.
	 * 
	 * <p><b>Value: {@link Calendar}</b></p>
	 */
	expire,

	/**
	 * Whether an entity wants to receive an XMPP message body in addition to 
	 * the payload format.
	 *
	 * <p><b>Value: boolean</b></p>
	 */
	include_body,
	
	/**
	 * The presence states for which an entity wants to receive notifications.
	 *
	 * <p><b>Value: {@link PresenceState}</b></p>
	 */
	show_values,
	
	/**
	 * 
	 * 
	 * <p><b>Value: </b></p>
	 */
	subscription_type,
	
	/**
	 * 
	 * <p><b>Value: </b></p>
	 */
	subscription_depth;
	
	public String getFieldName()
	{
		if (this == show_values)
			return "pubsub#" + toString().replace('_', '-');
		return "pubsub#" + toString();
	}
	
	static public SubscribeOptionFields valueOfFromElement(String elementName)
	{
		String portion = elementName.substring(elementName.lastIndexOf('#' + 1));
		
		if ("show-values".equals(portion))
			return show_values;
		else
			return valueOf(portion);
	}
}

Back to the top