All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.codegurusecurity.model.FilePath Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon CodeGuru Security module holds the client classes that are used for communicating with Amazon CodeGuru Security Service

The newest version!
/*
 * Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.codegurusecurity.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Information about the location of security vulnerabilities that Amazon CodeGuru Security detected in your code. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class FilePath implements Serializable, Cloneable, StructuredPojo { /** *

* A list of CodeLine objects that describe where the security vulnerability appears in your code. *

*/ private java.util.List codeSnippet; /** *

* The last line number of the code snippet where the security vulnerability appears in your code. *

*/ private Integer endLine; /** *

* The name of the file. *

*/ private String name; /** *

* The path to the resource with the security vulnerability. *

*/ private String path; /** *

* The first line number of the code snippet where the security vulnerability appears in your code. *

*/ private Integer startLine; /** *

* A list of CodeLine objects that describe where the security vulnerability appears in your code. *

* * @return A list of CodeLine objects that describe where the security vulnerability appears in your * code. */ public java.util.List getCodeSnippet() { return codeSnippet; } /** *

* A list of CodeLine objects that describe where the security vulnerability appears in your code. *

* * @param codeSnippet * A list of CodeLine objects that describe where the security vulnerability appears in your * code. */ public void setCodeSnippet(java.util.Collection codeSnippet) { if (codeSnippet == null) { this.codeSnippet = null; return; } this.codeSnippet = new java.util.ArrayList(codeSnippet); } /** *

* A list of CodeLine objects that describe where the security vulnerability appears in your code. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setCodeSnippet(java.util.Collection)} or {@link #withCodeSnippet(java.util.Collection)} if you want to * override the existing values. *

* * @param codeSnippet * A list of CodeLine objects that describe where the security vulnerability appears in your * code. * @return Returns a reference to this object so that method calls can be chained together. */ public FilePath withCodeSnippet(CodeLine... codeSnippet) { if (this.codeSnippet == null) { setCodeSnippet(new java.util.ArrayList(codeSnippet.length)); } for (CodeLine ele : codeSnippet) { this.codeSnippet.add(ele); } return this; } /** *

* A list of CodeLine objects that describe where the security vulnerability appears in your code. *

* * @param codeSnippet * A list of CodeLine objects that describe where the security vulnerability appears in your * code. * @return Returns a reference to this object so that method calls can be chained together. */ public FilePath withCodeSnippet(java.util.Collection codeSnippet) { setCodeSnippet(codeSnippet); return this; } /** *

* The last line number of the code snippet where the security vulnerability appears in your code. *

* * @param endLine * The last line number of the code snippet where the security vulnerability appears in your code. */ public void setEndLine(Integer endLine) { this.endLine = endLine; } /** *

* The last line number of the code snippet where the security vulnerability appears in your code. *

* * @return The last line number of the code snippet where the security vulnerability appears in your code. */ public Integer getEndLine() { return this.endLine; } /** *

* The last line number of the code snippet where the security vulnerability appears in your code. *

* * @param endLine * The last line number of the code snippet where the security vulnerability appears in your code. * @return Returns a reference to this object so that method calls can be chained together. */ public FilePath withEndLine(Integer endLine) { setEndLine(endLine); return this; } /** *

* The name of the file. *

* * @param name * The name of the file. */ public void setName(String name) { this.name = name; } /** *

* The name of the file. *

* * @return The name of the file. */ public String getName() { return this.name; } /** *

* The name of the file. *

* * @param name * The name of the file. * @return Returns a reference to this object so that method calls can be chained together. */ public FilePath withName(String name) { setName(name); return this; } /** *

* The path to the resource with the security vulnerability. *

* * @param path * The path to the resource with the security vulnerability. */ public void setPath(String path) { this.path = path; } /** *

* The path to the resource with the security vulnerability. *

* * @return The path to the resource with the security vulnerability. */ public String getPath() { return this.path; } /** *

* The path to the resource with the security vulnerability. *

* * @param path * The path to the resource with the security vulnerability. * @return Returns a reference to this object so that method calls can be chained together. */ public FilePath withPath(String path) { setPath(path); return this; } /** *

* The first line number of the code snippet where the security vulnerability appears in your code. *

* * @param startLine * The first line number of the code snippet where the security vulnerability appears in your code. */ public void setStartLine(Integer startLine) { this.startLine = startLine; } /** *

* The first line number of the code snippet where the security vulnerability appears in your code. *

* * @return The first line number of the code snippet where the security vulnerability appears in your code. */ public Integer getStartLine() { return this.startLine; } /** *

* The first line number of the code snippet where the security vulnerability appears in your code. *

* * @param startLine * The first line number of the code snippet where the security vulnerability appears in your code. * @return Returns a reference to this object so that method calls can be chained together. */ public FilePath withStartLine(Integer startLine) { setStartLine(startLine); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getCodeSnippet() != null) sb.append("CodeSnippet: ").append(getCodeSnippet()).append(","); if (getEndLine() != null) sb.append("EndLine: ").append(getEndLine()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getPath() != null) sb.append("Path: ").append(getPath()).append(","); if (getStartLine() != null) sb.append("StartLine: ").append(getStartLine()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof FilePath == false) return false; FilePath other = (FilePath) obj; if (other.getCodeSnippet() == null ^ this.getCodeSnippet() == null) return false; if (other.getCodeSnippet() != null && other.getCodeSnippet().equals(this.getCodeSnippet()) == false) return false; if (other.getEndLine() == null ^ this.getEndLine() == null) return false; if (other.getEndLine() != null && other.getEndLine().equals(this.getEndLine()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getPath() == null ^ this.getPath() == null) return false; if (other.getPath() != null && other.getPath().equals(this.getPath()) == false) return false; if (other.getStartLine() == null ^ this.getStartLine() == null) return false; if (other.getStartLine() != null && other.getStartLine().equals(this.getStartLine()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getCodeSnippet() == null) ? 0 : getCodeSnippet().hashCode()); hashCode = prime * hashCode + ((getEndLine() == null) ? 0 : getEndLine().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getPath() == null) ? 0 : getPath().hashCode()); hashCode = prime * hashCode + ((getStartLine() == null) ? 0 : getStartLine().hashCode()); return hashCode; } @Override public FilePath clone() { try { return (FilePath) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.codegurusecurity.model.transform.FilePathMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy