001/**
002 *
003 * Copyright the original author or authors
004 *
005 * Licensed under the Apache License, Version 2.0 (the "License");
006 * you may not use this file except in compliance with the License.
007 * You may obtain a copy of the License at
008 *
009 *     http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.jivesoftware.smackx.jingle;
018
019/**
020 * The "action" in the jingle packet, as an enum.
021 * 
022 * Changed to reflect XEP-166 rev: 20JUN07
023 * 
024 * @author Jeff Williams
025 */
026public enum JingleActionEnum {
027
028    UNKNOWN("unknown"),
029    CONTENT_ACCEPT("content-accept"),
030    CONTENT_ADD("content-add"),
031    CONTENT_MODIFY("content-modify"),
032    CONTENT_REMOVE("content-remove"),
033    SESSION_ACCEPT("session-accept"),
034    SESSION_INFO("session-info"),
035    SESSION_INITIATE("session-initiate"),
036    SESSION_TERMINATE("session-terminate"),
037    TRANSPORT_INFO("transport-info");
038
039    private String actionCode;
040
041    private JingleActionEnum(String inActionCode) {
042        actionCode = inActionCode;
043    }
044
045    /**
046     * Returns the String value for an Action.
047     */
048
049    public String toString() {
050        return actionCode;
051    }
052
053    /**
054     * Returns the Action enum for a String action value.
055     */
056    public static JingleActionEnum getAction(String inActionCode) {
057        for (JingleActionEnum jingleAction : JingleActionEnum.values()) {
058            if (jingleAction.actionCode.equals(inActionCode)) {
059                return jingleAction;
060            }
061        }
062        return null;
063    }
064
065}