-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
TAKESHI SHIMADA
committed
Sep 3, 2019
1 parent
7c95c71
commit f558485
Showing
20 changed files
with
35 additions
and
35 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...actacea/finagger/SwaggerTypeRegister.java → ...actacea/finagger/SwaggerTypeRegister.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 io.cactacea.finagger; | ||
package io.github.cactacea.finagger; | ||
|
||
import io.swagger.util.PrimitiveType; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...agger/interfaces/CorrelationIdGetter.java → ...agger/interfaces/CorrelationIdGetter.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 io.cactacea.finagger.interfaces; | ||
package io.github.cactacea.finagger.interfaces; | ||
|
||
import java.util.UUID; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...agger/interfaces/CorrelationIdSetter.java → ...agger/interfaces/CorrelationIdSetter.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 io.cactacea.finagger.interfaces; | ||
package io.github.cactacea.finagger.interfaces; | ||
|
||
import java.util.UUID; | ||
|
||
|
4 changes: 2 additions & 2 deletions
4
...acea/finagger/valuetypes/DoubleValue.java → ...acea/finagger/valuetypes/DoubleValue.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
...actacea/finagger/valuetypes/HasValue.java → ...actacea/finagger/valuetypes/HasValue.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
...cea/finagger/valuetypes/IntegerValue.java → ...cea/finagger/valuetypes/IntegerValue.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
...ctacea/finagger/valuetypes/LongValue.java → ...ctacea/finagger/valuetypes/LongValue.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
...acea/finagger/valuetypes/StringValue.java → ...acea/finagger/valuetypes/StringValue.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
...ctacea/finagger/valuetypes/UuidValue.java → ...ctacea/finagger/valuetypes/UuidValue.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
...o/cactacea/finagger/valuetypes/Value.java → ...b/cactacea/finagger/valuetypes/Value.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
...finagger/valuetypes/ValueTypeWrapper.java → ...finagger/valuetypes/ValueTypeWrapper.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
.../adapters/xml/JaxbDoubleValueAdapter.java → .../adapters/xml/JaxbDoubleValueAdapter.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,6 +1,6 @@ | ||
package io.cactacea.finagger.valuetypes.adapters.xml; | ||
package io.github.cactacea.finagger.valuetypes.adapters.xml; | ||
|
||
import io.cactacea.finagger.valuetypes.DoubleValue; | ||
import io.github.cactacea.finagger.valuetypes.DoubleValue; | ||
|
||
public abstract class JaxbDoubleValueAdapter<ValueClass extends DoubleValue> extends JaxbValueAdapter<Double, ValueClass> { } | ||
|
4 changes: 2 additions & 2 deletions
4
...adapters/xml/JaxbIntegerValueAdapter.java → ...adapters/xml/JaxbIntegerValueAdapter.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,5 +1,5 @@ | ||
package io.cactacea.finagger.valuetypes.adapters.xml; | ||
package io.github.cactacea.finagger.valuetypes.adapters.xml; | ||
|
||
import io.cactacea.finagger.valuetypes.IntegerValue; | ||
import io.github.cactacea.finagger.valuetypes.IntegerValue; | ||
|
||
public abstract class JaxbIntegerValueAdapter<ValueClass extends IntegerValue> extends JaxbValueAdapter<Integer, ValueClass> { } |
4 changes: 2 additions & 2 deletions
4
...es/adapters/xml/JaxbLongValueAdapter.java → ...es/adapters/xml/JaxbLongValueAdapter.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,5 +1,5 @@ | ||
package io.cactacea.finagger.valuetypes.adapters.xml; | ||
package io.github.cactacea.finagger.valuetypes.adapters.xml; | ||
|
||
import io.cactacea.finagger.valuetypes.LongValue; | ||
import io.github.cactacea.finagger.valuetypes.LongValue; | ||
|
||
public abstract class JaxbLongValueAdapter<ValueClass extends LongValue> extends JaxbValueAdapter<Long, ValueClass> { } |
4 changes: 2 additions & 2 deletions
4
.../adapters/xml/JaxbStringValueAdapter.java → .../adapters/xml/JaxbStringValueAdapter.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
...es/adapters/xml/JaxbUuidValueAdapter.java → ...es/adapters/xml/JaxbUuidValueAdapter.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
...etypes/adapters/xml/JaxbValueAdapter.java → ...etypes/adapters/xml/JaxbValueAdapter.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
...aluetypes/annotations/WrapsValueType.java → ...aluetypes/annotations/WrapsValueType.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
8 changes: 4 additions & 4 deletions
8
.../valuetypes/locator/ValueTypeLocator.java → .../valuetypes/locator/ValueTypeLocator.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
...types/locator/ValueTypeLocatorResult.java → ...types/locator/ValueTypeLocatorResult.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