public abstract class org.springframework.util.SystemPropertyUtils extends java.lang.Object
{
public static final java.lang.String PLACEHOLDER_PREFIX;
public static final java.lang.String PLACEHOLDER_SUFFIX;
public static final java.lang.String VALUE_SEPARATOR;
private static final org.springframework.util.PropertyPlaceholderHelper strictHelper;
private static final org.springframework.util.PropertyPlaceholderHelper nonStrictHelper;
public void <init>()
{
org.springframework.util.SystemPropertyUtils v;
v := @this: org.springframework.util.SystemPropertyUtils;
specialinvoke v.<java.lang.Object: void <init>()>();
return;
}
public static java.lang.String resolvePlaceholders(java.lang.String)
{
java.lang.String v, v;
v := @parameter: java.lang.String;
v = staticinvoke <org.springframework.util.SystemPropertyUtils: java.lang.String resolvePlaceholders(java.lang.String,boolean)>(v, 0);
return v;
}
public static java.lang.String resolvePlaceholders(java.lang.String, boolean)
{
org.springframework.util.PropertyPlaceholderHelper v;
java.lang.String v, v;
org.springframework.util.SystemPropertyUtils$SystemPropertyPlaceholderResolver v;
boolean v;
v := @parameter: java.lang.String;
v := @parameter: boolean;
if v == 0 goto label;
v = <org.springframework.util.SystemPropertyUtils: org.springframework.util.PropertyPlaceholderHelper nonStrictHelper>;
goto label;
label:
v = <org.springframework.util.SystemPropertyUtils: org.springframework.util.PropertyPlaceholderHelper strictHelper>;
label:
v = new org.springframework.util.SystemPropertyUtils$SystemPropertyPlaceholderResolver;
specialinvoke v.<org.springframework.util.SystemPropertyUtils$SystemPropertyPlaceholderResolver: void <init>(java.lang.String)>(v);
v = virtualinvoke v.<org.springframework.util.PropertyPlaceholderHelper: java.lang.String replacePlaceholders(java.lang.String,org.springframework.util.PropertyPlaceholderHelper$PlaceholderResolver)>(v, v);
return v;
}
static void <clinit>()
{
org.springframework.util.PropertyPlaceholderHelper v, v;
v = new org.springframework.util.PropertyPlaceholderHelper;
specialinvoke v.<org.springframework.util.PropertyPlaceholderHelper: void <init>(java.lang.String,java.lang.String,java.lang.String,boolean)>("${", "}", ":", 0);
<org.springframework.util.SystemPropertyUtils: org.springframework.util.PropertyPlaceholderHelper strictHelper> = v;
v = new org.springframework.util.PropertyPlaceholderHelper;
specialinvoke v.<org.springframework.util.PropertyPlaceholderHelper: void <init>(java.lang.String,java.lang.String,java.lang.String,boolean)>("${", "}", ":", 1);
<org.springframework.util.SystemPropertyUtils: org.springframework.util.PropertyPlaceholderHelper nonStrictHelper> = v;
return;
}
}