Skip to content

Commit 15cca41

Browse files
POM Upgrade
1 parent 0f7e7cd commit 15cca41

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

Zero.Plugins.Common.Security/src/main/java/io/zerows/plugins/common/security/LeeBasic.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public AuthenticationProvider provider(final Vertx vertx, final Aegis config) {
4040
@SuppressWarnings("unchecked")
4141
public AuthenticationProvider providerInternal(final Vertx vertx, final Aegis config) {
4242
/*
43-
* Here provider could build ChainAuth instead of handler chain
43+
* Here provider could web ChainAuth instead of handler chain
4444
* The provider type is: io.vertx.ext.auth.ChainAuth
4545
*/
4646
final AdapterProvider adapter = AdapterProvider.common();

Zero.Plugins.Common.Security/src/main/java/io/zerows/plugins/common/security/authorization/AuthorizationResource.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ static JsonObject parameters(final RoutingContext context) {
6464
metadata.put(KName.URI_REQUEST, request.path());
6565
metadata.put(KName.METHOD, request.method().name());
6666
/*
67-
* view parameters for ScRequest to build cache key
67+
* view parameters for ScRequest to web cache key
6868
* It's important
6969
*/
7070
final String literal = request.getParam(KName.VIEW);

Zero.Plugins.Office.Excel/src/main/java/io/zerows/plugins/office/excel/ExcelClientImpl.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public ExcelClient init(final JsonObject config) {
6060
* 2.1) The input contains two categories:
6161
* -- 1. InputStream for byte array input, in this mode, you must provide `isXlsx` parameter
6262
* -- 2. filename of input, the format should be distinguish by file extension `.xls` for 2003, `.xlsx` for 2007
63-
* 2.2) The Shape contains `Dynamic` importing in Ox channel or other build `Shape` object, it contains type definition
63+
* 2.2) The Shape contains `Dynamic` importing in Ox channel or other web `Shape` object, it contains type definition
6464
* 2.2) async contains ( Sync, Callback, Future ) three mode
6565
*/
6666
@Override
@@ -145,7 +145,7 @@ public ExcelClient ingest(final InputStream in, final boolean isXlsx, final HMet
145145
* 2.1) The input contains two categories:
146146
* -- 1. InputStream for byte array input, in this mode, you must provide `isXlsx` parameter
147147
* -- 2. filename of input, the format should be distinguish by file extension `.xls` for 2003, `.xlsx` for 2007
148-
* 2.2) The Shape contains `Dynamic` importing in Ox channel or other build `Shape` object, it contains type definition
148+
* 2.2) The Shape contains `Dynamic` importing in Ox channel or other web `Shape` object, it contains type definition
149149
* 2.2) async contains ( Sync, Callback, Future ) three mode
150150
*/
151151
@Override

Zero.Plugins.Office.Excel/src/main/java/io/zerows/plugins/office/excel/ExcelHelper.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Future<JsonArray> extract(final ExTable table) {
9797
}
9898

9999
/*
100-
* Read file from path to build Excel Workbook object.
100+
* Read file from path to web Excel Workbook object.
101101
* If this function get null dot file or file object, zero system
102102
* will throw exception out.
103103
*/

Zero.Plugins.Office.Excel/src/main/java/io/zerows/plugins/office/excel/SheetAnalyzer.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/*
2222
* Wrapper Sheet object to store data, this object could help to
23-
* build ExTable here.
23+
* web ExTable here.
2424
*/
2525
public class SheetAnalyzer implements Serializable {
2626
private static final OLog LOGGER = Ut.Log.plugin(SheetAnalyzer.class);
@@ -108,13 +108,13 @@ private ConcurrentMap<Integer, Integer> getRange(final List<Cell> tableCell) {
108108
}
109109

110110
/*
111-
* Scan sheet from row to cell to build each table.
111+
* Scan sheet from row to cell to web each table.
112112
*/
113113
private ExTable analyzed(final Row row, final Cell cell, final Integer limitation, final HMetaAtom metaAtom) {
114114
/* Build ExTable */
115115
final ExTable table = this.create(row, cell);
116116

117-
/* ExIn build */
117+
/* ExIn web */
118118
final ExIn in;
119119
if (Objects.nonNull(metaAtom) && metaAtom.isComplex()) {
120120
in = new ComplexIn(this.sheet).bind(this.evaluator);

Zero.Plugins.Office.Excel/src/main/java/io/zerows/plugins/office/excel/uca/initialize/ExcelEnvConnect.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ private MDConfiguration prepareSelf(final JsonObject config) {
7474
final OCacheConfiguration extension = OCacheConfiguration.of();
7575
MDConfiguration configuration = extension.valueGet(configId);
7676
if (Objects.isNull(configuration)) {
77-
this.logger().debug("[ Έξοδος ] Could not find configuration: id = {}, the system will build new one", configId);
77+
this.logger().debug("[ Έξοδος ] Could not find configuration: id = {}, the system will web new one", configId);
7878
configuration = new MDConfiguration(configId);
7979
}
8080
final EquipAt component = EquipAt.of(configuration.id());

Zero.Plugins.Office.Excel/src/main/java/io/zerows/plugins/office/excel/uca/ranger/ComplexIn.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public ExTable applyData(final ExTable table, final ExBound dataRange, final Cel
9696
*/
9797
final Row row = rowList.get(VValue.IDX);
9898
/*
99-
* In first iterator for first row, the system should build `complexMap`
99+
* In first iterator for first row, the system should web `complexMap`
100100
*/
101101
ExFn.itRow(row, bound, this.consumeCellFn(record, rowMap, table, metaAtom));
102102
this.prepareForComplex(complexMap, rowMap);

Zero.Plugins.Office.Excel/src/main/java/io/zerows/plugins/office/excel/uca/ranger/PureIn.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public ExTable applyData(final ExTable table, final ExBound dataRange, final Cel
4343
final ExBound bound = new ColBound(cell.getColumnIndex(),
4444
cell.getColumnIndex() + table.size());
4545

46-
/* New record build */
46+
/* New record web */
4747
final ExRecord record = new ExRecord(table);
4848
ExFn.itRow(dataRow, bound, (dataCell, cellIndex) -> {
4949
/* Field / Value */

Zero.Plugins.Store.ElasticSearch/src/main/java/io/zerows/plugins/store/elasticsearch/ElasticSearchHelper.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Settings settingsBuilder(final int numberOfShards, final int numberOfReplicas) {
108108
}
109109

110110
/**
111-
* build mappings for index from fields and fields' type
111+
* web mappings for index from fields and fields' type
112112
*
113113
* @param mappings fields with type, format like below
114114
* {

0 commit comments

Comments
 (0)