com.genexus.ws.security.GXWSEncryption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxclassR Show documentation
Show all versions of gxclassR Show documentation
Core classes for the runtime used by Java and Android apps generated with GeneXus
package com.genexus.ws.security;
import com.genexus.common.interfaces.IGXWSEncryption;
import com.genexus.common.interfaces.IGXWSSecurityKeyStore;
public class GXWSEncryption implements IGXWSEncryption
{
private IGXWSSecurityKeyStore keystore;
private String alias;
private int keyIdentifierType;
public GXWSEncryption()
{
alias = "";
keystore = new GXWSSecurityKeyStore();
}
public String getAlias()
{
return alias;
}
public void setAlias(String alias)
{
this.alias = alias.trim();
}
public IGXWSSecurityKeyStore getKeystore()
{
return keystore;
}
public void setKeystore(IGXWSSecurityKeyStore keystore)
{
this.keystore = keystore;
}
public int getKeyIdentifierType()
{
return keyIdentifierType;
}
public void setKeyIdentifierType(int keyIdentifierType)
{
this.keyIdentifierType = keyIdentifierType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy