How find the iwtTabprovider.tabName with the API
I try to find in a channel who extend ProfileProviderAdapter the select tab. It is useful for modify the contents of the channel according to the select tab.
example:
import org.xml.sax.* ;
import org.xml.sax.helpers.* ;
import java.io.* ;
import netscape.ldap.* ;
import apildap.*;
import com.iplanet.portalserver.logging.*;
import com.iplanet.portalserver.providers.*;
import com.iplanet.portalserver.profile.*;
import com.iplanet.portalserver.session.Session;
import com.iplanet.portalserver.session.SessionException;
import com.iplanet.portalserver.util.Debug;
import java.util.*;
public class PRFMenu extends ProfileProviderAdapter {
public StringBuffer getContent(Map map)
throws ProviderException {
StringBuffer theStringBuffer = new StringBuffer();
String selectTab=??;
if (selecttab="Espace Commun")
{
......
}
else
{
.......
}
return theStringBuffer;
}
}
Thank you for replacing the ?

