Skip to content

Commit

Permalink
🔥 removing split between configuration metadata interfaces and dto
Browse files Browse the repository at this point in the history
Signed-off-by: dseurotech <[email protected]>
  • Loading branch information
dseurotech committed Jul 9, 2024
1 parent 2d110c4 commit c3e8953
Show file tree
Hide file tree
Showing 88 changed files with 1,914 additions and 4,262 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,19 @@
*******************************************************************************/
package org.eclipse.kapua.commons.configuration;

import org.eclipse.kapua.commons.configuration.metatype.TscalarImpl;
import org.eclipse.kapua.model.config.metatype.KapuaTad;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;

import org.eclipse.kapua.model.config.metatype.KapuaTad;
import org.eclipse.kapua.model.config.metatype.KapuaTscalar;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* The implementation of this class is inspired from the org.eclipse.equinox.metatype.impl.ValueTokenizer class
* in the Eclipse Equinox project.
* The implementation of this class is inspired from the org.eclipse.equinox.metatype.impl.ValueTokenizer class in the Eclipse Equinox project.
*
* @since 1.0
*/
Expand Down Expand Up @@ -215,7 +214,7 @@ else if (values.size() > cardinality) {
boolean rangeError = false;
Object minVal = null;
Object maxVal = null;
TscalarImpl adScalarType = TscalarImpl.fromValue(ad.getType().value());
KapuaTscalar adScalarType = KapuaTscalar.fromValue(ad.getType().value());
switch (adScalarType) {
case PASSWORD:
case STRING:
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit c3e8953

Please sign in to comment.