blob: 50645238826f52484523a6ff2cd686b5859b96c6 [file] [log] [blame]
package org.apache.maven.shared.jarsigner;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License 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.
*/
import java.io.File;
/**
* Specifies the parameters used to control a jar signer sign operation invocation.
*
* @author Tony Chemit
* @since 1.0
*/
public class JarSignerSignRequest
extends AbstractJarSignerRequest
{
/**
* See <a href="http://docs.oracle.com/javase/6/docs/technotes/tools/windows/jarsigner.html#Options">options</a>.
*/
private String keypass;
/**
* See <a href="http://docs.oracle.com/javase/6/docs/technotes/tools/windows/jarsigner.html#Options">options</a>.
*/
private String sigfile;
/**
* See <a href="http://docs.oracle.com/javase/6/docs/technotes/tools/windows/jarsigner.html#Options">options</a>.
*/
private String tsaLocation;
/**
* See <a href="http://docs.oracle.com/javase/6/docs/technotes/tools/windows/jarsigner.html#Options">options</a>.
*/
private String tsaAlias;
/**
* See <a href="http://docs.oracle.com/javase/6/docs/technotes/tools/windows/jarsigner.html#Options">options</a>.
*/
protected File signedjar;
/**
* Location of the extra certchain file to be used during signing.
*
* See <a href="http://docs.oracle.com/javase/7/docs/technotes/tools/windows/jarsigner.html#Options">options</a>.
* @since 3.0.0
*/
protected File certchain;
public String getKeypass()
{
return keypass;
}
public String getSigfile()
{
return sigfile;
}
public String getTsaLocation()
{
return tsaLocation;
}
public String getTsaAlias()
{
return tsaAlias;
}
public void setKeypass( String keypass )
{
this.keypass = keypass;
}
public void setSigfile( String sigfile )
{
this.sigfile = sigfile;
}
public void setTsaLocation( String tsaLocation )
{
this.tsaLocation = tsaLocation;
}
public void setTsaAlias( String tsaAlias )
{
this.tsaAlias = tsaAlias;
}
public File getSignedjar()
{
return signedjar;
}
public void setSignedjar( File signedjar )
{
this.signedjar = signedjar;
}
/**
* Sets certchain to be used.
*
* @param certchain Cert Chain file path or {@code null} to remove the option
* @since 3.0.0
*/
public void setCertchain( File certchain )
{
this.certchain = certchain;
}
/**
* Get certificate chain.
* @return Path to the certificate chain file or {@code null} if undefined
*/
public File getCertchain()
{
return certchain;
}
}