Dear all,

I started to learn about xdoclet today and decided to integrate xdoclet incrementally in my project.
My first exercise is to replace all my session beans with xdoclet generated ones.

I was able to do it exept for one little thing. I frequently have static variables in my remote interfaces.
I can't find a tag that would generate such variables in the remote interface.

Does anybody if that is possible ?

Thanks in advance.
Best regards,
Sebastien

Existing remote interface example :

package com.test;

import java.rmi.RemoteException;
import java.util.Collection;
import java.util.Map;
import java.util.List;

import com.test.RequestVO;

public interface RequestService extends javax.ejb.EJBObject {

  public static final Integer TYPE_MAIL_CONFIRMATION                        = new Integer(-1);
  public static final Integer TYPE_MAIL_CLOSURE                                = new Integer(-2);

  public Integer createRequest(RequestVO vo) throws RemoteException;
}

Reply via email to