Package de.gematik
Class BaseMojo
- java.lang.Object
-
- org.apache.maven.plugin.AbstractMojo
-
- de.gematik.BaseMojo
-
- All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled,org.apache.maven.plugin.Mojo
- Direct Known Subclasses:
CheckMojo,CombineMojo,PrepareItemsMojo
public abstract class BaseMojo extends org.apache.maven.plugin.AbstractMojo
-
-
Field Summary
Fields Modifier and Type Field Description static StringGENERATED_COMBINE_ITEMS_DIRPath to the directory where the combined items get stored
-
Constructor Summary
Constructors Constructor Description BaseMojo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClientCertStore()Path to truststoreStringgetClientCertStorePw()Path to truststoreStringgetCombineItemsFile()Path to file that contains the values to combineStringgetTruststore()Path to truststoreStringgetTruststorePw()Path to truststorevoidsetClientCertStore(String clientCertStore)Path to truststorevoidsetClientCertStorePw(String clientCertStorePw)Path to truststorevoidsetCombineItemsFile(String combineItemsFile)Path to file that contains the values to combinevoidsetTruststore(String truststore)Path to truststorevoidsetTruststorePw(String truststorePw)Path to truststore-
Methods inherited from class org.apache.maven.plugin.AbstractMojo
getLog, getPluginContext, setLog, setPluginContext
-
-
-
-
Field Detail
-
GENERATED_COMBINE_ITEMS_DIR
public static final String GENERATED_COMBINE_ITEMS_DIR
Path to the directory where the combined items get stored
-
-
Method Detail
-
getCombineItemsFile
public String getCombineItemsFile()
Path to file that contains the values to combine
-
getTruststore
public String getTruststore()
Path to truststore
-
getTruststorePw
public String getTruststorePw()
Path to truststore
-
getClientCertStore
public String getClientCertStore()
Path to truststore
-
getClientCertStorePw
public String getClientCertStorePw()
Path to truststore
-
setCombineItemsFile
public void setCombineItemsFile(String combineItemsFile)
Path to file that contains the values to combine
-
setTruststore
public void setTruststore(String truststore)
Path to truststore
-
setTruststorePw
public void setTruststorePw(String truststorePw)
Path to truststore
-
setClientCertStore
public void setClientCertStore(String clientCertStore)
Path to truststore
-
setClientCertStorePw
public void setClientCertStorePw(String clientCertStorePw)
Path to truststore
-
-