-
Notifications
You must be signed in to change notification settings - Fork 24
Update javadocs #1850
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
kjswaruph
wants to merge
6
commits into
pulumi:main
Choose a base branch
from
kjswaruph:update-javadocs
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Update javadocs #1850
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
76afdf3
fix: StackOptions description
kjswaruph f39fb06
docs: add class level and method level javadoc descriptions
kjswaruph 7106728
add: package-info.java in packages
kjswaruph 501bfee
add: checkstyle plugin and configuration for linting
kjswaruph f9e34a4
Apply suggestions from code review to improve javadoc descriptions
kjswaruph c33a4b0
Add missing newlines at the end.
kjswaruph File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,43 @@ | ||
| <?xml version="1.0"?> | ||
| <!DOCTYPE module PUBLIC | ||
| "-//Puppy Crawl//DTD Check Configuration 1.3//EN" | ||
| "https://checkstyle.org/dtds/configuration_1_3.dtd"> | ||
|
|
||
| <module name="Checker"> | ||
| <property name="charset" value="UTF-8" /> | ||
| <property name="severity" value="warning" /> | ||
| <property name="fileExtensions" value="java, properties, xml" /> | ||
|
|
||
| <module name="TreeWalker"> | ||
|
|
||
| <module name="JavadocStyle"> | ||
| <property name="checkFirstSentence" value="true"/> | ||
| <property name="checkEmptyJavadoc" value="true"/> | ||
| <property name="checkHtml" value="true"/> | ||
| </module> | ||
|
|
||
| <module name="JavadocMethod"> | ||
| <property name="accessModifiers" value="public"/> | ||
| <property name="allowedAnnotations" value="Override, Test"/> | ||
| <property name="validateThrows" value="false"/> | ||
| </module> | ||
|
|
||
| <module name="JavadocTagContinuationIndentation"> | ||
| <property name="offset" value="4"/> | ||
| </module> | ||
|
|
||
| <module name="AtclauseOrder"/> | ||
|
|
||
| <module name="JavadocContentLocation"/> | ||
|
|
||
| <module name="MissingJavadocPackage"/> | ||
| <module name="MissingJavadocMethod"/> | ||
| <module name="MissingJavadocType"/> | ||
|
|
||
| </module> | ||
|
|
||
| <module name="SuppressionFilter"> | ||
| <property name="file" value="${config_loc}/suppressions.xml"/> | ||
| </module> | ||
|
|
||
| </module> | ||
This file contains hidden or 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,17 @@ | ||
| <?xml version="1.0"?> | ||
|
|
||
| <!DOCTYPE suppressions PUBLIC | ||
| "-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN" | ||
| "https://checkstyle.org/dtds/suppressions_1_2.dtd"> | ||
|
|
||
| <suppressions> | ||
| <suppress checks=".*" files="com/pulumi/bootstrap/internal/.*"/> | ||
| <suppress checks=".*" files="com/pulumi/codegen/internal/.*"/> | ||
| <suppress checks=".*" files="com/pulumi/context/internal/.*"/> | ||
| <suppress checks=".*" files="com/pulumi/core/internal/.*"/> | ||
| <suppress checks=".*" files="com/pulumi/deployment/internal/.*"/> | ||
| <suppress checks=".*" files="com/pulumi/internal/.*"/> | ||
| <suppress checks=".*" files="com/pulumi/resources/internal/.*"/> | ||
| <suppress checks=".*" files="com/pulumi/serialization/internal/.*"/> | ||
| </suppressions> | ||
|
|
This file contains hidden or 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 hidden or 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 @@ | ||
| /** | ||
| * Contains auto-generated classes and interfaces including gRPC services and protocol buffer messages. | ||
| * <p> | ||
| * <b>Note:</b> This package is primarily for internal use and is not intended for direct use by end users. | ||
| */ | ||
| package codegen; |
This file contains hidden or 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 hidden or 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 hidden or 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
sdk/java/pulumi/src/main/java/com/pulumi/asset/package-info.java
This file contains hidden or 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 @@ | ||
| /** | ||
| * Provides types for working with assets and archives. | ||
| */ | ||
| package com.pulumi.asset; |
6 changes: 6 additions & 0 deletions
6
sdk/java/pulumi/src/main/java/com/pulumi/automation/events/internal/package-info.java
This file contains hidden or 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 @@ | ||
| /** | ||
| * Internal event implementation details for the Pulumi Automation API. | ||
| * <p> | ||
| * <b>Note:</b> This package is primarily for internal use and is not intended for direct use by end users. | ||
| */ | ||
| package com.pulumi.automation.events.internal; |
5 changes: 5 additions & 0 deletions
5
sdk/java/pulumi/src/main/java/com/pulumi/automation/events/package-info.java
This file contains hidden or 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,5 @@ | ||
| /** | ||
| * Provides types describing Pulumi engine events, such as changes to resources or diagnostic messages, for use in the Pulumi Automation API. | ||
| */ | ||
|
|
||
| package com.pulumi.automation.events; |
4 changes: 4 additions & 0 deletions
4
sdk/java/pulumi/src/main/java/com/pulumi/automation/package-info.java
This file contains hidden or 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 @@ | ||
| /** | ||
| * Provides the Pulumi Automation API, the programmatic interface for driving Pulumi programs, encapsulating the functionality of the CLI. | ||
| */ | ||
| package com.pulumi.automation; |
This file contains hidden or 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
sdk/java/pulumi/src/main/java/com/pulumi/automation/serialization/internal/package-info.java
This file contains hidden or 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 @@ | ||
| /** | ||
| * Provides internal serialization utilities and implementation details for Pulumi Automation API. | ||
| * <p> | ||
| * <b>Note:</b> This package is primarily for internal use and is not intended for direct use by end users. | ||
| */ | ||
| package com.pulumi.automation.serialization.internal; |
6 changes: 6 additions & 0 deletions
6
sdk/java/pulumi/src/main/java/com/pulumi/bootstrap/internal/package-info.java
This file contains hidden or 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 @@ | ||
| /** | ||
| * Internal bootstrap utilities for plugin discovery and metadata management. | ||
| * <p> | ||
| * <b>Note:</b> This package is primarily for internal use and is not intended for direct use by end users. | ||
| */ | ||
| package com.pulumi.bootstrap.internal; |
6 changes: 6 additions & 0 deletions
6
sdk/java/pulumi/src/main/java/com/pulumi/codegen/internal/package-info.java
This file contains hidden or 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 @@ | ||
| /** | ||
| * Contains internal utilities for code generation and serialization | ||
| * <p> | ||
| * <b>Note:</b> This package is primarily for internal use and is not intended for direct use by end users. | ||
| */ | ||
| package com.pulumi.codegen.internal; |
6 changes: 6 additions & 0 deletions
6
sdk/java/pulumi/src/main/java/com/pulumi/context/internal/package-info.java
This file contains hidden or 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 @@ | ||
| /** | ||
| * Provides internal context implementation classes. | ||
| * <p> | ||
| * <b>Note:</b> This package is primarily for internal use and is not intended for direct use by end users. | ||
| */ | ||
| package com.pulumi.context.internal; |
5 changes: 5 additions & 0 deletions
5
sdk/java/pulumi/src/main/java/com/pulumi/context/package-info.java
This file contains hidden or 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,5 @@ | ||
| /** | ||
| * Provides context interfaces for managing Pulumi program execution context, | ||
| * including configuration, logging, and runtime information. | ||
| */ | ||
| package com.pulumi.context; |
This file contains hidden or 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
sdk/java/pulumi/src/main/java/com/pulumi/core/annotations/package-info.java
This file contains hidden or 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 @@ | ||
| /** | ||
| * Provides annotations for resource and type metadata. | ||
| * <p> | ||
| * This package contains Java annotations for marking resources, | ||
| * configuring metadata, and providing type information for Pulumi resources. | ||
| */ | ||
| package com.pulumi.core.annotations; |
6 changes: 6 additions & 0 deletions
6
sdk/java/pulumi/src/main/java/com/pulumi/core/internal/annotations/package-info.java
This file contains hidden or 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 @@ | ||
| /** | ||
| * Contains internal annotations and metadata utilities. | ||
| * <p> | ||
| * <b>Note:</b> This package is primarily for internal use and is not intended for direct use by end users. | ||
| */ | ||
| package com.pulumi.core.internal.annotations; |
6 changes: 6 additions & 0 deletions
6
sdk/java/pulumi/src/main/java/com/pulumi/core/internal/package-info.java
This file contains hidden or 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 @@ | ||
| /** | ||
| * Internal utilities and classes for core functionality. | ||
| * <p> | ||
| * <b>Note:</b> This package is primarily for internal use and is not intended for direct use by end users. | ||
| */ | ||
| package com.pulumi.core.internal; |
4 changes: 4 additions & 0 deletions
4
sdk/java/pulumi/src/main/java/com/pulumi/core/package-info.java
This file contains hidden or 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 @@ | ||
| /** | ||
| * Provides core types and utility classes. | ||
| */ | ||
| package com.pulumi.core; |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
sdk/java/pulumi/src/main/java/com/pulumi/deployment/internal/package-info.java
This file contains hidden or 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 @@ | ||
| /** | ||
| * Provides internal deployment implementation for Pulumi stack deployment and resource management. | ||
| * <p> | ||
| * <b>Note:</b> This package is primarily for internal use and is not intended for direct use by end users. | ||
| */ | ||
| package com.pulumi.deployment.internal; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this be run in CI?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the review , present configuration is only for local development it is not set for CI but i will make changes for CI.