Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
SessionInfoService.java
Go to the documentation of this file.
1 package com.griddynamics.jagger.engine.e1.services;
2 
3 import java.util.Set;
4 
25 public interface SessionInfoService extends JaggerService{
26 
32  String getComment();
33 
38  void setComment(String comment);
39 
44  void appendToComment(String st);
45 
51  void saveOrUpdateTag(String tagName, String tagDescription);
52 
57  void markSessionWithTag(String tagName);
58 
63  Set<String> getSessionTags();
64 
65 }