blob: eebf5d5d7ab48d7317748b2013d5e4a27774d6a6 [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2021 the Eclipse BaSyx Authors
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
******************************************************************************/
package org.eclipse.basyx.submodel.metamodel.connected.submodelelement.dataelement;
import org.eclipse.basyx.submodel.metamodel.api.reference.enums.KeyElements;
import org.eclipse.basyx.submodel.metamodel.api.submodelelement.dataelement.IFile;
import org.eclipse.basyx.submodel.metamodel.map.submodelelement.dataelement.File;
import org.eclipse.basyx.submodel.metamodel.map.submodelelement.dataelement.property.Property;
import org.eclipse.basyx.vab.modelprovider.VABElementProxy;
/**
* "Connected" implementation of IFile
* @author rajashek
*
*/
public class ConnectedFile extends ConnectedDataElement implements IFile {
public ConnectedFile(VABElementProxy proxy) {
super(proxy);
}
@Override
public String getValue() {
// FIXME: This is a hack, fix this when API is clear
return (String) getProxy().getModelPropertyValue(Property.VALUE);
}
@Override
public String getMimeType() {
return (String) getElem().get(File.MIMETYPE);
}
@Override
protected KeyElements getKeyElement() {
return KeyElements.FILE;
}
@Override
public File getLocalCopy() {
return File.createAsFacade(getElem()).getLocalCopy();
}
@Override
public void setValue(String value) {
setValue((Object) value);
}
}