Package io.teknek.intravert.action.impl

Examples of io.teknek.intravert.action.impl.LoadSessionAction


  private Map<String,Action> actions;
 
  public ActionFactory(){
    actions = new HashMap<String,Action>();
    actions.put(CREATE_SESSION, new SaveSessionAction());
    actions.put(LOAD_SESSION, new LoadSessionAction());
    actions.put(SET_KEYSPACE, new SetKeyspaceAction());
    actions.put(GET_KEYSPACE, new GetKeyspaceAction());
    actions.put(CREATE_FILTER, new CreateFilterAction());
    actions.put(UPSERT, new UpsertAction());
    actions.put(CREATE_KEYSPACE, new CreateKeyspaceAction());
View Full Code Here

TOP

Related Classes of io.teknek.intravert.action.impl.LoadSessionAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.