01: /*
02: * File: objPath.java
03: * Project: jMOS, com.aranova.java.jmos.messages.profile
04: * Revision: 0.9.1
05: * Date: 19-ene-2006 12:27:35
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.profile;
15:
16: import com.aranova.java.jmos.annotations.MOSAttribute;
17: import com.aranova.java.jmos.annotations.MOSMessage;
18: import com.aranova.java.jmos.messages.Message;
19:
20: /**
21: * Clase para representar el valor objPath.
22: *
23: * @author <a href="http://www.aranova.net/contactar/">Daniel Sánchez</a>
24: * @version 0.9.1
25: * @since 0.9.1
26: */
27: @MOSMessage(name="objPath",writeTag=false)
28: public class objPath extends Message {
29: @MOSAttribute(name="techDescription",attibute=true,writeTag=false)
30: private String _techDescription;
31: @MOSAttribute(name="objPath",writeTag=false)
32: private String _objPath;
33:
34: /**
35: * @return Returns the objPath.
36: */
37: public String getObjPath() {
38: return _objPath;
39: }
40:
41: /**
42: * @param objPath The objPath to set.
43: */
44: public void setObjPath(final String objPath) {
45: _objPath = objPath;
46: }
47:
48: /**
49: * @return Returns the techDescription.
50: */
51: public String getTechDescription() {
52: return _techDescription;
53: }
54:
55: /**
56: * @param techDescription The techDescription to set.
57: */
58: public void setTechDescription(final String techDescription) {
59: _techDescription = techDescription;
60: }
61: }
|