This piece in org.jboss.deployers.structure.spi.helpers.ComponentDeploymentContext
public ObjectName getObjectName()
| {
| if (objectName == null)
| {
| String name = getName();
| name = name.replace("\"", """);
| String temp = "jboss.deployment:id=\"" + name +
"\",type=Component";
| try
| {
| objectName = new ObjectName(temp);
| }
| catch (MalformedObjectNameException e)
| {
| throw new RuntimeException("Error creating object name: " +
temp, e);
| }
| }
| return objectName;
| }
|
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4226587#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...