public void setAuthn(String deploymentName, Authn authn) { getSecurity(deploymentName).setAuthn(authn); }
public void setAuthn(String deploymentName, Authn authn) { getSecurity(deploymentName).setAuthn(authn); }
public Authn getAuthn(String deploymentName) { Security security = getSecurity(deploymentName); Authn result = security.getAuthn(); if (result == null) { result = new Authn(); security.setAuthn(result); } return result; }
public Authn getAuthn(String deploymentName) { Security security = getSecurity(deploymentName); Authn result = security.getAuthn(); if (result == null) { result = new Authn(); security.setAuthn(result); } return result; }