index
int64
repo_id
string
file_path
string
content
string
0
java-sources/at/researchstudio/sat/signingframework/1.4/de/uni_koblenz/aggrimm/icp/crypto/sign
java-sources/at/researchstudio/sat/signingframework/1.4/de/uni_koblenz/aggrimm/icp/crypto/sign/trigplus/TriGPlusReader.java
package de.uni_koblenz.aggrimm.icp.crypto.sign.trigplus; import java.io.BufferedReader; import java.io.FileReader; import java.util.ArrayList; import java.util.Stack; import de.uni_koblenz.aggrimm.icp.crypto.sign.graph.*; /** * Basic and simplified TriG+ Parser * Based on [1] * * Note: * - ATTENTION: Does NOT s...
0
java-sources/at/researchstudio/sat/signingframework/1.4/de/uni_koblenz/aggrimm/icp/crypto/sign
java-sources/at/researchstudio/sat/signingframework/1.4/de/uni_koblenz/aggrimm/icp/crypto/sign/trigplus/TriGPlusWriter.java
package de.uni_koblenz.aggrimm.icp.crypto.sign.trigplus; import java.io.BufferedWriter; import java.io.FileWriter; import de.uni_koblenz.aggrimm.icp.crypto.sign.graph.*; /** * Basic TriG+ Writer. Writes a {@link GraphCollection} to a file. * * @author <a href="mailto:schauss@uni-koblenz.de">Peter Schauß</a> */ ...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/app/BotRunnerApp.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/exception/NoBotResponsibleException.java
package won.bot.exception; public class NoBotResponsibleException extends IllegalStateException { public NoBotResponsibleException() { } public NoBotResponsibleException(String s) { super(s); } public NoBotResponsibleException(String message, Throwable cause) { super(message, caus...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/Bot.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/BotLifecyclePhase.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/BotState.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/base/BaseBot.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/base/EventBot.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/base/FactoryBot.java
package won.bot.framework.bot.base; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import won.bot.framework.bot.context.FactoryBotContextWrapper; import won.bot.framework.eventbot.EventListenerContext; import won.bot.framework.eventbot.behaviour.BotBehaviour; import won.bot.framework.eventbot.behaviour.Execu...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/base/ScheduledTriggerBot.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/context/BotContext.java
package won.bot.framework.bot.context; import java.io.Serializable; import java.net.URI; import java.util.List; import java.util.Map; /** * Used by a bot to remember which atoms and nodes and it knows. Additionally * generic Java objects can be saved and retrieved. */ public interface BotContext { /** * @...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/context/BotContextWrapper.java
package won.bot.framework.bot.context; import java.net.URI; import java.util.*; public class BotContextWrapper { private final String botName; private final String atomCreateListName; private final String nodeListName; private final String atomUriAssociation; private final Set<String> atomListName...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/context/FactoryBotContextWrapper.java
/* * Copyright 2017 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/context/MemoryBotContext.java
package won.bot.framework.bot.context; import java.io.Serializable; import java.net.URI; import java.util.*; /** * In memory context implementation using nested maps. This is the default * implementation of the bot context. */ public class MemoryBotContext implements BotContext { private Map<String, Map<String...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/context/MongoBotContext.java
package won.bot.framework.bot.context; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.mongodb.core.MongoTemplate; import org.springframework.data.mongodb.core.query.Criteria; import org.springframework.data.mongodb.core.query.Query; import org.springframework.data.mongod...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/context/MongoContextObject.java
package won.bot.framework.bot.context; import org.springframework.data.annotation.Id; /** * Wrapper object for storing generic java objects in the mongo db database. * This objects allows to specify the the id and the value (java object) to * store. Created by hfriedrich on 24.10.2016. */ public class MongoContex...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/context/MongoContextObjectList.java
package won.bot.framework.bot.context; import java.util.ArrayList; import java.util.List; import org.springframework.data.annotation.Id; /** * Created by hfriedrich on 21.11.2016. */ public class MongoContextObjectList { @Id private String id; private List<Object> objectList; public MongoContextOb...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/bot/utils/BotUtils.java
package won.bot.framework.bot.utils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.crypto.Cipher; import java.lang.invoke.MethodHandles; import java.security.NoSuchAlgorithmException; public class BotUtils { private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomconsumer/AtomConsumer.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomconsumer
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomconsumer/impl/NopAtomConsumer.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomconsumer
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomconsumer/impl/SysoutAtomConsumer.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer/AtomProducer.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer/FileBasedAtomProducer.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer/impl/AbstractAtomProducerWrapper.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer/impl/AbstractCompositeAtomProducer.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer/impl/AtomProducerWrapper.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer/impl/DirectoryBasedAtomProducer.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer/impl/MailFileAtomProducer.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer/impl/NopAtomProducer.java
package won.bot.framework.component.atomproducer.impl; import org.apache.jena.query.Dataset; import won.bot.framework.component.atomproducer.AtomProducer; /** * AtomProducer implementation that does nothing. All methods throw * {@link UnsupportedOperationException}s. */ public class NopAtomProducer implements Ato...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer/impl/RoundRobinCompositeAtomProducer.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer/impl/SimpleCompositeAtomProducer.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer/impl/TemplateBasedAtomProducer.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer/impl/TrigFileAtomProducer.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomproducer/impl/TurtleFileAtomProducer.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/atomprosumer/AtomProsumer.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/nodeurisource/NodeURISource.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/nodeurisource
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/nodeurisource/impl/RandomMultiNodeUriSource.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/nodeurisource
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/nodeurisource/impl/RoundRobinMultiNodeUriSource.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/nodeurisource
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/component/nodeurisource/impl/SingleNodeURISource.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/EventListenerContext.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/BaseEventBotAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/EventBotAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/EventBotActionUtils.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/AbstractDelegatingAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/DelayedAction.java
package won.bot.framework.eventbot.action.impl; import won.bot.framework.eventbot.EventListenerContext; import won.bot.framework.eventbot.action.EventBotAction; public class DelayedAction extends DelayedDelegatingAction { private final long delay; public DelayedAction(final EventListenerContext eventListener...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/DelayedDelegatingAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/LogAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/LogErrorAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/MultipleActions.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/PublishEventAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/RandomDelayedAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/atomlifecycle/AbstractActivateAtomAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/atomlifecycle/AbstractCreateAtomAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/atomlifecycle/AbstractDeactivateAtomAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/atomlifecycle/AbstractDeleteAtomAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/atomlifecycle/AbstractModifyAtomAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/atomlifecycle/CreateAtomAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/atomlifecycle/CreateAtomWithSocketsAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/atomlifecycle/DeactivateAllAtomsAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/atomlifecycle/DeactivateAllAtomsOfListAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/counter/BaseCounterAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/counter/CountEvent.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/counter/Counter.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/counter/CounterImpl.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/counter/DecrementCounterAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/counter/EventPublishingCounter.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/counter/IncrementCounterAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/counter/TargetCountReachedEvent.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/counter/TargetCounterDecorator.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/crawl/CrawlAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/factory/FactoryHintCheckAction.java
/* * Copyright 2017 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/factory/InitFactoryAction.java
package won.bot.framework.eventbot.action.impl.factory; import org.apache.jena.query.Dataset; import org.apache.jena.rdf.model.Resource; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import won.bot.framework.bot.context.FactoryBotContextWrapper; import won.bot.framework.component.atomproducer.AtomProducer; ...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/factory
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/factory/model/Precondition.java
package won.bot.framework.eventbot.action.impl.factory.model; import java.io.Serializable; public class Precondition implements Serializable { private String uri; private boolean met; public Precondition(String uri, boolean met) { this.uri = uri; this.met = met; } public String g...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/factory
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/factory/model/Proposal.java
package won.bot.framework.eventbot.action.impl.factory.model; import java.io.Serializable; import java.net.URI; public class Proposal implements Serializable { private URI uri; private ProposalState state; public Proposal(String uri, ProposalState state) { this(URI.create(uri), state); } ...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/factory
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/factory/model/ProposalState.java
package won.bot.framework.eventbot.action.impl.factory.model; /** * Created by fsuda on 13.03.2018. */ public enum ProposalState { SUGGESTED, ACCEPTED, CANCELED }
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/lifecycle/SignalWorkDoneAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/listener/UnsubscribeListenerAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/maintenance/StatisticsLoggingAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/monitor/MatchingLoadTestMonitorAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/monitor/MessageLifecycleMonitoringAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/socket/TwoPhaseCommitDeactivateOnCloseAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/socket/TwoPhaseCommitNoVoteDeactivateAllAtomsAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/trigger/ActionOnTriggerEventListener.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/trigger/AddFiringsAction.java
package won.bot.framework.eventbot.action.impl.trigger; import won.bot.framework.eventbot.EventListenerContext; import won.bot.framework.eventbot.action.BaseEventBotAction; import won.bot.framework.eventbot.event.Event; import won.bot.framework.eventbot.listener.EventListener; public class AddFiringsAction extends Ba...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/trigger/BaseBotTriggerEvent.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/trigger/BotTrigger.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/trigger/BotTriggerEvent.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/trigger/BotTriggerFilter.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/trigger/FireCountLimitedBotTrigger.java
package won.bot.framework.eventbot.action.impl.trigger; import java.time.Duration; import java.util.concurrent.atomic.AtomicInteger; import won.bot.framework.eventbot.EventListenerContext; /** * A BotTrigger that will fire in specified intervals until its fireCount is * reached. Additional firings can be added usi...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/trigger/StartBotTriggerCommandEvent.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/trigger/StopBotTriggerCommandEvent.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/wonmessage/CloseConnectionAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/wonmessage/ConnectFromListToListAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/wonmessage/OpenConnectionAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/wonmessage/PrintWonMessageAction.java
package won.bot.framework.eventbot.action.impl.wonmessage; import java.lang.invoke.MethodHandles; import java.util.function.BiFunction; import java.util.stream.Stream; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import won.bot.framework.eventbot.EventListenerContext; import won.bot.framework.eventbot.ac...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/wonmessage/SendFeedbackForHintAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/wonmessage/SendMessageAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/wonmessage/SendMultipleMessagesAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/wonmessage
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/eventbot/action/impl/wonmessage/execCommand/ExecuteCloseCommandAction.java
/* * Copyright 2012 Research Studios Austria Forschungsges.m.b.H. Licensed under * the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable *...