com.genexus.internet.websocket.GXWebSocketSession Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxclassR Show documentation
Show all versions of gxclassR Show documentation
Core classes for the runtime used by Java and Android apps generated with GeneXus
package com.genexus.internet.websocket;
import com.genexus.websocket.ISession;
public class GXWebSocketSession{
private String id;
private ISession session;
public String getId(){
return id;
}
public GXWebSocketSession(ISession session){
id = session.getId();
this.session = session;
}
public ISession getSession()
{
return session;
}
public boolean equals(Object obj){
return ((GXWebSocketSession)obj).session.equals(this.session);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy