} else if (value.equals("host")) {
this.authorization = HostAuthorization.getInstance();
} else if (value.equals("none")) {
this.authorization = NoAuthorization.getInstance();
} else if (authorization == null) {
this.authorization = new IdentityAuthorization(value);
}
}
}
// Anonymous