forked from finos/vuu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VUU25: Implement interface for Metadata DTOs
- Loading branch information
1 parent
5fcb328
commit 1c05d6b
Showing
3 changed files
with
26 additions
and
4 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
layout-server/src/main/java/org/finos/vuu/layoutserver/dto/MetadataDTO.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,21 @@ | ||
package org.finos.vuu.layoutserver.dto; | ||
|
||
public interface MetadataDTO { | ||
|
||
String getName(); | ||
|
||
void setName(String name); | ||
|
||
String getGroup(); | ||
|
||
void setGroup(String group); | ||
|
||
String getScreenshot(); | ||
|
||
void setScreenshot(String screenshot); | ||
|
||
String getUser(); | ||
|
||
void setUser(String user); | ||
|
||
} |
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
6 changes: 3 additions & 3 deletions
6
layout-server/src/main/java/org/finos/vuu/layoutserver/dto/response/MetadataResponseDTO.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