Class Names refactoring
This commit is contained in:
parent
fe31ce5f25
commit
1c80f165b6
|
@ -82,7 +82,7 @@ public abstract class ElementMapper {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void registerPackages(List<Package> packages) {
|
public static void registerPackages(List<Package> packages) {
|
||||||
SchemaAction schemaAction = new ISMappingAction();
|
SchemaAction schemaAction = new ElementMappingAction();
|
||||||
try {
|
try {
|
||||||
ElementSpecilizationDiscovery.manageISM(schemaAction, packages);
|
ElementSpecilizationDiscovery.manageISM(schemaAction, packages);
|
||||||
} catch(Exception e) {
|
} catch(Exception e) {
|
||||||
|
@ -92,7 +92,7 @@ public abstract class ElementMapper {
|
||||||
|
|
||||||
|
|
||||||
public static void registerPackages(Package... packages) {
|
public static void registerPackages(Package... packages) {
|
||||||
SchemaAction schemaAction = new ISMappingAction();
|
SchemaAction schemaAction = new ElementMappingAction();
|
||||||
try {
|
try {
|
||||||
ElementSpecilizationDiscovery.manageISM(schemaAction, packages);
|
ElementSpecilizationDiscovery.manageISM(schemaAction, packages);
|
||||||
} catch(Exception e) {
|
} catch(Exception e) {
|
||||||
|
|
|
@ -11,9 +11,9 @@ import org.gcube.informationsystem.utils.discovery.SchemaAction;
|
||||||
/**
|
/**
|
||||||
* @author Luca Frosini (ISTI - CNR)
|
* @author Luca Frosini (ISTI - CNR)
|
||||||
*/
|
*/
|
||||||
class ISMappingAction implements SchemaAction {
|
class ElementMappingAction implements SchemaAction {
|
||||||
|
|
||||||
public ISMappingAction(){
|
public ElementMappingAction(){
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue