A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
The elements that use this type designate the name of a Java class or interface. The name is in the form of a "binary name", as defined in the JLS. This is the form of name used in Class.forName(). Tools that need the canonical name (the name used in source code) will need to convert this binary nam...
public void testBuilderCannotLoadHandlerClass() {
List<PortComponentHandlerType> hc = createHandlerChainType();
hc.remove(3);
hc.remove(2);
hc.remove(1);
FullyQualifiedClassType type = new FullyQualifiedClassType();
type.setValue("no.such.class");
hc.get(0).setHandlerClass(type);
try {
builder.buildHandlerChainFromConfiguration(hc);
fail("did not get expected exception");