All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.genexus.ws.security.GXWSSecurityKeyStore Maven / Gradle / Ivy

Go to download

Core classes for the runtime used by Java and Android apps generated with GeneXus

There is a newer version: 4.7.3
Show newest version
package com.genexus.ws.security;

import com.genexus.common.interfaces.IGXWSSecurityKeyStore;

public class GXWSSecurityKeyStore implements IGXWSSecurityKeyStore
{
	private String type;
	private String password;
	private String source;

	public GXWSSecurityKeyStore()
	{
		type = "";
		password = "";
		source = "";
	}

	public String getType()
	{
		return type;
	}

	public void setType(String type)
	{
		this.type = type.trim();
	}

	public String getPassword()
	{
		return password;
	}

	public void setPassword(String password)
	{
		this.password = password.trim();
	}
	
	public String getSource()
	{
		return source;
	}

	public void setSource(String source)
	{
		this.source = source.trim();
	}	
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy