001/*
002 * (C) Copyright 2006-2009 Nuxeo SAS (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Nuxeo - initial API and implementation
016 *
017 * $Id$
018 */
019
020package org.nuxeo.ecm.admin.url;
021
022import java.util.ArrayList;
023import java.util.List;
024
025import org.nuxeo.ecm.platform.url.api.DocumentView;
026import org.nuxeo.ecm.platform.url.service.AbstractDocumentViewCodec;
027
028/**
029 * Should provide a url binding for admin screens
030 *
031 * @author tiry
032 */
033public class AdminViewCodec extends AbstractDocumentViewCodec {
034
035    public static final String PREFIX = "nxadm";
036
037    // url = /nxadm/viewId/tab/subTab
038
039    public AdminViewCodec() {
040    }
041
042    public AdminViewCodec(String prefix) {
043        this.prefix = prefix;
044    }
045
046    @Override
047    public String getPrefix() {
048        if (prefix != null) {
049            return prefix;
050        }
051        return PREFIX;
052    }
053
054    @Override
055    public DocumentView getDocumentViewFromUrl(String url) {
056        // TODO Auto-generated method stub
057        return null;
058    }
059
060    @Override
061    public String getUrlFromDocumentView(DocumentView docView) {
062        String viewId = docView.getViewId();
063        List<String> items = new ArrayList<String>();
064
065        items.add(getPrefix());
066        items.add(viewId);
067
068        return null;
069    }
070
071}