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

Last change on this file was 52, checked in by ruud, 13 months ago

Fixed small issues in domaineditor.

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.