-
Notifications
You must be signed in to change notification settings - Fork 1
BI-2109 - Create Sub-entity Dataset from UI #362
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
ae4cdc4
[BI-2109] prepared BrAPITrialService for dataset work
mlm483 7669e0e
[BI-2109] added controller method and service method stub
mlm483 7d8fc93
[BI-2109] incorporated BI-1464 work, used dataset array on experiment
mlm483 37738f1
[BI-2109] - fixed enum serialization issue
mlm483 9fb3555
[BI-2109] - fully implemented createSubEntityDataset
mlm483 0f26eac
[BI-2109] - fixed DatasetLevel serialization in response
mlm483 a4786d7
[BI-2109] - fixed sub observation unit name
mlm483 086bd96
[BI-2109] - completed sub observation unit position
mlm483 c0214a9
[BI-2109] - indexed from 1
mlm483 f1a3d20
[BI-2109] - added RTK and Treament Factors
mlm483 11dcf7d
[BI-2109] - null handling
mlm483 27db242
[BI-2109] - added id to Dataset
mlm483 472d989
[BI-2109] - merged develop into feature/BI-2109
mlm483 23efe19
[BI-2109] - removed unused method
mlm483 2467cb0
[BI-2109] - cleaned up
mlm483 2f02edb
[BI-2109] - improved comments
mlm483 7090b60
[BI-2109] - handled null case
mlm483 4226ef2
[BI-2109] - cleaned up ExperimentProcessor.java changes
mlm483 cbaef19
[BI-2109] - cleaned up
mlm483 24fe163
[BI-2109] - fixed several tests
mlm483 5dd733c
[BI-2109] - fixed bug
mlm483 0d84705
[BI-2109] - fixed failing tests
mlm483 abf014d
[BI-2109] - implemented download by dataset
mlm483 913cc14
[BI-2109] - commented test
mlm483 2e0825d
[BI-2109] - fixed failing test
mlm483 8730d74
[BI-2109] - added sub-entity download test
mlm483 c64b129
[BI-2109] - cleaned up comment
mlm483 dd82dd7
[BI-2109] - added workaround until BI-2219 is implemented
mlm483 a82118f
[BI-2109] - added 404 response
mlm483 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
src/main/java/org/breedinginsight/api/model/v1/request/SubEntityDatasetRequest.java
This file contains hidden or 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,38 @@ | ||
| /* | ||
| * See the NOTICE file distributed with this work for additional information | ||
| * regarding copyright ownership. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| package org.breedinginsight.api.model.v1.request; | ||
|
|
||
| import io.micronaut.core.annotation.Introspected; | ||
| import lombok.*; | ||
|
|
||
| import javax.validation.constraints.NotBlank; | ||
| import javax.validation.constraints.NotNull; | ||
|
|
||
| @Getter | ||
| @Setter | ||
| @Builder | ||
| @ToString | ||
| @AllArgsConstructor | ||
| @NoArgsConstructor | ||
| @Introspected | ||
| public class SubEntityDatasetRequest { | ||
| @NotBlank | ||
| private String name; | ||
| @NotNull | ||
| private int repeatedMeasures; | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.