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 
12 public interface SessionInfoService extends JaggerService{
13 
19  String getComment();
20 
25  void setComment(String comment);
26 
31  void appendToComment(String st);
32 
38  void saveOrUpdateTag(String tagName, String tagDescription);
39 
44  void markSessionWithTag(String tagName);
45 
50  Set<String> getSessionTags();
51 
52 }