/**
* The alias to add under.
*
* @param alias alias to add under
*/
/**
* the alias to sign under; required
*
* @param alias the alias to sign under
*/
public void setAlias( final String alias) {
this.alias = alias;
}
/**
* Keystore location.
*
* @param keystore location
*/
/**
* keystore location; required
*
* @param keystore the keystore location
*/
public void setKeystore( final String keystore) {
this.keystore = keystore;
}
/**
* Password for keystore integrity.
* Must be at least 6 characters long.
* @param storepass password
*/
/**
* password for keystore integrity; required
*
* @param storepass the password for the keystore
*/
public void setStorepass( final String storepass) {
this.storepass = storepass;
}
/**
* Keystore type.
*
* @param storetype type
*/
/**
* keystore type; optional
*
* @param storetype the keystore type
*/
public void setStoretype( final String storetype) {
this.storetype = storetype;
}
/**
* Password for private key (if different).
*
* @param keypass password
*/
/**
* password for private key (if different); optional
*
* @param keypass the password for the key (if different)
*/
public void setKeypass( final String keypass) {
this.keypass = keypass;
}
/**
* The algorithm to use in signing.
*
* @param sigalg algorithm
*/
/**
* Enable verbose output when signing ; optional: default false
*
* @param verbose if true enable verbose output
*/
public void [[#variablefdf26e0]]( final [[#variable111efae0]] [[#variable111efa80]]) {
this. [[#variable111efa80]]= [[#variable111efa80]];
}
|