org.projectodd.stilts.stomp.spi.StompSession Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microflex-bigdecimal Show documentation
Show all versions of microflex-bigdecimal Show documentation
Microplate library for parsing wet lab data.
The newest version!
package org.projectodd.stilts.stomp.spi;
import java.util.List;
public interface StompSession {
String getId();
List getAttributeNames();
Object getAttribute(String name);
void setAttribute(String name, Object value);
void removeAttribute(String name);
void access();
void endAccess();
}
© 2015 - 2026 Weber Informatics LLC | Privacy Policy