Skip to content
Snippets Groups Projects
Commit 4f62447a authored by Florian Lambers's avatar Florian Lambers
Browse files

added author

parent 1e9e8364
Branches master
No related tags found
No related merge requests found
Showing
with 59 additions and 2 deletions
package de.fhmuenster.masterthesis.Testgenerator.yaml; package de.fhmuenster.masterthesis.Testgenerator.yaml;
/**
* @author Florian Lambers
*/
public class Event { public class Event {
private ProcessVariable addProcessVariable; private ProcessVariable addProcessVariable;
private MigrationResult deleteProcessVariable; private MigrationResult deleteProcessVariable;
......
package de.fhmuenster.masterthesis.Testgenerator.yaml; package de.fhmuenster.masterthesis.Testgenerator.yaml;
/**
* @author Florian Lambers
*/
public class Gateway { public class Gateway {
private GatewayAction add; private GatewayAction add;
private GatewayAction delete; private GatewayAction delete;
......
package de.fhmuenster.masterthesis.Testgenerator.yaml; package de.fhmuenster.masterthesis.Testgenerator.yaml;
/**
* @author Florian Lambers
*/
public class GatewayAction { public class GatewayAction {
private MigrationResult xor; private MigrationResult xor;
private MigrationResult or; private MigrationResult or;
......
package de.fhmuenster.masterthesis.Testgenerator.yaml; package de.fhmuenster.masterthesis.Testgenerator.yaml;
/**
* @author Florian Lambers
*/
public class MigrationResult { public class MigrationResult {
private MigrationResultStatus status; private MigrationResultStatus status;
......
package de.fhmuenster.masterthesis.Testgenerator.yaml; package de.fhmuenster.masterthesis.Testgenerator.yaml;
/**
* @author Florian Lambers
*/
public enum MigrationResultStatus { public enum MigrationResultStatus {
NONE, NONE,
GREEN, GREEN,
......
package de.fhmuenster.masterthesis.Testgenerator.yaml; package de.fhmuenster.masterthesis.Testgenerator.yaml;
/**
* @author Florian Lambers
*/
public class MigrationYaml { public class MigrationYaml {
private Configuration configuration; private Configuration configuration;
private Gateway gateway; private Gateway gateway;
......
package de.fhmuenster.masterthesis.Testgenerator.yaml; package de.fhmuenster.masterthesis.Testgenerator.yaml;
/**
* @author Florian Lambers
*/
public class Priority { public class Priority {
private String formularPart0; private String formularPart0;
......
package de.fhmuenster.masterthesis.Testgenerator.yaml; package de.fhmuenster.masterthesis.Testgenerator.yaml;
/**
* @author Florian Lambers
*/
public class ProcessVariable { public class ProcessVariable {
private MigrationResult required; private MigrationResult required;
......
package de.fhmuenster.masterthesis.Testgenerator.yaml; package de.fhmuenster.masterthesis.Testgenerator.yaml;
/**
* @author Florian Lambers
*/
public class RequiredType { public class RequiredType {
private MigrationResult required; private MigrationResult required;
private MigrationResult notRequired; private MigrationResult notRequired;
......
package de.fhmuenster.masterthesis.Testgenerator.yaml; package de.fhmuenster.masterthesis.Testgenerator.yaml;
/**
* @author Florian Lambers
*/
public class SequenceFlow { public class SequenceFlow {
private MigrationResult changeExpression; private MigrationResult changeExpression;
......
...@@ -5,11 +5,14 @@ import java.io.File; ...@@ -5,11 +5,14 @@ import java.io.File;
import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.dataformat.yaml.YAMLFactory; import com.fasterxml.jackson.dataformat.yaml.YAMLFactory;
public class YamlReader { public class YamlReader {
public YamlReader() { public YamlReader() {
} }
/**
* @author Florian Lambers
*/
public MigrationYaml loadMigrationYaml() { public MigrationYaml loadMigrationYaml() {
ObjectMapper mapper = new ObjectMapper(new YAMLFactory()); ObjectMapper mapper = new ObjectMapper(new YAMLFactory());
...@@ -25,7 +28,9 @@ public class YamlReader { ...@@ -25,7 +28,9 @@ public class YamlReader {
return yaml; return yaml;
} }
/**
* @author Henning Schmeink
*/
public MigrationYaml loadConfigYaml() { public MigrationYaml loadConfigYaml() {
ObjectMapper mapper = new ObjectMapper(new YAMLFactory()); ObjectMapper mapper = new ObjectMapper(new YAMLFactory());
......
import { Component, Input, OnInit } from '@angular/core'; import { Component, Input, OnInit } from '@angular/core';
/**
* @author Florian Lambers
*/
@Component({ @Component({
selector: 'app-flag', selector: 'app-flag',
templateUrl: './flag.component.html', templateUrl: './flag.component.html',
......
...@@ -5,6 +5,10 @@ import { MigrationService } from '../../services/migration-service'; ...@@ -5,6 +5,10 @@ import { MigrationService } from '../../services/migration-service';
import { environment } from 'src/environments/environment'; import { environment } from 'src/environments/environment';
import { HttpClient } from '@angular/common/http'; import { HttpClient } from '@angular/common/http';
/**
* @author Florian Lambers
*/
@Component({ @Component({
selector: 'app-migration-overview', selector: 'app-migration-overview',
templateUrl: './migration-overview.component.html', templateUrl: './migration-overview.component.html',
......
import { FlowChangeWrapper } from "./flow-change-wrapper"; import { FlowChangeWrapper } from "./flow-change-wrapper";
/**
* @author Florian Lambers
*/
export interface MigrationResultWrapper { export interface MigrationResultWrapper {
greenResults: Array<FlowChangeWrapper>; greenResults: Array<FlowChangeWrapper>;
yellowResults: Array<FlowChangeWrapper>; yellowResults: Array<FlowChangeWrapper>;
......
/**
* @author Florian Lambers
*/
export interface MigrationResult { export interface MigrationResult {
status: string; status: string;
priority: number; priority: number;
......
import { BPMNFlowSet } from "./bpmn-flow-set"; import { BPMNFlowSet } from "./bpmn-flow-set";
/**
* @author Florian Lambers
*/
export interface MigrationStatus { export interface MigrationStatus {
migration: boolean; migration: boolean;
matchingFlows: Array<BPMNFlowSet>; matchingFlows: Array<BPMNFlowSet>;
......
...@@ -2,6 +2,9 @@ import { Pipe, PipeTransform } from '@angular/core'; ...@@ -2,6 +2,9 @@ import { Pipe, PipeTransform } from '@angular/core';
import { exists, fchown } from 'fs'; import { exists, fchown } from 'fs';
import { FlowChangeWrapper } from '../models/flow-change-wrapper'; import { FlowChangeWrapper } from '../models/flow-change-wrapper';
/**
* @author Florian Lambers
*/
@Pipe({ @Pipe({
name: 'filterMigrationResultWrapper' name: 'filterMigrationResultWrapper'
}) })
......
...@@ -6,6 +6,9 @@ import { BPMNFlowSet } from '../models/bpmn-flow-set'; ...@@ -6,6 +6,9 @@ import { BPMNFlowSet } from '../models/bpmn-flow-set';
import { MigrationResultWrapper } from '../models/migration-result-wrapper'; import { MigrationResultWrapper } from '../models/migration-result-wrapper';
import { MigrationStatus } from '../models/migration-status'; import { MigrationStatus } from '../models/migration-status';
/**
* @author Florian Lambers, Till Brinkhus
*/
@Injectable({ @Injectable({
providedIn: 'root' providedIn: 'root'
}) })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment