com.appsec.maven.wsit.Certstore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wsit-maven-plugin Show documentation
Show all versions of wsit-maven-plugin Show documentation
Provides maven goals for generating WSIT client and server side configuration.
/**
* WSIT Build Tools (http://wsitbt.codeplex.com)
*
* Copyright (c) 2011 Application Security, Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Application Security, Inc.
*/
package com.appsec.maven.wsit;
public final class Certstore
{
/**
* Specify the cerstore callback handler class.
*
* @parameter
*/
private String callbackHandler;
/**
* The certificate selector
*
* @parameter
*/
private String certSelector;
public String getCallbackHandler()
{
return callbackHandler;
}
public String getCertSelector()
{
return certSelector;
}
public void setCallbackHandler(String callbackHandler)
{
this.callbackHandler = callbackHandler;
}
public void setCertSelector(String certSelector)
{
this.certSelector = certSelector;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy