01: /*
02: * File: reqMachInfo.java
03: * Project: jMOS, com.aranova.java.jmos.messages.profile0
04: * Revision: 0.9 - Inicial
05: * Date: 18-oct-2005 19:08:19
06: *
07: * Copyright (C) Aragón Innovación Tecnológica S.L.L.
08: * All rights reserved.
09: *
10: * This software is distributed under the terms of the Aranova License version 1.0.
11: * See the terms of the Aranova License in the documentation provided with this software.
12: */
13:
14: package com.aranova.java.jmos.messages.profile0;
15:
16: import com.aranova.java.jmos.annotations.MOSMessage;
17: import com.aranova.java.jmos.enums.TypePort;
18: import com.aranova.java.jmos.messages.Message;
19:
20: /**
21: * Profile 0 - Request Machine Information.<BR>
22: * <b>Purpose</b><BR>
23: * Method for an NCS or MOS to determine more information about its counterpart.<BR>
24: * <b>Response</b><BR>
25: * {@link listMachInfo listMachInfo}<BR>
26: * <b>Port</b><BR>
27: * MOS Lower Port (10540) - Media Object Metadata<BR>
28: * MOS Upper Port (10541) - Running Order<BR>
29: *
30: * @author <a href="http://www.aranova.net/contactar/">Daniel Sánchez</a>
31: * @version 0.9.1
32: * @since 0.9
33: */
34: @MOSMessage(name="reqMachInfo",profile=0,port={TypePort.LowerPort,TypePort.UpperPort},response=listMachInfo.class)
35: public class reqMachInfo extends Message {
36:
37: }
|