-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename package com.araymond to org.araymond
- Loading branch information
1 parent
ca099de
commit c346e61
Showing
50 changed files
with
138 additions
and
138 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
4 changes: 0 additions & 4 deletions
4
src/main/java/com/araymond/joalcore/annotations/ddd/DomainEntity.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
src/main/java/com/araymond/joalcore/core/sharing/domain/Leechers.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
src/main/java/com/araymond/joalcore/core/sharing/domain/Seeders.java
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
src/main/java/com/araymond/joalcore/core/sharing/domain/events/DoneDownloadingEvent.java
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
src/main/java/com/araymond/joalcore/core/sharing/domain/events/TorrentPausedEvent.java
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...raymond/joalcore/JoalCoreApplication.java → ...raymond/joalcore/JoalCoreApplication.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
2 changes: 1 addition & 1 deletion
2
...d/joalcore/annotations/DomainService.java → ...d/joalcore/annotations/DomainService.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
2 changes: 1 addition & 1 deletion
2
...alcore/annotations/VisibleForTesting.java → ...alcore/annotations/VisibleForTesting.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
2 changes: 1 addition & 1 deletion
2
...alcore/annotations/ddd/AggregateRoot.java → ...alcore/annotations/ddd/AggregateRoot.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
4 changes: 4 additions & 0 deletions
4
src/main/java/org/araymond/joalcore/annotations/ddd/DomainEntity.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,4 @@ | ||
package org.araymond.joalcore.annotations.ddd; | ||
|
||
public @interface DomainEntity { | ||
} |
2 changes: 1 addition & 1 deletion
2
...joalcore/annotations/ddd/ValueObject.java → ...joalcore/annotations/ddd/ValueObject.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
4 changes: 2 additions & 2 deletions
4
...alcore/core/infohash/domain/InfoHash.java → ...alcore/core/infohash/domain/InfoHash.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
4 changes: 2 additions & 2 deletions
4
...core/metadata/domain/TorrentMetadata.java → ...core/metadata/domain/TorrentMetadata.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
6 changes: 3 additions & 3 deletions
6
.../sharing/application/PersistentStats.java → .../sharing/application/PersistentStats.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
20 changes: 10 additions & 10 deletions
20
...ing/application/SharedTorrentService.java → ...ing/application/SharedTorrentService.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
2 changes: 1 addition & 1 deletion
2
...ptions/UnknownSharedTorrentException.java → ...ptions/UnknownSharedTorrentException.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
4 changes: 2 additions & 2 deletions
4
...ore/core/sharing/domain/Contribution.java → ...ore/core/sharing/domain/Contribution.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
6 changes: 3 additions & 3 deletions
6
...re/core/sharing/domain/Contributions.java → ...re/core/sharing/domain/Contributions.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
4 changes: 2 additions & 2 deletions
4
...e/core/sharing/domain/DownloadAmount.java → ...e/core/sharing/domain/DownloadAmount.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
7 changes: 7 additions & 0 deletions
7
src/main/java/org/araymond/joalcore/core/sharing/domain/Leechers.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,7 @@ | ||
package org.araymond.joalcore.core.sharing.domain; | ||
|
||
import org.araymond.joalcore.annotations.ddd.ValueObject; | ||
|
||
@ValueObject | ||
public record Leechers(int count) { | ||
} |
6 changes: 3 additions & 3 deletions
6
...nd/joalcore/core/sharing/domain/Left.java → ...nd/joalcore/core/sharing/domain/Left.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
4 changes: 2 additions & 2 deletions
4
...d/joalcore/core/sharing/domain/Peers.java → ...d/joalcore/core/sharing/domain/Peers.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
7 changes: 7 additions & 0 deletions
7
src/main/java/org/araymond/joalcore/core/sharing/domain/Seeders.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,7 @@ | ||
package org.araymond.joalcore.core.sharing.domain; | ||
|
||
import org.araymond.joalcore.annotations.ddd.ValueObject; | ||
|
||
@ValueObject | ||
public record Seeders(int count) { | ||
} |
24 changes: 12 additions & 12 deletions
24
...re/core/sharing/domain/SharedTorrent.java → ...re/core/sharing/domain/SharedTorrent.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
4 changes: 2 additions & 2 deletions
4
.../core/sharing/domain/SharedTorrentId.java → .../core/sharing/domain/SharedTorrentId.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
4 changes: 2 additions & 2 deletions
4
...aring/domain/SharedTorrentRepository.java → ...aring/domain/SharedTorrentRepository.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
6 changes: 3 additions & 3 deletions
6
...re/core/sharing/domain/SharingStatus.java → ...re/core/sharing/domain/SharingStatus.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
6 changes: 3 additions & 3 deletions
6
...d/joalcore/core/sharing/domain/Swarm.java → ...d/joalcore/core/sharing/domain/Swarm.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
4 changes: 2 additions & 2 deletions
4
...ore/core/sharing/domain/UploadAmount.java → ...ore/core/sharing/domain/UploadAmount.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
6 changes: 6 additions & 0 deletions
6
src/main/java/org/araymond/joalcore/core/sharing/domain/events/DoneDownloadingEvent.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,6 @@ | ||
package org.araymond.joalcore.core.sharing.domain.events; | ||
|
||
import org.araymond.joalcore.events.DomainEvent; | ||
|
||
public class DoneDownloadingEvent extends DomainEvent { | ||
} |
6 changes: 3 additions & 3 deletions
6
...ng/domain/events/TorrentCreatedEvent.java → ...ng/domain/events/TorrentCreatedEvent.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
6 changes: 6 additions & 0 deletions
6
src/main/java/org/araymond/joalcore/core/sharing/domain/events/TorrentPausedEvent.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,6 @@ | ||
package org.araymond.joalcore.core.sharing.domain.events; | ||
|
||
import org.araymond.joalcore.events.DomainEvent; | ||
|
||
public class TorrentPausedEvent extends DomainEvent { | ||
} |
8 changes: 4 additions & 4 deletions
8
...main/events/TorrentPeersChangedEvent.java → ...main/events/TorrentPeersChangedEvent.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
4 changes: 2 additions & 2 deletions
4
...in/events/TorrentStartedSharingEvent.java → ...in/events/TorrentStartedSharingEvent.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
2 changes: 1 addition & 1 deletion
2
...eptions/IllegalActionForTorrentState.java → ...eptions/IllegalActionForTorrentState.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
2 changes: 1 addition & 1 deletion
2
...ptions/InvalidChangeOfStateException.java → ...ptions/InvalidChangeOfStateException.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
2 changes: 1 addition & 1 deletion
2
...eptions/InvalidContributionException.java → ...eptions/InvalidContributionException.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
6 changes: 3 additions & 3 deletions
6
...sharing/domain/services/PeerElection.java → ...sharing/domain/services/PeerElection.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
2 changes: 1 addition & 1 deletion
2
...araymond/joalcore/events/DomainEvent.java → ...araymond/joalcore/events/DomainEvent.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
2 changes: 1 addition & 1 deletion
2
...joalcore/events/DomainEventPublisher.java → ...joalcore/events/DomainEventPublisher.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.araymond.joalcore.events; | ||
package org.araymond.joalcore.events; | ||
|
||
import java.util.List; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...nd/joalcore/JoalCoreApplicationTests.java → ...nd/joalcore/JoalCoreApplicationTests.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
6 changes: 3 additions & 3 deletions
6
.../joalcore/core/fixtures/TestFixtures.java → .../joalcore/core/fixtures/TestFixtures.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
2 changes: 1 addition & 1 deletion
2
...re/core/infohash/domain/InfoHashTest.java → ...re/core/infohash/domain/InfoHashTest.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
Oops, something went wrong.