Skip to content

Commit bc53dd2

Browse files
authored
Fix javadocs breaking build (#91)
1 parent 66eaba7 commit bc53dd2

File tree

6 files changed

+11
-3
lines changed

6 files changed

+11
-3
lines changed

halyard-config/src/main/java/com/netflix/spinnaker/halyard/config/model/v1/problem/Problem.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ public enum Severity {
5757
final private NodeFilter filter;
5858

5959
/**
60-
* Provides a human-readable filter interpretation
60+
* Provides a human-readable filter interpretation.
61+
*
62+
* @return the name of the filter in a human-readable format.
6163
*/
6264
public String getFilterTitle() {
6365
if (filter != null) {

halyard-config/src/main/java/com/netflix/spinnaker/halyard/config/model/v1/providers/appengine/AppengineAccount.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@
1919
import com.netflix.spinnaker.halyard.config.model.v1.node.LocalFile;
2020
import com.netflix.spinnaker.halyard.config.model.v1.providers.google.CommonGoogleAccount;
2121
import lombok.Data;
22+
import lombok.EqualsAndHashCode;
2223

2324
@Data
25+
@EqualsAndHashCode(callSuper = false)
2426
public class AppengineAccount extends CommonGoogleAccount {
2527
private String serviceAccountEmail;
2628
private String localRepositoryDirectory;

halyard-config/src/main/java/com/netflix/spinnaker/halyard/config/model/v1/providers/google/CommonGoogleAccount.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@
1919
import com.netflix.spinnaker.halyard.config.model.v1.node.Account;
2020
import com.netflix.spinnaker.halyard.config.model.v1.node.LocalFile;
2121
import lombok.Data;
22+
import lombok.EqualsAndHashCode;
2223

2324
@Data
25+
@EqualsAndHashCode(callSuper = false)
2426
public class CommonGoogleAccount extends Account {
2527
private String project;
2628
@LocalFile private String jsonPath;

halyard-config/src/main/java/com/netflix/spinnaker/halyard/config/services/v1/LookupService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class LookupService {
3636
* Given a node filter and a node type, find all nodes that match both the filter and the type of the Node.
3737
* @param filter is the filter to lookup by.
3838
* @param clazz is the class of the node type we want to find.
39-
* @return
39+
* @return the nodes matching the filter and clazz.
4040
*/
4141
public List<Node> getMatchingNodesOfType(NodeFilter filter, Class<? extends Node> clazz) {
4242
Halconfig halconfig = parser.getHalconfig(true);

halyard-deploy/src/main/java/com/netflix/spinnaker/halyard/deploy/provider/v1/ProviderInterface.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ public abstract class ProviderInterface<T extends Account> {
6060
Map<String, SpinnakerProfile> componentMap = null;
6161

6262
/**
63+
* @param details are the deployment details for the current deployment.
64+
* @param artifact is the artifact who's version to fetch.
6365
* @return the docker image/debian package/etc... for a certain profile.
6466
*/
6567
abstract protected String componentArtifact(DeploymentDetails<T> details, SpinnakerArtifact artifact);

halyard-deploy/src/main/java/com/netflix/spinnaker/halyard/deploy/spinnaker/v1/profile/SpinnakerProfile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
import java.util.stream.Collectors;
4343

4444
/**
45-
* A profile is a specialization of an artifact by means of feature flipping in .js & .yml
45+
* A profile is a specialization of an artifact by means of feature flipping in .js and .yml
4646
* files.
4747
*/
4848
abstract public class SpinnakerProfile {

0 commit comments

Comments
 (0)