| | |
| | | * CDDL HEADER END |
| | | * |
| | | * |
| | | * Copyright 2008 Sun Microsystems, Inc. |
| | | * Copyright 2008-2009 Sun Microsystems, Inc. |
| | | */ |
| | | package org.opends.server.workflowelement.localbackend; |
| | | |
| | |
| | | |
| | | // a lock to guarantee safe concurrent access to the registeredLocalBackends |
| | | // variable |
| | | private static Object registeredLocalBackendsLock = new Object(); |
| | | private static final Object registeredLocalBackendsLock = new Object(); |
| | | |
| | | |
| | | // A string indicating the type of the workflow element. |
| | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | @Override |
| | | public void finalizeWorkflowElement() |
| | | { |
| | | // null all fields so that any use of the finalized object will raise |
| | |
| | | * @return The backend associated with this local backend workflow |
| | | * element. |
| | | */ |
| | | Backend getBackend() |
| | | public Backend getBackend() |
| | | { |
| | | return backend; |
| | | } |