Skip to content

Commit

Permalink
Cleanup XML of action Repeat/End Repeat, fixes apache#1987
Browse files Browse the repository at this point in the history
  • Loading branch information
hansva committed Oct 28, 2024
1 parent 2377655 commit 1fbf04d
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 357 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,18 @@

package org.apache.hop.workflow.actions.repeat;

import lombok.Getter;
import lombok.Setter;
import org.apache.hop.metadata.api.HopMetadataProperty;

@Getter
@Setter
public class ParameterDetails {

@HopMetadataProperty(key = "name")
private String name;

@HopMetadataProperty(key = "value")
private String field;

public ParameterDetails() {}
Expand All @@ -27,36 +37,4 @@ public ParameterDetails(String name, String field) {
this.name = name;
this.field = field;
}

/**
* Gets name
*
* @return value of name
*/
public String getName() {
return name;
}

/**
* @param name The name to set
*/
public void setName(String name) {
this.name = name;
}

/**
* Gets field
*
* @return value of field
*/
public String getField() {
return field;
}

/**
* @param field The field to set
*/
public void setField(String field) {
this.field = field;
}
}
Loading

0 comments on commit 1fbf04d

Please sign in to comment.