001/*
002 * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 */
011
012package org.nuxeo.ecm.automation.jsf.operations;
013
014import org.nuxeo.ecm.automation.core.Constants;
015import org.nuxeo.ecm.automation.core.annotations.Operation;
016import org.nuxeo.ecm.automation.core.annotations.OperationMethod;
017import org.nuxeo.ecm.automation.jsf.OperationHelper;
018import org.nuxeo.ecm.core.api.DocumentModel;
019
020/**
021 * @author <a href="mailto:td@nuxeo.com">Thierry Delprat</a>
022 */
023@Operation(id = GetCurrentDomain.ID, category = Constants.CAT_FETCH, requires = Constants.SEAM_CONTEXT, label = "UI Current Domain", description = "Get the current Domain from the UI context.")
024public class GetCurrentDomain {
025
026    public static final String ID = "Seam.GetCurrentDomain";
027
028    @OperationMethod
029    public DocumentModel run() {
030        return OperationHelper.getNavigationContext().getCurrentDomain();
031    }
032
033}