index
int64
repo_id
string
file_path
string
content
string
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/extensions
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/extensions/textmessagecommand/UsageCommandEvent.java
package won.bot.framework.extensions.textmessagecommand; import won.bot.framework.eventbot.event.BaseAtomAndConnectionSpecificEvent; import won.protocol.model.Connection; /** * User: ypanchenko Date: 26.02.2016 */ public class UsageCommandEvent extends BaseAtomAndConnectionSpecificEvent { public UsageCommandEve...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/extensions/textmessagecommand
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/extensions/textmessagecommand/command/EqualsTextMessageCommand.java
package won.bot.framework.extensions.textmessagecommand.command; import won.protocol.model.Connection; import java.util.function.Consumer; /** * TextMessageCommand that checks if a message was equal to a certain String */ public final class EqualsTextMessageCommand extends TextMessageCommand { private final St...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/extensions/textmessagecommand
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/extensions/textmessagecommand/command/PatternMatcherTextMessageCommand.java
package won.bot.framework.extensions.textmessagecommand.command; import won.protocol.model.Connection; import java.util.function.BiConsumer; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * TextMessageCommand that checks if a message matches to a regex-pattern */ public final class PatternMatc...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/extensions/textmessagecommand
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/extensions/textmessagecommand/command/StartsWithTextMessageCommand.java
package won.bot.framework.extensions.textmessagecommand.command; import won.protocol.model.Connection; import java.util.function.BiConsumer; /** * TextMessageCommand that checks if a message startsWith a certain String */ public final class StartsWithTextMessageCommand extends TextMessageCommand { private fina...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/extensions/textmessagecommand
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/extensions/textmessagecommand/command/TextMessageCommand.java
package won.bot.framework.extensions.textmessagecommand.command; /** * Abstract superclass to define certain TextMessageCommand matcher */ public abstract class TextMessageCommand { private final String commandSyntax; private final String infoMessage; /** * @param commandSyntax syntax string for ge...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/extensions/textmessagecommand
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/extensions/textmessagecommand/filter/TextMessageCommandFilter.java
package won.bot.framework.extensions.textmessagecommand.filter; import org.apache.commons.lang3.StringUtils; import won.bot.framework.eventbot.EventListenerContext; import won.bot.framework.eventbot.event.Event; import won.bot.framework.eventbot.event.MessageEvent; import won.bot.framework.eventbot.filter.impl.EventLi...
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/manager/BotManager.java
package won.bot.framework.manager; import won.bot.exception.NoBotResponsibleException; import won.bot.framework.bot.Bot; import java.net.URI; import java.util.Collection; import java.util.List; /** * */ public interface BotManager { Bot getBotResponsibleForAtomUri(URI atomUri) throws NoBotResponsibleException;...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/manager
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/manager/impl/BotManagerImpl.java
package won.bot.framework.manager.impl; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import won.bot.exception.NoBotResponsibleException; import won.bot.framework.bot.Bot; import won.bot.framework.manager.BotManager; import java.lang.invoke.MethodHandles; import java.net.URI; import java.util.*; /** * Bo...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/manager
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/framework/manager/impl/SpringAwareBotManagerImpl.java
package won.bot.framework.manager.impl; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.BeansException; import org.springframework.beans.factory.DisposableBean; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.SpringApplication; im...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/integration/BotMatcherProtocolMatcherServiceCallback.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/integration/BotOwnerCallback.java
package won.bot.integration; import java.lang.invoke.MethodHandles; import java.net.URI; import java.util.Date; import java.util.Optional; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.scheduling.TaskScheduler; impor...
0
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot
java-sources/at/researchstudio/sat/won-bot/0.9/won/bot/vocabulary/WXBOT.java
package won.bot.vocabulary; import org.apache.jena.rdf.model.Model; import org.apache.jena.rdf.model.ModelFactory; import org.apache.jena.rdf.model.Resource; public class WXBOT { public static final String BASE_URI = "https://w3id.org/won/ext/bot#"; public static final String DEFAULT_PREFIX = "wx-bot"; pr...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/exception/CertificateException.java
package won.cryptography.exception; /** * Created by hfriedrich on 18.04.2016. */ public class CertificateException extends Exception { public CertificateException() { } public CertificateException(String msg) { super(msg); } }
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/exception/KeyNotSupportedException.java
package won.cryptography.exception; /** * User: fsalcher Date: 24.07.2014 */ public class KeyNotSupportedException extends Exception { public KeyNotSupportedException() { } public KeyNotSupportedException(String msg) { super(msg); } public KeyNotSupportedException(String message, Throwa...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/key/KeyInformationExtractor.java
package won.cryptography.key; import java.security.Key; import java.security.PublicKey; import won.cryptography.exception.KeyNotSupportedException; /** * Helper interface for extracting information out of a (public key). Has to be * implemented for specific formats (e.g. Bouncy Castle). * * @author Fabian Salche...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/key/KeyInformationExtractorBouncyCastle.java
package won.cryptography.key; import java.security.Key; import java.security.PublicKey; import java.security.interfaces.ECKey; import java.security.interfaces.ECPublicKey; import java.security.spec.ECParameterSpec; import won.cryptography.exception.KeyNotSupportedException; /** * User: fsalcher Date: 24.07.2014 */...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/keymanagement/AtomUriAsAliasStrategy.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-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/keymanagement/KeyPairAliasDerivationStrategy.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-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/keymanagement/KeyPairAliasDerivationStrategyFactory.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-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/keymanagement/PredefinedAliasStrategy.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-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/CertificateOnStartupCreator.java
package won.cryptography.service; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.InitializingBean; import java.io.IOException; import java.lang.invoke.MethodHandles; /** * Checks if the node certificate is already present in the specified keystore * and creates it...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/CertificateService.java
package won.cryptography.service; import org.bouncycastle.asn1.ASN1ObjectIdentifier; import org.bouncycastle.asn1.ASN1Sequence; import org.bouncycastle.asn1.x500.X500Name; import org.bouncycastle.asn1.x500.X500NameBuilder; import org.bouncycastle.asn1.x500.style.BCStyle; import org.bouncycastle.asn1.x509.SubjectPublic...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/CryptographyService.java
package won.cryptography.service; import java.io.File; import java.io.IOException; import java.lang.invoke.MethodHandles; import java.math.BigInteger; import java.security.KeyPair; import java.security.KeyStoreException; import java.security.PrivateKey; import java.security.PublicKey; import java.security.cert.Certifi...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/CryptographyUtils.java
package won.cryptography.service; import net.sf.ehcache.Cache; import net.sf.ehcache.CacheManager; import net.sf.ehcache.Ehcache; import net.sf.ehcache.Element; import org.apache.http.client.HttpClient; import org.apache.http.conn.ssl.SSLConnectionSocketFactory; import org.apache.http.impl.client.HttpClients; import o...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/KeyPairService.java
package won.cryptography.service; import org.bouncycastle.jcajce.provider.asymmetric.ec.KeyPairGeneratorSpi; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import won.cryptography.key.KeyInformationExtractor; import java.lang.invoke.MethodHandles; import java.security.InvalidAlgorithmParameterException; imp...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/RandomNumberService.java
package won.cryptography.service; /** * User: fsalcher Date: 18.09.2014 */ public interface RandomNumberService { /** * generates a URI safe random string with the given length that does not start * with a number. We do this so that we generate URIs for which prefixing will * always work with N3.j...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/RegistrationClient.java
package won.cryptography.service; import java.io.IOException; /** * User: ypanchenko Date: 15.10.2015 */ public interface RegistrationClient { String register(final String remoteNodeUri) throws IOException; }
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/RegistrationRestClientHttps.java
package won.cryptography.service; import org.apache.http.ssl.PrivateKeyStrategy; import org.apache.http.ssl.TrustStrategy; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.http.*; import org.springframework.web.client.RestTemplate; import won.cryptography.service.keystore.KeyStoreSer...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/RegistrationServer.java
package won.cryptography.service; import won.protocol.exception.WonProtocolException; /** * User: ypanchenko Date: 08.10.2015 */ public interface RegistrationServer { String registerOwner(final Object credentials) throws WonProtocolException; String registerNode(final Object credentials) throws WonProtocol...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/RegistrationServerCertificateBased.java
package won.cryptography.service; import java.security.cert.CertificateException; import java.security.cert.X509Certificate; import org.apache.http.ssl.TrustStrategy; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.tran...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/SecureRandomNumberServiceImpl.java
package won.cryptography.service; import won.protocol.util.ExpensiveSecureRandomString; /** * User: fsalcher Date: 09.09.2014 */ public class SecureRandomNumberServiceImpl implements RandomNumberService { ExpensiveSecureRandomString randomString = new ExpensiveSecureRandomString(); @Override public Str...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/TrustStoreService.java
package won.cryptography.service; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import won.cryptography.service.keystore.FileBasedKeyStoreService; import java.io.File; import java.io.IOException; import java.lang.invoke.MethodHandles; import java.security.KeyStore; import java.security.cert.Certificate; /...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/keystore/AbstractKeyStoreService.java
package won.cryptography.service.keystore; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.IOException; import java.lang.invoke.MethodHandles; import java.security.KeyStore; import java.security.KeyStoreException; import java.security.PrivateKey; import java.security.PublicKey; import java.sec...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/keystore/FileBasedKeyStoreService.java
package won.cryptography.service.keystore; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.Serializable; import java.lang.invoke.MethodHandles; import java.security.KeyStore; import java.security.Priv...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/service/keystore/KeyStoreService.java
package won.cryptography.service.keystore; import java.io.IOException; import java.security.KeyStore; import java.security.PrivateKey; import java.security.PublicKey; import java.security.cert.Certificate; public interface KeyStoreService { PrivateKey getPrivateKey(String alias); /** * Returns the publi...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/ssl/AliasFromCNGenerator.java
package won.cryptography.ssl; import sun.security.x509.X500Name; import java.io.IOException; import java.security.cert.CertificateException; import java.security.cert.X509Certificate; /** * User: ypanchenko Date: 19.10.2015 */ public class AliasFromCNGenerator implements AliasGenerator { @Override public S...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/ssl/AliasFromFingerprintGenerator.java
package won.cryptography.ssl; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.security.cert.CertificateException; import java.security.cert.X509Certificate; /** * User: ypanchenko Date: 19.10.2015 */ public class AliasFromFingerprintGenerator implements AliasGenerator ...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/ssl/AliasFromWebIdGeneratorStrategy.java
package won.cryptography.ssl; import won.cryptography.service.CertificateService; import java.net.URI; import java.security.cert.CertificateException; import java.security.cert.X509Certificate; import java.util.List; /** * User: ypanchenko Date: 19.10.2015 */ public class AliasFromWebIdGeneratorStrategy implements...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/ssl/AliasGenerator.java
package won.cryptography.ssl; import java.security.cert.CertificateException; import java.security.cert.X509Certificate; /** * User: ypanchenko Date: 19.10.2015 */ public interface AliasGenerator { String generateAlias(X509Certificate certificate) throws CertificateException; }
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/ssl/KeyManagerWrapperWithKeyServiceAndStrategy.java
package won.cryptography.ssl; import org.apache.http.ssl.PrivateKeyDetails; import org.apache.http.ssl.PrivateKeyStrategy; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import won.cryptography.service.keystore.KeyStoreService; import javax.net.ssl.KeyManager; import javax.net.ssl.KeyManagerFactory; import ...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/ssl/MessagingContext.java
package won.cryptography.ssl; import javax.net.ssl.TrustManager; import javax.net.ssl.X509KeyManager; import javax.net.ssl.X509TrustManager; import org.apache.http.ssl.PrivateKeyStrategy; import org.apache.http.ssl.TrustStrategy; import won.cryptography.service.TrustStoreService; import won.cryptography.service.keys...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/ssl/PredefinedAliasPrivateKeyStrategy.java
package won.cryptography.ssl; import java.lang.invoke.MethodHandles; import java.net.Socket; import java.util.Map; import org.apache.http.ssl.PrivateKeyDetails; import org.apache.http.ssl.PrivateKeyStrategy; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * When the server requests a certificate, and i...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/ssl/TOFUStrategy.java
package won.cryptography.ssl; import org.apache.http.ssl.TrustStrategy; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import won.cryptography.service.TrustStoreService; import java.lang.invoke.MethodHandles; import java.security.cert.CertificateException; import java.security.cert.X509Certificate; /** * ...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/ssl/TrustAnyCertificateStrategy.java
package won.cryptography.ssl; import java.security.cert.CertificateException; import java.security.cert.X509Certificate; import org.apache.http.ssl.TrustStrategy; /** * User: ypanchenko Date: 21.10.2015 */ public class TrustAnyCertificateStrategy implements TrustStrategy { @Override public boolean isTruste...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/ssl/TrustManagerWrapperWithStrategy.java
package won.cryptography.ssl; import org.apache.http.ssl.TrustStrategy; import javax.net.ssl.TrustManager; import javax.net.ssl.TrustManagerFactory; import javax.net.ssl.X509TrustManager; import java.security.KeyStore; import java.security.KeyStoreException; import java.security.NoSuchAlgorithmException; import java....
0
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography
java-sources/at/researchstudio/sat/won-core/0.9/won/cryptography/ssl/TrustManagerWrapperWithTrustService.java
package won.cryptography.ssl; import won.cryptography.service.TrustStoreService; import javax.net.ssl.TrustManager; import javax.net.ssl.TrustManagerFactory; import javax.net.ssl.X509TrustManager; import java.security.KeyStore; import java.security.KeyStoreException; import java.security.NoSuchAlgorithmException; imp...
0
java-sources/at/researchstudio/sat/won-core/0.9/won
java-sources/at/researchstudio/sat/won-core/0.9/won/db/FlywayWrapper.java
package won.db; import org.flywaydb.core.Flyway; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.InitializingBean; import javax.sql.DataSource; import java.lang.invoke.MethodHandles; /** * This Bean is used to determine whether or not an update/validation of the ddl...
0
java-sources/at/researchstudio/sat/won-core/0.9/won
java-sources/at/researchstudio/sat/won-core/0.9/won/monitoring/AbstractFileOutputRecorder.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-core/0.9/won
java-sources/at/researchstudio/sat/won-core/0.9/won/monitoring/AbstractRecorder.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-core/0.9/won
java-sources/at/researchstudio/sat/won-core/0.9/won/monitoring/MonitoringRecorder.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-core/0.9/won
java-sources/at/researchstudio/sat/won-core/0.9/won/monitoring/MonitoringResetter.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-core/0.9/won
java-sources/at/researchstudio/sat/won-core/0.9/won/monitoring/MonitoringStatisticsRecorder.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-core/0.9/won
java-sources/at/researchstudio/sat/won-core/0.9/won/monitoring/MonitoringStatisticsRecorderTask.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-core/0.9/won/monitoring
java-sources/at/researchstudio/sat/won-core/0.9/won/monitoring/hibernate/HibernateStatisticsFactoryBean.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-core/0.9/won/monitoring
java-sources/at/researchstudio/sat/won-core/0.9/won/monitoring/simon/SimonCsvStatisticsRecorder.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-core/0.9/won/monitoring
java-sources/at/researchstudio/sat/won-core/0.9/won/monitoring/simon/SimonResetter.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-core/0.9/won/monitoring
java-sources/at/researchstudio/sat/won-core/0.9/won/monitoring/simon/SimonSysoutStatisticsRecorder.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-core/0.9/won/monitoring
java-sources/at/researchstudio/sat/won-core/0.9/won/monitoring/simon/SimonVisitor.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-core/0.9/won/monitoring
java-sources/at/researchstudio/sat/won-core/0.9/won/monitoring/simon/SimonVisitors.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-core/0.9/won
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/WonConstants.java
package won.protocol; public final class WonConstants { private WonConstants() { } /** * Each message container keeps track of the messages that still need to be * 'confirmed', i.e. referenced by a subsequent message. All subsequent success * responses from the container will reference the ...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/CamelConfigurationFailedException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/ConnectionAlreadyExistsException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/DataIntegrityException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/DuplicateResponseException.java
package won.protocol.exception; public class DuplicateResponseException extends WonProtocolException { private static final long serialVersionUID = -3834992485733353559L; public DuplicateResponseException() { super(); } public DuplicateResponseException(String message, Throwable cause) { ...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/IllegalAtomContentException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/IllegalAtomURIException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/IllegalMessageForAtomStateException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/IllegalMessageForConnectionStateException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/IllegalMessagePropertyException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/IllegalSocketModificationException.java
package won.protocol.exception; public class IllegalSocketModificationException extends WonProtocolException { /** * */ private static final long serialVersionUID = 2481359565104725988L; public IllegalSocketModificationException(String message) { super(message); // TODO Auto-gen...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/IncoherentDatabaseStateException.java
package won.protocol.exception; public class IncoherentDatabaseStateException extends DataIntegrityException { public IncoherentDatabaseStateException() { super(); // TODO Auto-generated constructor stub } public IncoherentDatabaseStateException(String message, Throwable cause) { s...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/IncompatibleSocketsException.java
package won.protocol.exception; import java.net.URI; public class IncompatibleSocketsException extends WonProtocolException { public IncompatibleSocketsException(URI localSocket, URI targetSocket) { super("Incompatible sockets! Local socket: " + localSocket + ", target socket: " + targetSocket); } }
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/IncorrectPropertyCountException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/MissingMessagePropertyException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/NoAtomForSocketFoundException.java
package won.protocol.exception; import java.net.URI; public class NoAtomForSocketFoundException extends WonProtocolException { public NoAtomForSocketFoundException(URI socketURI) { super("No atom found for socket " + socketURI); } }
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/NoDefaultSocketException.java
package won.protocol.exception; import java.net.URI; import java.text.MessageFormat; public class NoDefaultSocketException extends WonProtocolException { private static final long serialVersionUID = -8417204478048969672L; private URI atomUri; public URI getAtomURI() { return atomUri; } p...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/NoSuchAtomException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/NoSuchConnectionException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/NoSuchMessageException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/NoSuchOwnerApplicationException.java
package won.protocol.exception; /** * User: LEIH-NB Date: 11.11.13 */ public class NoSuchOwnerApplicationException extends WonProtocolException { public NoSuchOwnerApplicationException() { super("owner application not found on this server."); } }
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/NoSuchSocketException.java
package won.protocol.exception; import java.net.URI; import java.text.MessageFormat; /** * User: LEIH-NB Date: 20.02.14 */ public class NoSuchSocketException extends WonProtocolException { private URI unknownSocketURI; public URI getUnknownAtomURI() { return unknownSocketURI; } public NoSu...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/RDFStorageException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/SocketCapacityException.java
package won.protocol.exception; public class SocketCapacityException extends WonProtocolException { public SocketCapacityException() { } public SocketCapacityException(String message) { super(message); } public SocketCapacityException(Throwable cause) { super(cause); } pu...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/UriAlreadyInUseException.java
package won.protocol.exception; /** * Indicates that the uri (of event or atom) is already in use. User: ypanchenko * Date: 24.04.2015 */ public class UriAlreadyInUseException extends WonMessageProcessingException { public UriAlreadyInUseException() { } public UriAlreadyInUseException(final String uri)...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/UriNodePathException.java
package won.protocol.exception; /** * Indicates that the uri (of event or atom) is malformed from the point of view * of the node that is supposed to store it. (e.g. the domain if the message * event uri does not correspond to the node domain, etc.) User: ypanchenko * Date: 24.04.2015 */ public class UriNodePathE...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/WonMessageBuilderException.java
package won.protocol.exception; /** * User: fsalcher Date: 27.08.2014 */ public class WonMessageBuilderException extends RuntimeException { public WonMessageBuilderException() { } public WonMessageBuilderException(final String message) { super(message); } public WonMessageBuilderExcepti...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/WonMessageNotWellFormedException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/WonMessageProcessingException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/WonProtocolException.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/exception/WrongAddressingInformationException.java
package won.protocol.exception; import java.net.URI; import java.util.Arrays; import java.util.stream.Collectors; import org.apache.jena.rdf.model.Property; public class WrongAddressingInformationException extends WonProtocolException { URI[] wrongProperties; URI messageUri; public WrongAddressingInform...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/jms/ActiveMQService.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/jms/ActiveMQServiceImpl.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/jms/AtomBasedCamelConfiguratorImpl.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/jms/AtomProtocolCamelConfigurator.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/jms/AtomProtocolCommunicationService.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/jms/BrokerComponentFactory.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/jms/CamelConfiguration.java
package won.protocol.jms; /** * User: LEIH-NB Date: 18.02.14 */ public class CamelConfiguration { private String endpoint; private String brokerComponentName; public String getBrokerComponentName() { return brokerComponentName; } public void setBrokerComponentName(String brokerComponent...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/jms/CamelConfigurator.java
package won.protocol.jms; import java.net.URI; import org.apache.camel.CamelContext; import org.apache.camel.CamelContextAware; import won.protocol.exception.CamelConfigurationFailedException; /** * User: LEIH-NB Date: 24.02.14 */ public interface CamelConfigurator extends CamelContextAware { // todo: the met...
0
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/jms/MatcherActiveMQService.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-core/0.9/won/protocol
java-sources/at/researchstudio/sat/won-core/0.9/won/protocol/jms/MatcherActiveMQServiceImpl.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 *...