blob: 07187833bea5343393f29aefb03c54a5919f068b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2013 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Johannes Faltermeier - initial API and implementation
******************************************************************************/
package org.eclipse.emf.emfstore.internal.client.startup;
import org.eclipse.emf.emfstore.internal.server.startup.UpdateXMIAttributeRule;
/**
* Migration rule to update a reference to a projectspace.
*
* @author jfaltermeier
*
*/
public class ProjectSpaceRule implements UpdateXMIAttributeRule {
/**
*
* {@inheritDoc}
*
* @see UpdateXMIAttributeRule#getNewAttribute(java.lang.String)
*/
public String getNewAttribute(String oldHRef) {
final String[] fragments = oldHRef.split("#"); //$NON-NLS-1$
final String id = fragments[1];
return "projectspaces/" + id + "/projectspace#" + id; //$NON-NLS-1$ //$NON-NLS-2$
}
}