generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 7
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
1 parent
d9745ae
commit b62128f
Showing
27 changed files
with
629 additions
and
64 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
42 changes: 42 additions & 0 deletions
42
...-runtime/common/deployment/src/main/java/xyz/block/ftl/deployment/TypeAliasBuildItem.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,42 @@ | ||
package xyz.block.ftl.deployment; | ||
|
||
import org.jboss.jandex.Type; | ||
|
||
import io.quarkus.builder.item.MultiBuildItem; | ||
|
||
public final class TypeAliasBuildItem extends MultiBuildItem { | ||
|
||
final String name; | ||
final String module; | ||
final Type localType; | ||
final Type serializedType; | ||
final boolean exported; | ||
|
||
public TypeAliasBuildItem(String name, String module, Type localType, Type serializedType, boolean exported) { | ||
this.name = name; | ||
this.module = module; | ||
this.localType = localType; | ||
this.serializedType = serializedType; | ||
this.exported = exported; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public String getModule() { | ||
return module; | ||
} | ||
|
||
public Type getLocalType() { | ||
return localType; | ||
} | ||
|
||
public Type getSerializedType() { | ||
return serializedType; | ||
} | ||
|
||
public boolean isExported() { | ||
return exported; | ||
} | ||
} |
Oops, something went wrong.