Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking to use Enum's to return both Codes and Messages from an EJB. Currently only an integer value Code is returned. As we have more than one client app and the clients are not always updated when the EJB common classes are and vica versa. What will happen if the Enum types on the Client side become out of sync?

Will it work if I have an old definition of an Enum on the client side, and a new definition on the EJB side and vica versa?

E.g Client side:

 public enum Color {
 WHITE(21, "White"), BLACK(22, "Black");

 private int code;
private int message;

 private Color(int c, String message) {
   code = c;
   message = m;
 }

 public int getCode() {
   return code;
 }

public String getMessage(){
 return message;
}

EJB side:

 public enum Color {
 WHITE(21, "White"), BLACK(22, "Black"), RED(23, "Red");

 private int code;
private int message;

 private Color(int c, String message) {
   code = c;
   message = m;
 }

 public int getCode() {
   return code;
 }

public String getMessage(){
 return message;
}

And my EJB method is:

public Color getBestColor(); 

And returns:

Color.WHITE
share|improve this question

1 Answer

up vote 2 down vote accepted

If the client enum definition has the value you send, it will work fine (e.g. WHITE). if the client does not have the value, then you will get an IllegalArgumentException on the client side (e.g. RED). (details on enum serialization here).

share|improve this answer
Thats great thanks. Perfect answer (with link to confirm), and means what I want to do will work fine :) – timothyja Jun 22 '11 at 12:54
I'll note that enum serialization might work for JRMP, but RMI-IIOP is different. Both Sun and IBM implementations of RMI-IIOP enum serialization have had bugs, so if you're using RMI-IIOP, I would recommend testing carefully. – bkail Jun 22 '11 at 15:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.