EenMessage.java
/*
* @ Copyright 2001 FA Software;
* All right reserved. No part of this program may be reproduced or
* transmitted in any form or by any means, electronic or
* mechanical, including photocopying, recording, or by any
* information storage or retrieval system without written
* permission from FA Software, except for inclusion of brief
* quotations in a review.
*/
package com.mycim.valueobject.alm;
import com.mycim.valueobject.bas.NamedObject;
public class EenMessage extends NamedObject {
// --------------------------------------------------------- Instance Variables
private String messageSubject;
private String messageText;
// --------------------------------------------------------constructor
public EenMessage() {
}
public EenMessage(String instanceId, String namedSpace, String object) {
super(instanceId, namedSpace, object);
}
public EenMessage(long msgRrn) {
super(msgRrn);
}
// --------------------------------------------------------- Properties
public String getMessageSubject() {
return this.messageSubject;
}
public void setMessageSubject(String messageSubject) {
this.messageSubject = messageSubject;
}
public String getMessageText() {
return this.messageText;
}
public void setMessageText(String messageText) {
this.messageText = messageText;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/