
org.bimserver.plugins.WebModulePlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pluginbase Show documentation
Show all versions of pluginbase Show documentation
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