/*
* File: TypePort.java
* Project: jMOS, com.aranova.java.jmos.enums
* Revision: 0.9 - Inicial
* Date: 27-oct-2005 13:54:47
*
* Copyright (C) Aragn Innovacin Tecnolgica S.L.L.
* All rights reserved.
*
* This software is distributed under the terms of the Aranova License version 1.0.
* See the terms of the Aranova License in the documentation provided with this software.
*/
package com.aranova.java.jmos.enums;
/**
* Enumerado con los tipos de puertos de los mensajes.
*
* @author <a href="http://www.aranova.net/contactar/">Daniel Snchez</a>
* @version 0.9.1
* @since 0.9
*/
public enum TypePort {
/**
* MOS Lower Port (10540) - Media Object Metadata.
*/
LowerPort,
/**
* MOS Upper Port (10541) - Running Order.
*/
UpperPort,
/**
* High Traffic Port (10542).
*/
HighTrafficPort,
/**
* None.
*/
None
}
|