-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added the capability to execute a script in the Tester application - Documented an Apache RocketMQ example of a generic data source - Updated RabbitMQ to 5.25.0
- Loading branch information
Showing
12 changed files
with
274 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
src/main/java/org/point85/domain/dto/GenericSourceDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
package org.point85.domain.dto; | ||
|
||
import org.point85.domain.generic.GenericSource; | ||
|
||
public class GenericSourceDto extends CollectorDataSourceDto { | ||
private String attribute1; | ||
private String attribute2; | ||
private String attribute3; | ||
private String attribute4; | ||
private String attribute5; | ||
|
||
public GenericSourceDto(GenericSource source) { | ||
super(source); | ||
|
||
this.setAttribute1(source.getAttribute1()); | ||
this.setAttribute2(source.getAttribute2()); | ||
this.setAttribute3(source.getAttribute3()); | ||
this.setAttribute4(source.getAttribute4()); | ||
this.setAttribute5(source.getAttribute5()); | ||
} | ||
|
||
public String getAttribute1() { | ||
return attribute1; | ||
} | ||
|
||
public void setAttribute1(String attribute) { | ||
this.attribute1 = attribute; | ||
} | ||
|
||
public String getAttribute2() { | ||
return attribute2; | ||
} | ||
|
||
public void setAttribute2(String attribute) { | ||
this.attribute2 = attribute; | ||
} | ||
|
||
public String getAttribute3() { | ||
return attribute3; | ||
} | ||
|
||
public void setAttribute3(String attribute) { | ||
this.attribute3 = attribute; | ||
} | ||
|
||
public String getAttribute4() { | ||
return attribute4; | ||
} | ||
|
||
public void setAttribute4(String attribute) { | ||
this.attribute4 = attribute; | ||
} | ||
|
||
public String getAttribute5() { | ||
return attribute5; | ||
} | ||
|
||
public void setAttribute5(String attribute) { | ||
this.attribute5 = attribute; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.