/** * Copyright 2010 JBoss Inc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.drools.command.runtime.rule; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import org.drools.command.Context; import org.drools.command.impl.GenericCommand; import org.drools.command.impl.KnowledgeCommandContext; import org.drools.common.DefaultFactHandle; import org.drools.runtime.impl.ExecutionResultImpl; import org.drools.runtime.rule.FactHandle; import org.drools.runtime.rule.WorkingMemoryEntryPoint; @XmlAccessorType(XmlAccessType.NONE) public class InsertObjectInEntryPointCommand implements GenericCommand<FactHandle> { private static final long serialVersionUID = 510l; @XmlElement private Object object; @XmlAttribute(name = "out-identifier", required = true) private String outIdentifier; private boolean returnObject = true; public InsertObjectInEntryPointCommand() { } public InsertObjectInEntryPointCommand(Object object) { this.object = object; } public InsertObjectInEntryPointCommand(Object object, String outIdentifier) { super(); this.object = object; this.outIdentifier = outIdentifier; } public FactHandle execute(Context context) { WorkingMemoryEntryPoint ep = ((KnowledgeCommandContext) context).getWorkingMemoryEntryPoint(); FactHandle factHandle = ep.insert(object); DefaultFactHandle disconectedHandle = new DefaultFactHandle(factHandle.toExternalForm()); if (outIdentifier != null) { if (this.returnObject) { ((ExecutionResultImpl) ((KnowledgeCommandContext) context).getExecutionResults()).getResults().put(this.outIdentifier, object); } ((ExecutionResultImpl) ((KnowledgeCommandContext) context).getExecutionResults()).getFactHandles().put(this.outIdentifier, disconectedHandle.toExternalForm()); } return disconectedHandle; } public void setObject(Object object) { this.object = object; } public Object getObject() { return this.object; } public String getOutIdentifier() { return this.outIdentifier; } public void setOutIdentifier(String outIdentifier) { this.outIdentifier = outIdentifier; } public boolean isReturnObject() { return returnObject; } public void setReturnObject(boolean returnObject) { this.returnObject = returnObject; } public String toString() { return "session.insert(" + object + ");"; } }