Skip to content

Commit bb59c35

Browse files
authored
Merge pull request #10 from lvivJavaClub/cleanup
clean up
2 parents 4d72cff + 978b84a commit bb59c35

File tree

8 files changed

+3
-24
lines changed

8 files changed

+3
-24
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ If no then add it using this : `export DOCKER_HOST=unix:///var/run/docker.sock`
3838

3939
## TODO Items
4040
- [ ] Check Feign Fallback ?
41-
- [x] Storage Service (persistance + eurika client)
41+
- [x] Storage Service (persistance + Eureka client)
4242
- [x] Rieltor Service
43-
- [x] All eurika clients add eurika server address to properties
43+
- [x] All Eureka clients add Eureka server address to properties
4444
- [ ] Client service for search
4545
- [x] Zuul like a proxy API gateway
4646
- [ ] Cloud foundary

hackster-service/src/main/java/com/lohika/jclub/Hackster.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
import javax.persistence.GeneratedValue;
1010
import javax.persistence.Id;
1111

12-
/**
13-
* @author Andriy Levchenko
14-
*/
1512
@Data
1613
@NoArgsConstructor
1714
@RequiredArgsConstructor

hackster-service/src/main/java/com/lohika/jclub/HacksterController.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
import org.springframework.web.bind.annotation.RequestMapping;
77
import org.springframework.web.bind.annotation.RestController;
88

9-
/**
10-
* @author Andriy Levchenko
11-
*/
129
@RestController
1310
@RequestMapping(path = "/hackster")
1411
public class HacksterController {

hackster-service/src/main/java/com/lohika/jclub/HacksterRepository.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44

55
import java.util.Optional;
66

7-
/**
8-
* @author Andriy Levchenko
9-
*/
107
public interface HacksterRepository extends JpaRepository<Hackster, Long> {
118
Optional<Hackster> findByPhone(String phone);
129
}

rating-service/src/main/java/com/lohika/jclub/rating/service/Apartment.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
import lombok.NoArgsConstructor;
77
import lombok.NonNull;
88

9-
/**
10-
* @author Andriy Levchenko
11-
*/
129
@Data
1310
@Builder
1411
@AllArgsConstructor

rating-service/src/main/java/com/lohika/jclub/rating/service/RatingController.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
import org.springframework.web.bind.annotation.RequestMapping;
88
import org.springframework.web.bind.annotation.RestController;
99

10-
/**
11-
* @author Andriy Levchenko
12-
*/
1310
@RestController
1411
@RequestMapping(path = "/rating")
1512
@RequiredArgsConstructor

realtor-service/src/main/java/com/lohika/jclub/realtor/ApartmentRecordClient.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,9 @@
33
import feign.Headers;
44
import feign.RequestLine;
55

6-
/**
7-
* Created by omuliarevych on 6/8/17.
8-
*/
96
public interface ApartmentRecordClient {
107

118
@RequestLine("POST /apartmentRecords")
129
@Headers("Content-Type: application/json")
1310
void storeApartment(ApartmentRecord apartmentRecord);
14-
}
11+
}

storage-service/src/main/java/com/lohika/jclub/storage/service/ApartmentRepository.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
import org.springframework.data.repository.PagingAndSortingRepository;
44
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
55

6-
/**
7-
* Created by omuliarevych on 6/8/17.
8-
*/
96
@RepositoryRestResource(path = "apartments")
107
public interface ApartmentRepository extends PagingAndSortingRepository<ApartmentRecord, String> {
118
}

0 commit comments

Comments
 (0)