/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* A utility class to expand properties embedded in a string.
* Strings of the form ${some.property.name} are expanded to
* be the value of the property. Also, the special ${/} property
* is expanded to be the same as file.separator. If a property
* is not set, a GeneralSecurityException will be thrown.
*
* @author Roland Schemers
*/
public class PropertyExpander {
super(msg);
}
}
throws ExpandException
{
}
throws ExpandException
{
return null;
// no special characters
if (p == -1) return value;
int i = 0; // index of last character we copied
while (p < max) {
if (p > i) {
// copy in anything before the special stuff
i = p;
}
int pe = p+2;
// do not expand ${{ ... }}
// append remaining chars
break scanner;
} else {
// append as normal text
pe++;
}
} else {
pe++;
}
// no matching '}' found, just add in as normal text
break scanner;
}
} else {
if (encodeURL) {
// encode 'val' unless it's an absolute URI
// at the beginning of the string buffer
try {
}
} catch (URISyntaxException use) {
}
}
} else {
throw new ExpandException(
"unable to expand property " +
prop);
}
}
}
i = pe+1;
if (p == -1) {
// no more to expand. copy in any extra
if (i < max) {
}
// break out of loop
break scanner;
}
}
}
}