congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
ProtoSchemaBuilder.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.infinispan.protostream.annotations.ProtoSchemaBuilder
constructor

Best Java code snippets using org.infinispan.protostream.annotations.ProtoSchemaBuilder.<init> (Showing top 8 results out of 315)

origin: org.infinispan.protostream/protostream

String fileName = file == null ? DEFAULT_GENERATED_SCHEMA_NAME : file.getName();
ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder()
   .fileName(fileName)
   .packageName(packageName);
origin: org.uberfire/uberfire-metadata-backend-infinispan

private void addProtobufClass(SerializationContext serializationContext,
               String protoName,
               Class<?> clazz) {
  try {
    ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder();
    protoSchemaBuilder.fileName(protoName);
    protoSchemaBuilder.addClass(clazz);
    String schemaString = protoSchemaBuilder.build(serializationContext);
    this.getProtobufCache().put(protoName,
                  schemaString);
  } catch (IOException e) {
    throw new InfinispanException("Can't add protobuf class <" + protoName + "> to cache",
                   e);
  }
}
origin: kiegroup/appformer

private void addProtobufClass(SerializationContext serializationContext,
               String protoName,
               Class<?> clazz) {
  try {
    ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder();
    protoSchemaBuilder.fileName(protoName);
    protoSchemaBuilder.addClass(clazz);
    String schemaString = protoSchemaBuilder.build(serializationContext);
    this.getProtobufCache().put(protoName,
                  schemaString);
  } catch (IOException e) {
    throw new InfinispanException("Can't add protobuf class <" + protoName + "> to cache",
                   e);
  }
}
origin: org.infinispan/infinispan-compatibility-mode-it

@Override
protected RemoteCacheManager createRemoteCacheManager() throws IOException {
 RemoteCacheManager remoteCacheManager = new RemoteCacheManager(new org.infinispan.client.hotrod.configuration.ConfigurationBuilder()
    .addServer().host("localhost").port(hotRodServer.getPort())
    .marshaller(new ProtoStreamMarshaller())
    .build());
 //initialize client-side serialization context
 SerializationContext serializationContext = ProtoStreamMarshaller.getSerializationContext(remoteCacheManager);
 ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder();
 String protoFile = protoSchemaBuilder.fileName("crypto.proto")
    .addClass(CryptoCurrency.class)
    .build(serializationContext);
 //initialize server-side serialization context via rest endpoint
 String metadataCacheEndpoint = String.format("http://localhost:%s/rest/%s", restServer.getPort(), PROTOBUF_METADATA_CACHE_NAME);
 EntityEnclosingMethod put = new PutMethod(metadataCacheEndpoint + "/crypto.proto");
 put.setRequestEntity(new StringRequestEntity(protoFile, "text/plain", "UTF-8"));
 restClient.executeMethod(put);
 assertEquals(put.getStatusCode(), HttpStatus.SC_OK);
 return remoteCacheManager;
}
origin: org.infinispan.server/infinispan-server-testsuite

@Before
public void before() throws IOException {
  ConfigurationBuilder clientBuilder = new ConfigurationBuilder();
  clientBuilder.addServer()
      .host(server.getHotrodEndpoint().getInetAddress().getHostName())
      .port(server.getHotrodEndpoint().getPort())
      .marshaller(new ProtoStreamMarshaller());
  remoteCacheManager = new RemoteCacheManager(clientBuilder.build());
  SerializationContext serializationContext = ProtoStreamMarshaller.getSerializationContext(remoteCacheManager);
  ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder();
  String protoSchema = protoSchemaBuilder.fileName("transaction.proto")
      .addClass(Transaction.class)
      .build(serializationContext);
  RemoteCache<String, String> metadataCache = remoteCacheManager.getCache(ProtobufMetadataManagerConstants.PROTOBUF_METADATA_CACHE_NAME);
  metadataCache.put("transaction.proto", protoSchema);
}
origin: org.infinispan.server/infinispan-server-testsuite

ctx.registerMarshaller(new TransactionMarshaller());
ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder();
String testSchemaFile = protoSchemaBuilder.fileName("test.proto")
   .addClass(Note.class)
origin: org.infinispan.server/infinispan-server-testsuite

@Before
public void setUp() throws Exception {
 rcmFactory = new RemoteCacheManagerFactory();
 ConfigurationBuilder clientBuilder = new ConfigurationBuilder();
 clientBuilder.addServer()
    .host(server.getHotrodEndpoint().getInetAddress().getHostName())
    .port(server.getHotrodEndpoint().getPort())
    .marshaller(new ProtoStreamMarshaller());
 remoteCacheManager = rcmFactory.createManager(clientBuilder);
 remoteCache = remoteCacheManager.getCache(cacheName);
 //initialize client-side serialization context
 SerializationContext serializationContext = ProtoStreamMarshaller.getSerializationContext(remoteCacheManager);
 ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder();
 String protoFile = protoSchemaBuilder.fileName("test.proto")
    .addClass(AnnotatedUser.class)
    .build(serializationContext);
 //initialize server-side serialization context
 RemoteCache<String, String> metadataCache = remoteCacheManager.getCache(ProtobufMetadataManagerConstants.PROTOBUF_METADATA_CACHE_NAME);
 metadataCache.put("test.proto", protoFile);
 assertFalse(metadataCache.containsKey(ProtobufMetadataManagerConstants.ERRORS_KEY_SUFFIX));
}
origin: org.infinispan/infinispan-compatibility-mode-it

@Override
protected RemoteCacheManager createRemoteCacheManager() throws IOException {
 RemoteCacheManager remoteCacheManager = new RemoteCacheManager(new org.infinispan.client.hotrod.configuration.ConfigurationBuilder()
    .addServer().host("localhost").port(hotRodServer.getPort())
    .marshaller(new ProtoStreamMarshaller())
    .build());
 //initialize client-side serialization context
 SerializationContext serializationContext = ProtoStreamMarshaller.getSerializationContext(remoteCacheManager);
 ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder();
 String protoFile = protoSchemaBuilder.fileName("crypto.proto")
    .addClass(CryptoCurrency.class)
    .build(serializationContext);
 //initialize server-side serialization context
 RemoteCache<String, String> metadataCache = remoteCacheManager.getCache(PROTOBUF_METADATA_CACHE_NAME);
 metadataCache.put("crypto.proto", protoFile);
 return remoteCacheManager;
}
org.infinispan.protostream.annotationsProtoSchemaBuilder<init>

Popular methods of ProtoSchemaBuilder

  • addClass
    Add a @ProtoXyz annotated class to be analyzed. Proto schema and marshaller will be generated for it
  • build
    Builds the Protocol Buffers schema file defining the types and generates marshaller implementations
  • fileName
    Set the name of the Protobuf schema file to generate. This is mandatory. The resulting file will be
  • packageName
    Set the name of the Protobuf package to generate. This is optional.
  • parseCommandLine

Popular in Java

  • Start an intent from android
  • requestLocationUpdates (LocationManager)
  • setRequestProperty (URLConnection)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now