All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bimserver.plugins.WebModulePlugin Maven / Gradle / Ivy

Go to download

Base project for BIMserver plugin development. Some plugins mights also need the Shared library

The newest version!
package org.bimserver.plugins;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;

@XmlAccessorType(XmlAccessType.NONE)
public class WebModulePlugin extends AbstractPlugin {
	@XmlElement
	private String identifier;

	@XmlElement
	private String internalPath;
	
	public String getIdentifier() {
		return identifier;
	}

	public void setIdentifier(String identifier) {
		this.identifier = identifier;
	}

	public String getInternalPath() {
		return internalPath;
	}

	public void setInternalPath(String internalPath) {
		this.internalPath = internalPath;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy