source: protocol/src/main/java/geniusweb/protocol/session/SessionProtocol.java@ 34

Last change on this file since 34 was 34, checked in by bart, 3 years ago

Added SAOP and simplerunner to GeniusWebPython. Several minor fixes.

File size: 393 bytes
Line 
1package geniusweb.protocol.session;
2
3import com.fasterxml.jackson.annotation.JsonSubTypes;
4import com.fasterxml.jackson.annotation.JsonSubTypes.Type;
5
6import geniusweb.protocol.NegoProtocol;
7import geniusweb.protocol.session.saop.SAOP;
8
9/**
10 * Interface for all session protocols.
11 *
12 */
13@JsonSubTypes({ @Type(value = SAOP.class) })
14
15public interface SessionProtocol extends NegoProtocol {
16
17}
Note: See TracBrowser for help on using the repository browser.