All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.genexus.internet.websocket.GXWebSocketSession Maven / Gradle / Ivy

Go to download

Core classes for the runtime used by Java and Android apps generated with GeneXus

There is a newer version: 4.7.3
Show newest version
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