01: /*
02: * File: roDelete.java
03: * Project: jMOS, com.aranova.java.jmos.messages.profile2
04: * Revision: 0.9.1
05: * Date: 18-ene-2006 10:12:52
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.profile2;
15:
16: import com.aranova.java.jmos.annotations.MOSAttribute;
17: import com.aranova.java.jmos.annotations.MOSMessage;
18: import com.aranova.java.jmos.enums.TypePort;
19: import com.aranova.java.jmos.messages.Message;
20:
21: /**
22: * Profile 2 - Delete Running Order.<BR>
23: * <b>Purpose</b><BR>
24: * Deletes a Running order in the MOS.<BR>
25: * <b>Response</b><BR>
26: * {@link roAck roAck}<BR>
27: * <b>Port</b><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.1
33: */
34: @MOSMessage(name="roDelete",profile=2,port=TypePort.UpperPort,response=roAck.class)
35: public class roDelete extends Message {
36: @MOSAttribute(name="roID",maxLength=128)
37: private String _roID;
38:
39: /**
40: * @return Returns the roID.
41: */
42: public String getRoID() {
43: return _roID;
44: }
45:
46: /**
47: * @param roID The roID to set.
48: */
49: public void setRoID(final String roID) {
50: _roID = roID;
51: }
52: }
|