Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,30 @@

import io.quarkus.builder.item.SimpleBuildItem;

/**
* Holds the name of the application class.
*/
public final class ApplicationClassNameBuildItem extends SimpleBuildItem {
/**
* The name of the application class.
*/
private final String className;

/**
* Constructs a new {@link ApplicationClassNameBuildItem}.
*
* @param className the name of the application class
*/

public ApplicationClassNameBuildItem(String className) {
this.className = className;
}

/**
* Returns the name of the application class.
*
* @return the application class name
*/
public String getClassName() {
return className;
}
Expand Down