com.beaglesecurity.api.payloads.SignatureVerify Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of beagle-java-sdk Show documentation
Show all versions of beagle-java-sdk Show documentation
The Beagle Security SDK for Java provides Java APIs for building software for penetration testing using Beagle Security platform.
The newest version!
/**
* Copyright (c) Beagle Cyber Innovations Pvt. Ltd. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for
* license information.
*/
package com.beaglesecurity.api.payloads;
import com.beaglesecurity.entities.PluginType;
import com.beaglesecurity.entities.SignatureType;
public class SignatureVerify extends PayloadBase{
private String applicationToken;
private SignatureType signatureType;
private PluginType pluginType;
public String getApplicationToken() {
return applicationToken;
}
public void setApplicationToken(String applicationToken) {
this.applicationToken = applicationToken;
}
public SignatureType getSignatureType() {
return signatureType;
}
public void setSignatureType(SignatureType signatureType) {
this.signatureType = signatureType;
}
public PluginType getPluginType() {
return pluginType;
}
public void setPluginType(PluginType pluginType) {
this.pluginType = pluginType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy