Skip to content

Commit

Permalink
Simplifying logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
computate committed Sep 29, 2022
1 parent 7f2e7ac commit 005f02e
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 8 deletions.
9 changes: 9 additions & 0 deletions local/defaults.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
ENABLE_STATIC: false
ENABLE_ANSIBLE: false
ENABLE_LAUNCH: false
ENABLE_CONFIG_TEMPLATE: false
SITE_NAME: computate-search
SITE_SERVICES:
- SITE_NAME: "computate-search"
SITE_SRC: "/home/ctate/.local/src/computate-search"
37 changes: 29 additions & 8 deletions src/gen/java/org/computate/search/request/SearchRequestGen.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import org.computate.search.serialize.ComputateLocalDateSerializer;
import org.computate.search.serialize.ComputateLocalDateDeserializer;
import org.computate.search.serialize.ComputateZonedDateTimeSerializer;
import org.computate.search.serialize.ComputateZonedDateTimeDeserializer;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
Expand All @@ -46,14 +47,34 @@
import org.computate.search.wrap.Wrap;

/**
* <br><a href="http://localhost:8983/solr/computate/select?q=*:*&fq=partEstClasse_indexed_boolean:true&fq=classeNomCanonique_enUS_indexed_string:org.computate.search.request.SearchRequest">Find the class SearchRequest in Solr. </a>
* <br><br>Delete the class SearchRequest in Solr.
* <br><pre>curl 'http://localhost:8983/solr/computate/update?commitWithin=1000&overwrite=true&wt=json' -X POST -H 'Content-type: text/xml' --data-raw '&lt;add&gt;&lt;delete&gt;&lt;query&gt;classeNomCanonique_enUS_indexed_string:org.computate.search.request.SearchRequest&lt;/query&gt;&lt;/delete&gt;&lt;/add&gt;'</pre>
* <br>Delete the package org.computate.search.request in Solr.
* <br><pre>curl 'http://localhost:8983/solr/computate/update?commitWithin=1000&overwrite=true&wt=json' -X POST -H 'Content-type: text/xml' --data-raw '&lt;add&gt;&lt;delete&gt;&lt;query&gt;classeNomEnsemble_enUS_indexed_string:org.computate.search.request&lt;/query&gt;&lt;/delete&gt;&lt;/add&gt;'</pre>
* <br>Delete the project computate-search in Solr.
* <br><pre>curl 'http://localhost:8983/solr/computate/update?commitWithin=1000&overwrite=true&wt=json' -X POST -H 'Content-type: text/xml' --data-raw '&lt;add&gt;&lt;delete&gt;&lt;query&gt;siteNom_indexed_string:computate\-search&lt;/query&gt;&lt;/delete&gt;&lt;/add&gt;'</pre>
* <br>
* <h1>Suggestions that can generate more code for you: </h1>
* <ol>
* <li>You can add a class comment <b>"Api: true"</b> if you wish to GET, POST, PATCH or PUT these SearchRequest objects in a RESTful API.
* </li>
* </ol>
* <h1>About the SearchRequest class and it's generated class SearchRequestGen&lt;Object&gt;: </h1>
* <p>
* This Java class extends a generated Java class built by the <a href="https://github.com/computate-org/computate">https://github.com/computate-org/computate</a> project.
* Whenever this Java class is modified or touched, the watch service installed as described in the README, indexes all the information about this Java class in a local Apache Solr Search Engine.
* If you are running the service, you can see the indexed data about this Java Class here:
* </p>
* <p><a href="http://localhost:8983/solr/computate/select?q=*:*&fq=partEstClasse_indexed_boolean:true&fq=classeNomCanonique_enUS_indexed_string:org.computate.search.request.SearchRequest">Find the class SearchRequest in Solr. </a></p>
* <p>
* The extended class ending with "Gen" did not exist at first, but was automatically created by the same watch service based on the data retrieved from the local Apache Server search engine.
* The extended class contains many generated fields, getters, setters, initialization code, and helper methods to help build a website and API fast, reactive, and scalable.
* </p>
* <p>
* Delete the class SearchRequest in Solr:
* curl 'http://localhost:8983/solr/computate/update?commitWithin=1000&overwrite=true&wt=json' -X POST -H 'Content-type: text/xml' --data-raw '&lt;add&gt;&lt;delete&gt;&lt;query&gt;classeNomCanonique_enUS_indexed_string:org.computate.search.request.SearchRequest&lt;/query&gt;&lt;/delete&gt;&lt;/add&gt;'
* </p>
* <p>
* Delete the package org.computate.search.request in Solr:
* curl 'http://localhost:8983/solr/computate/update?commitWithin=1000&overwrite=true&wt=json' -X POST -H 'Content-type: text/xml' --data-raw '&lt;add&gt;&lt;delete&gt;&lt;query&gt;classeNomEnsemble_enUS_indexed_string:org.computate.search.request&lt;/query&gt;&lt;/delete&gt;&lt;/add&gt;'
* </p>
* <p>
* Delete the project computate-search in Solr:
* curl 'http://localhost:8983/solr/computate/update?commitWithin=1000&overwrite=true&wt=json' -X POST -H 'Content-type: text/xml' --data-raw '&lt;add&gt;&lt;delete&gt;&lt;query&gt;siteNom_indexed_string:computate\-search&lt;/query&gt;&lt;/delete&gt;&lt;/add&gt;'
* </p>
**/
public abstract class SearchRequestGen<DEV> extends Object {

Expand Down

0 comments on commit 005f02e

Please sign in to comment.