index
int64
repo_id
string
file_path
string
content
string
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/actor/SolrMatcherActor.java
package won.matcher.solr.actor; import java.io.IOException; import java.time.temporal.ChronoUnit; import java.util.LinkedList; import java.util.List; import java.util.Optional; import org.apache.jena.query.Dataset; import org.apache.solr.client.solrj.SolrServerException; import org.apache.solr.common.SolrDocumentList...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/config/SolrMatcherConfig.java
package won.matcher.solr.config; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.ImportResource; import org.springframework.context.annotation.PropertySource; /** * Created by hfriedrich on 15.09.201...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/hints/HintBuilder.java
package won.matcher.solr.hints; import org.apache.commons.collections.CollectionUtils; import org.apache.solr.common.SolrDocument; import org.apache.solr.common.SolrDocumentList; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springfra...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/index/AtomIndexer.java
package won.matcher.solr.index; import com.github.jsonldjava.core.JsonLdError; import com.github.jsonldjava.core.JsonLdOptions; import com.github.jsonldjava.core.JsonLdProcessor; import com.github.jsonldjava.utils.JsonUtils; import org.apache.jena.query.*; import org.apache.jena.rdf.model.Model; import org.apache.jena...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/DefaultMatcherQueryExecuter.java
package won.matcher.solr.query; import org.apache.solr.client.solrj.SolrClient; import org.apache.solr.client.solrj.SolrQuery; import org.apache.solr.client.solrj.SolrServerException; import org.apache.solr.client.solrj.impl.HttpSolrClient; import org.apache.solr.client.solrj.response.QueryResponse; import org.apache....
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/SolrMatcherQueryExecutor.java
package won.matcher.solr.query; import java.io.IOException; import org.apache.solr.client.solrj.SolrServerException; import org.apache.solr.common.SolrDocumentList; import org.apache.solr.common.params.SolrParams; /** * Created by hfriedrich on 12.08.2016. */ public interface SolrMatcherQueryExecutor { SolrDoc...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/TestMatcherQueryExecutor.java
package won.matcher.solr.query; import javax.annotation.PostConstruct; import org.apache.solr.client.solrj.impl.HttpSolrClient; import org.springframework.stereotype.Component; /** * Created by hfriedrich on 12.08.2016. */ @Component public class TestMatcherQueryExecutor extends DefaultMatcherQueryExecuter { @...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/AtomDatasetQueryFactory.java
package won.matcher.solr.query.factory; import org.apache.jena.query.Dataset; /** * Created by hfriedrich on 01.08.2016. */ public abstract class AtomDatasetQueryFactory extends SolrQueryFactory { protected Dataset atomDataset; public AtomDatasetQueryFactory(Dataset atom) { this.atomDataset = atom;...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/AtomStateQueryFactory.java
package won.matcher.solr.query.factory; import org.apache.jena.query.Dataset; import won.protocol.vocabulary.WON; /** * Created by hfriedrich on 01.08.2016. */ public class AtomStateQueryFactory extends AtomDatasetQueryFactory { private static final String ATOM_STATE_SOLR_FIELD = "_graph.http___purl.org_webofn...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/BasicAtomQueryFactory.java
package won.matcher.solr.query.factory; import org.apache.jena.query.Dataset; import org.apache.jena.rdf.model.Resource; import won.matcher.solr.utils.MatcherAtomContentPropertyType; import won.protocol.model.Coordinate; import won.protocol.util.DefaultAtomModelWrapper; import java.util.ArrayList; import java.util.Ha...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/BooleanQueryFactory.java
package won.matcher.solr.query.factory; /** * Created by hfriedrich on 01.08.2016. */ public class BooleanQueryFactory extends SolrQueryFactory { private SolrQueryFactory[] factories; private BooleanOperator operator; public enum BooleanOperator { AND, OR, NOT } public BooleanQueryFacto...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/CreationDateQueryFactory.java
package won.matcher.solr.query.factory; import java.time.ZonedDateTime; import java.time.temporal.ChronoUnit; import java.time.temporal.TemporalUnit; import org.apache.jena.query.Dataset; import won.protocol.util.AtomModelWrapper; /** * Created by hfriedrich on 18.08.2016. */ public class CreationDateQueryFactory...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/DateIntervalQueryFactory.java
package won.matcher.solr.query.factory; import java.time.ZonedDateTime; import java.time.format.DateTimeFormatter; /** * Created by hfriedrich on 12.08.2016. */ public class DateIntervalQueryFactory extends MatchFieldQueryFactory { public DateIntervalQueryFactory(final String fieldName, final String value) { ...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/DefaultAtomQueryFactory.java
package won.matcher.solr.query.factory; import java.util.Collection; import org.apache.jena.query.Dataset; import org.apache.jena.rdf.model.Resource; import won.matcher.solr.utils.MatcherAtomContentPropertyType; /** * Created by hfriedrich on 03.08.2016. */ public class DefaultAtomQueryFactory extends BasicAtomQu...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/ExactMatchFieldQueryFactory.java
package won.matcher.solr.query.factory; /** * Created by hfriedrich on 01.08.2016. */ public class ExactMatchFieldQueryFactory extends SolrQueryFactory { protected String fieldName; protected String value; public ExactMatchFieldQueryFactory(String fieldName, String value) { this.value = value; ...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/GeoDistBoostQueryFactory.java
package won.matcher.solr.query.factory; /** * Created by hfriedrich on 22.08.2016. */ public class GeoDistBoostQueryFactory extends SolrQueryFactory { private float latitude; private float longitude; private String solrLocationField; public GeoDistBoostQueryFactory(String solrLocationField, float la...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/GeoDistFilterQueryFactory.java
package won.matcher.solr.query.factory; /** * Created by hfriedrich on 22.08.2016. */ public class GeoDistFilterQueryFactory extends SolrQueryFactory { private float latitude; private float longitude; private String solrLocationField; private double distance; public GeoDistFilterQueryFactory(Str...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/HasFlagQueryFactory.java
package won.matcher.solr.query.factory; import java.util.Collections; import java.util.HashMap; import java.util.Map; /** * Created by hfriedrich on 29.08.2017. */ public class HasFlagQueryFactory extends SolrQueryFactory { public enum FLAGS { WHATS_AROUND, WHATS_NEW, NO_HINT_FOR_COUNTERPART, NO_HINT_FO...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/MatchFieldQueryFactory.java
package won.matcher.solr.query.factory; /** * Created by hfriedrich on 01.08.2016. */ public class MatchFieldQueryFactory extends SolrQueryFactory { protected String fieldName; protected String value; public MatchFieldQueryFactory() { fieldName = null; value = null; } public Mat...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/MatchingContextQueryFactory.java
package won.matcher.solr.query.factory; import java.util.Collection; import java.util.Iterator; import java.util.LinkedList; import java.util.List; public class MatchingContextQueryFactory extends SolrQueryFactory { public static final String MATCHING_CONTEXT_SOLR_FIELD = "_graph.http___purl.org_webofneeds_model_...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/MultiplicativeBoostQueryFactory.java
package won.matcher.solr.query.factory; /** * Created by hfriedrich on 22.08.2016. */ public class MultiplicativeBoostQueryFactory extends SolrQueryFactory { private String boostQuery; public MultiplicativeBoostQueryFactory(String boostQuery) { this.boostQuery = boostQuery; } @Override ...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/SolrParamsFactory.java
package won.matcher.solr.query.factory; import org.apache.solr.common.params.SolrParams; /** * Created by hfriedrich on 19.08.2016. */ public interface SolrParamsFactory { public SolrParams createParams(); }
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/SolrQueryFactory.java
package won.matcher.solr.query.factory; /** * Created by hfriedrich on 28.07.2016. */ public abstract class SolrQueryFactory { protected double boost = 1.0; public void setBoost(double boost) { this.boost = boost; } public String toString() { return createQuery(); } abstrac...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/WhatsAroundQueryFactory.java
package won.matcher.solr.query.factory; import org.apache.jena.query.Dataset; import org.apache.jena.rdf.model.Resource; import won.matcher.solr.utils.MatcherAtomContentPropertyType; /** * Created by hfriedrich on 29.08.2017. */ public class WhatsAroundQueryFactory extends BasicAtomQueryFactory { private stati...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/query/factory/WhatsNewQueryFactory.java
package won.matcher.solr.query.factory; import org.apache.jena.query.Dataset; /** * Created by hfriedrich on 29.08.2017. */ public class WhatsNewQueryFactory extends BasicAtomQueryFactory { private static final String ATOM_TYPE_DUMMY_FIELD = "_graph._type"; private static final String ATOM_TYPE_DUMMY_FIELD_...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/spring/MatcherSolrAppConfiguration.java
package won.matcher.solr.spring; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationContext; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configura...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/utils/Katomle.java
package won.matcher.solr.utils; import java.util.LinkedList; import java.util.List; import org.apache.commons.math3.stat.descriptive.DescriptiveStatistics; /** * Created by hfriedrich on 19.07.2016. Detect knee points in a curve using the * "Katomle" algorithm as described in the paper "Finding a" Katomle" in a *...
0
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr
java-sources/at/researchstudio/sat/won-matcher-solr/0.9/won/matcher/solr/utils/MatcherAtomContentPropertyType.java
package won.matcher.solr.utils; /** * Created by hfriedrich on 16.03.2017. */ public enum MatcherAtomContentPropertyType { IS, SEEKS, SEEKS_SEEKS, ALL }
0
java-sources/at/researchstudio/sat/won-matcher-sparql/0.9/won/matcher
java-sources/at/researchstudio/sat/won-matcher-sparql/0.9/won/matcher/sparql/AkkaSparqlMain.java
package won.matcher.sparql; import java.io.IOException; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import akka.actor.ActorRef; import akka.actor.ActorSystem; import won.matcher.service.common.spring.SpringExtension; import won.matcher.sparql.actor.MatcherPubSubActor; import won...
0
java-sources/at/researchstudio/sat/won-matcher-sparql/0.9/won/matcher/sparql
java-sources/at/researchstudio/sat/won-matcher-sparql/0.9/won/matcher/sparql/actor/MatcherPubSubActor.java
package won.matcher.sparql.actor; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.util.Optional; import java.util.Properties; import java.util.concurrent.TimeUnit; import org.springframework.beans.factory.annotation.Autowir...
0
java-sources/at/researchstudio/sat/won-matcher-sparql/0.9/won/matcher/sparql
java-sources/at/researchstudio/sat/won-matcher-sparql/0.9/won/matcher/sparql/actor/SparqlMatcherActor.java
package won.matcher.sparql.actor; import java.io.IOException; import java.net.URI; import java.util.ArrayList; import java.util.Arrays; import java.util.Calendar; import java.util.Collection; import java.util.Collections; import java.util.LinkedList; import java.util.List; import java.util.Optional; import java.util.S...
0
java-sources/at/researchstudio/sat/won-matcher-sparql/0.9/won/matcher/sparql
java-sources/at/researchstudio/sat/won-matcher-sparql/0.9/won/matcher/sparql/actor/SparqlMatcherUtils.java
package won.matcher.sparql.actor; import java.util.Arrays; import java.util.Optional; import java.util.Random; import java.util.function.Function; import java.util.stream.IntStream; import org.apache.jena.graph.Triple; import org.apache.jena.rdf.model.impl.ResourceImpl; import org.apache.jena.sparql.algebra.Op; impor...
0
java-sources/at/researchstudio/sat/won-matcher-sparql/0.9/won/matcher/sparql
java-sources/at/researchstudio/sat/won-matcher-sparql/0.9/won/matcher/sparql/config/SparqlMatcherConfig.java
package won.matcher.sparql.config; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.ImportResource; import org.springframework.context.annotation.PropertySource; /** * Created by hfriedrich on 15.09.2...
0
java-sources/at/researchstudio/sat/won-matcher-sparql/0.9/won/matcher/sparql
java-sources/at/researchstudio/sat/won-matcher-sparql/0.9/won/matcher/sparql/spring/MatcherSparqlAppConfiguration.java
package won.matcher.sparql.spring; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationContext; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configu...
0
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils/preprocessing/OpenNlpTokenExtraction.java
package won.matcher.utils.preprocessing; import java.io.IOException; import java.io.InputStream; import java.util.Arrays; import java.util.LinkedList; import java.util.List; import java.util.regex.Pattern; import opennlp.tools.postag.POSModel; import opennlp.tools.postag.POSTaggerME; import opennlp.tools.tokenize.Sim...
0
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils/tensor/TensorEntry.java
package won.matcher.utils.tensor; /** * Represents an entry in the tensor structure build by * {@link TensorMatchingData} in a specified slice, for a specified atom the * specified (attribute) value can be set. However instead of an attribute value * also an atom can be specified e.g. to connect two atoms in the c...
0
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils/tensor/TensorEntryAllGenerator.java
package won.matcher.utils.tensor; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.Collection; import java.util.LinkedList; import java.util.stream.Collectors; import org.springframework.core.io.Resource; import org.springframewo...
0
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils/tensor/TensorEntryGenerator.java
package won.matcher.utils.tensor; import java.io.IOException; import java.util.Collection; /** * This interface defines the structure of classes that want to act as * {@link TensorEntry} generators. These generators can be used to create tensor * entries in a generalized and structured way. Created by hfriedrich o...
0
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils/tensor/TensorEntrySparqlGenerator.java
package won.matcher.utils.tensor; import java.util.Arrays; import java.util.Collection; import java.util.HashMap; import java.util.LinkedList; import java.util.Map; import org.apache.jena.query.ParameterizedSparqlString; import org.apache.jena.query.Query; import org.apache.jena.query.QueryExecution; import org.apach...
0
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils/tensor/TensorEntryTokenizer.java
package won.matcher.utils.tensor; import java.io.IOException; import java.util.Collection; import java.util.LinkedList; import won.matcher.utils.preprocessing.OpenNlpTokenExtraction; /** * Used for tokenization of {@link TensorEntry} objects. Created by hfriedrich * on 21.04.2017. */ public class TensorEntryToken...
0
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils/tensor/TensorMatchingData.java
package won.matcher.utils.tensor; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStreamWriter; import java.lang.invoke.MethodHandles; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import org.slf4j.Logger; import org.slf4j.LoggerFa...
0
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils
java-sources/at/researchstudio/sat/won-matcher-utils/0.9/won/matcher/utils/tensor/ThirdOrderSparseTensor.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-node/0.9/won/node
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/AtomProtocolCamelConfiguratorImpl.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-node/0.9/won/node
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/AtomProtocolCommunicationServiceImpl.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-node/0.9/won/node
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/WonNodeConstants.java
package won.node.camel; public class WonNodeConstants { public static final String FROM_OWNER_QUEUENAME = "OwnerProtocol.in"; public static final String FROM_NODE_QUEUENAME = "AtomProtocol.in"; public static final String FROM_MATCHER_QUEUENAME = "MatcherProtocol.in"; public static final String TO_OWNER...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/predicate/IsReactionAllowedPredicate.java
package won.node.camel.predicate; import org.apache.camel.Exchange; import org.apache.camel.Predicate; import won.protocol.message.processor.camel.WonCamelConstants; public class IsReactionAllowedPredicate implements Predicate { @Override public boolean matches(Exchange exchange) { Boolean suppress =...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/predicate/IsResponseMessagePredicate.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-node/0.9/won/node/camel
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/predicate/ShouldCallSocketImplForMessagePredicate.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-node/0.9/won/node/camel
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/AbstractCamelProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/annotation/DefaultSocketMessageProcessor.java
package won.node.camel.processor.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Identifies the annotated class as a message processor used to implement the * specified socket behavior ...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/annotation/FixedMessageProcessor.java
package won.node.camel.processor.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Identifies the annotated class as a message processor used to implement the * obligatory behavior for th...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/annotation/FixedMessageReactionProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/annotation/SocketMessageProcessor.java
package won.node.camel.processor.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Identifies the annotated class as a message processor used to implement the * specified socket behavior ...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/ActivateAtomMessageProcessor.java
package won.node.camel.processor.fixed; import java.lang.invoke.MethodHandles; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; import won.node.camel.processor.AbstractCamelProcessor; import wo...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/ActivateAtomMessageReactionProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/AtomHintMessageProcessor.java
package won.node.camel.processor.fixed; import java.lang.invoke.MethodHandles; import java.net.URI; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereoty...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/AtomMessageFromSystemProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/ChangeNotificationMessageFromNodeProcessor.java
package won.node.camel.processor.fixed; import java.lang.invoke.MethodHandles; import javax.persistence.EntityManager; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org....
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/CloseMessageFromNodeProcessor.java
package won.node.camel.processor.fixed; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.springframework.stereotype.Component; import won.node.camel.processor.AbstractCamelProcessor; import won.node.camel.processor.annotation.FixedMessageProcessor; import won.protocol.message.WonMessage; ...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/CloseMessageFromOwnerProcessor.java
package won.node.camel.processor.fixed; import static won.node.camel.service.WonCamelHelper.*; import java.lang.invoke.MethodHandles; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; import wo...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/CloseMessageFromSystemProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/ConnectMessageFromNodeProcessor.java
package won.node.camel.processor.fixed; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.springframework.stereotype.Component; import won.node.camel.processor.AbstractCamelProcessor; import won.node.camel.processor.annotation.FixedMessageProcessor; import won.node.camel.service.WonCamelHe...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/ConnectMessageFromNodeReactionProcessor.java
package won.node.camel.processor.fixed; import java.net.URI; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; import won.node.camel.processor.AbstractCamelProcessor; import won.node.camel.proce...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/ConnectMessageFromOwnerProcessor.java
package won.node.camel.processor.fixed; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.springframework.stereotype.Component; import won.node.camel.processor.AbstractCamelProcessor; import won.node.camel.processor.annotation.FixedMessageProcessor; import won.node.camel.service.WonCamelHe...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/ConnectionStateChangeReactionProcessor.java
package won.node.camel.processor.fixed; import static won.node.camel.service.WonCamelHelper.*; import java.util.Optional; import org.apache.camel.Exchange; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; import won.node.camel.processor.AbstractCamelProcessor...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/CreateAtomMessageProcessor.java
package won.node.camel.processor.fixed; import static won.node.camel.service.WonCamelHelper.*; import java.lang.invoke.MethodHandles; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Service; import won....
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/CreateAtomMessageReactionProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/DeactivateAtomMessageFromOwnerReactionProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/DeactivateAtomMessageFromSystemReactionProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/DeactivateAtomMessageProcessor.java
package won.node.camel.processor.fixed; import org.apache.camel.Exchange; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; import won.node.camel.processor.AbstractCamelProcessor; import won.node.camel.processor.annotation.FixedMessageProcessor; import won.proto...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/DeactivateMessageFromSystemProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/DeleteAtomMessageFromOwnerProcessor.java
package won.node.camel.processor.fixed; import java.util.Optional; import javax.persistence.EntityManager; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import won.node.camel.processo...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/DeleteAtomMessageFromOwnerReactionProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/FailureResponseFromExternalProcessor.java
package won.node.camel.processor.fixed; import static won.node.camel.service.WonCamelHelper.*; import java.lang.invoke.MethodHandles; import org.apache.camel.Exchange; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; import won.node.camel.processor.AbstractCa...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/FailureResponseFromSystemToNodeProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/HintFeedbackMessageFromOwnerProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/ReplaceAtomMessageFromOwnerReactionProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/ReplaceAtomMessageProcessor.java
package won.node.camel.processor.fixed; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.springframework.stereotype.Service; import won.node.camel.processor.AbstractCamelProcessor; import won.node.camel.processor.annotation.FixedMessageProcessor; import won.protocol.message.WonMessage; im...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/SendChangeNotificationMessageFromSystemProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/SendMessageFromNodeProcessor.java
package won.node.camel.processor.fixed; import java.lang.invoke.MethodHandles; import java.net.URI; import javax.persistence.EntityManager; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.A...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/SendMessageFromNodeReactionProcessor.java
package won.node.camel.processor.fixed; import java.lang.invoke.MethodHandles; import java.net.URI; import java.util.List; import java.util.Objects; import java.util.Optional; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springf...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/SendMessageFromOwnerProcessor.java
package won.node.camel.processor.fixed; import java.net.URI; import javax.persistence.EntityManager; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import won.node.camel.processor.Abst...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/SendMessageFromSystemProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/SocketHintMessageProcessor.java
package won.node.camel.processor.fixed; import static won.node.camel.service.WonCamelHelper.*; import java.lang.invoke.MethodHandles; import java.net.URI; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.facto...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/SuccessResponseFromExternalProcessor.java
package won.node.camel.processor.fixed; import java.util.Objects; import org.apache.camel.Exchange; import org.springframework.stereotype.Component; import won.node.camel.processor.AbstractCamelProcessor; import won.node.camel.processor.annotation.FixedMessageProcessor; import won.protocol.message.WonMessage; import...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/fixed/SuccessResponseFromSystemToNodeProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/general/ConnectionStateChangeBuilder.java
package won.node.camel.processor.general; import java.util.Objects; import java.util.Optional; import won.node.service.nodebehaviour.ConnectionStateChange; import won.protocol.model.ConnectionState; /** * Simple helper class that creates a ConnectionStateChange object in two steps: * First, set the old state (or n...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/general/ConnectionStateChangeBuilderCamelProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/general/DeleteAtomMessageProcessor.java
package won.node.camel.processor.general; import java.net.URI; import java.util.Collection; import org.apache.camel.Exchange; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import won.node.camel.processor.AbstractCamelProcessor; import won.protocol.exception.WonMessageProcessingException; import won.protoc...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/general/DirectionAddingWonMessageProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/general/FailResponder.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/general/LockMessageParentWonMessageProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/general/MessagePersistingProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/general/MessageReferencer.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/general/MessageTypeSlipComputer.java
package won.node.camel.processor.general; import java.lang.annotation.Annotation; import java.lang.reflect.InvocationTargetException; import java.net.URI; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import org.apache.camel.Exchange; import org.apache.camel.Expression; import org.apache....
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/general/OutboundMessageCreatingProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/general/ParentFinder.java
package won.node.camel.processor.general; import java.net.URI; import java.util.Optional; import org.apache.camel.Exchange; import org.apache.camel.Processor; import org.springframework.beans.factory.annotation.Autowired; import won.node.camel.service.WonCamelHelper; import won.node.service.persistence.MessageServic...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/general/ResponsePersistingProcessor.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-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/general/ResponseRoutingInfoExtractor.java
package won.node.camel.processor.general; import static won.node.camel.service.WonCamelHelper.*; import java.net.URI; import java.util.Objects; import org.apache.camel.Exchange; import org.apache.camel.Processor; import org.springframework.beans.factory.annotation.Autowired; import won.protocol.message.WonMessage; ...
0
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor
java-sources/at/researchstudio/sat/won-node/0.9/won/node/camel/processor/general/RoutingInfoExtractor.java
package won.node.camel.processor.general; import static won.node.camel.service.WonCamelHelper.*; import java.net.URI; import java.util.Optional; import org.apache.camel.Exchange; import org.apache.camel.Processor; import org.springframework.beans.factory.annotation.Autowired; import won.protocol.message.WonMessage;...