
org.bimserver.shared.interfaces.PluginInterfaceAdaptor 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
package org.bimserver.shared.interfaces;
/******************************************************************************
* Copyright (C) 2009-2016 BIMserver.org
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see {@literal }.
*****************************************************************************/
import org.bimserver.shared.exceptions.UserException;
import org.bimserver.shared.exceptions.ServerException;
public class PluginInterfaceAdaptor implements org.bimserver.shared.interfaces.PluginInterface {
public void addDeserializer(org.bimserver.interfaces.objects.SDeserializerPluginConfiguration deserializer) throws UserException, ServerException {
}
public void addInternalService(org.bimserver.interfaces.objects.SInternalServicePluginConfiguration internalService) throws UserException, ServerException {
}
public void addModelCompare(org.bimserver.interfaces.objects.SModelComparePluginConfiguration modelCompare) throws UserException, ServerException {
}
public void addModelMerger(org.bimserver.interfaces.objects.SModelMergerPluginConfiguration modelMerger) throws UserException, ServerException {
}
public void addObjectIDM(org.bimserver.interfaces.objects.SObjectIDMPluginConfiguration objectIDM) throws UserException, ServerException {
}
public void addQueryEngine(org.bimserver.interfaces.objects.SQueryEnginePluginConfiguration queryEngine) throws UserException, ServerException {
}
public void addRenderEngine(org.bimserver.interfaces.objects.SRenderEnginePluginConfiguration renderEngine) throws UserException, ServerException {
}
public void addSerializer(org.bimserver.interfaces.objects.SSerializerPluginConfiguration serializer) throws UserException, ServerException {
}
public void deleteDeserializer(java.lang.Long sid) throws UserException, ServerException {
}
public void deleteInternalService(java.lang.Long oid) throws UserException, ServerException {
}
public void deleteModelChecker(java.lang.Long iid) throws UserException, ServerException {
}
public void deleteModelCompare(java.lang.Long iid) throws UserException, ServerException {
}
public void deleteModelMerger(java.lang.Long iid) throws UserException, ServerException {
}
public void deleteObjectIDM(java.lang.Long oid) throws UserException, ServerException {
}
public void deleteQueryEngine(java.lang.Long iid) throws UserException, ServerException {
}
public void deleteRenderEngine(java.lang.Long iid) throws UserException, ServerException {
}
public void deleteSerializer(java.lang.Long sid) throws UserException, ServerException {
}
public java.util.List getAllDeserializerPluginDescriptors() throws UserException, ServerException {
return null;
}
public java.util.List getAllDeserializers(java.lang.Boolean onlyEnabled) throws UserException, ServerException {
return null;
}
public java.util.List getAllDeserializersForProject(java.lang.Boolean onlyEnabled, java.lang.Long poid) throws UserException, ServerException {
return null;
}
public java.util.List getAllInternalServices(java.lang.Boolean onlyEnabled) throws UserException, ServerException {
return null;
}
public java.util.List getAllModelCheckerPluginDescriptors() throws UserException, ServerException {
return null;
}
public java.util.List getAllModelComparePluginDescriptors() throws UserException, ServerException {
return null;
}
public java.util.List getAllModelCompares(java.lang.Boolean onlyEnabled) throws UserException, ServerException {
return null;
}
public java.util.List getAllModelMergerPluginDescriptors() throws UserException, ServerException {
return null;
}
public java.util.List getAllModelMergers(java.lang.Boolean onlyEnabled) throws UserException, ServerException {
return null;
}
public java.util.List getAllObjectIDMPluginDescriptors() throws UserException, ServerException {
return null;
}
public java.util.List getAllObjectIDMs(java.lang.Boolean onlyEnabled) throws UserException, ServerException {
return null;
}
public java.util.List getAllQueryEnginePluginDescriptors() throws UserException, ServerException {
return null;
}
public java.util.List getAllQueryEngines(java.lang.Boolean onlyEnabled) throws UserException, ServerException {
return null;
}
public java.util.List getAllRenderEnginePluginDescriptors() throws UserException, ServerException {
return null;
}
public java.util.List getAllRenderEngines(java.lang.Boolean onlyEnabled) throws UserException, ServerException {
return null;
}
public java.util.List getAllSerializerPluginDescriptors() throws UserException, ServerException {
return null;
}
public java.util.List getAllSerializers(java.lang.Boolean onlyEnabled) throws UserException, ServerException {
return null;
}
public java.util.List getAllSerializersForRoids(java.lang.Boolean onlyEnabled, java.util.Set roids) throws UserException, ServerException {
return null;
}
public java.util.List getAllServicePluginDescriptors() throws UserException, ServerException {
return null;
}
public java.util.List getAllWebModulePluginDescriptors() throws UserException, ServerException {
return null;
}
public java.util.List getAllWebModules(java.lang.Boolean onlyEnabled) throws UserException, ServerException {
return null;
}
public java.util.List getAvailablePlugins() throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SModelComparePluginConfiguration getDefaultModelCompare() throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SModelMergerPluginConfiguration getDefaultModelMerger() throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SObjectIDMPluginConfiguration getDefaultObjectIDM() throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SQueryEnginePluginConfiguration getDefaultQueryEngine() throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SRenderEnginePluginConfiguration getDefaultRenderEngine() throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SSerializerPluginConfiguration getDefaultSerializer() throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SWebModulePluginConfiguration getDefaultWebModule() throws UserException, ServerException {
return null;
}
public java.util.List getInstalledPlugins() throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SInternalServicePluginConfiguration getInternalServiceById(java.lang.Long oid) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SMessagingSerializerPluginConfiguration getMessagingSerializerByPluginClassName(java.lang.String pluginClassName) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SModelComparePluginConfiguration getModelCompareById(java.lang.Long oid) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SModelComparePluginConfiguration getModelCompareByName(java.lang.String name) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SModelMergerPluginConfiguration getModelMergerById(java.lang.Long oid) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SModelMergerPluginConfiguration getModelMergerByName(java.lang.String name) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SObjectIDMPluginConfiguration getObjectIDMById(java.lang.Long oid) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SObjectIDMPluginConfiguration getObjectIDMByName(java.lang.String objectIDMName) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SPluginDescriptor getPluginDescriptor(java.lang.Long oid) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SObjectDefinition getPluginObjectDefinition(java.lang.Long oid) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SObjectType getPluginSettings(java.lang.Long poid) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SRenderEnginePluginConfiguration getRenderEngineById(java.lang.Long oid) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SRenderEnginePluginConfiguration getRenderEngineByName(java.lang.String name) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SSerializerPluginConfiguration getSerializerByPluginClassName(java.lang.String pluginClassName) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SSerializerPluginDescriptor getSerializerPluginDescriptor(java.lang.String type) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SWebModulePluginConfiguration getWebModuleById(java.lang.Long oid) throws UserException, ServerException {
return null;
}
public org.bimserver.interfaces.objects.SWebModulePluginConfiguration getWebModuleByName(java.lang.String name) throws UserException, ServerException {
return null;
}
public java.lang.Boolean hasActiveSerializer(java.lang.String contentType) throws UserException, ServerException {
return null;
}
public void installPlugin(java.lang.String repository, java.lang.String groupId, java.lang.String artifactId, java.lang.String version) throws UserException, ServerException {
}
public void setDefaultModelCompare(java.lang.Long oid) throws UserException, ServerException {
}
public void setDefaultModelMerger(java.lang.Long oid) throws UserException, ServerException {
}
public void setDefaultObjectIDM(java.lang.Long oid) throws UserException, ServerException {
}
public void setDefaultQueryEngine(java.lang.Long oid) throws UserException, ServerException {
}
public void setDefaultRenderEngine(java.lang.Long oid) throws UserException, ServerException {
}
public void setDefaultSerializer(java.lang.Long oid) throws UserException, ServerException {
}
public void setDefaultWebModule(java.lang.Long oid) throws UserException, ServerException {
}
public void setPluginSettings(java.lang.Long poid, org.bimserver.interfaces.objects.SObjectType settings) throws UserException, ServerException {
}
public java.lang.Long startGetPluginUpdateInformation() throws UserException, ServerException {
return null;
}
public void uninstallPlugin(java.lang.String repository, java.lang.String groupId, java.lang.String artifactId, java.lang.String version) throws UserException, ServerException {
}
public void updateDeserializer(org.bimserver.interfaces.objects.SDeserializerPluginConfiguration deserializer) throws UserException, ServerException {
}
public void updateInternalService(org.bimserver.interfaces.objects.SInternalServicePluginConfiguration internalService) throws UserException, ServerException {
}
public void updateModelCompare(org.bimserver.interfaces.objects.SModelComparePluginConfiguration modelCompare) throws UserException, ServerException {
}
public void updateModelMerger(org.bimserver.interfaces.objects.SModelMergerPluginConfiguration modelMerger) throws UserException, ServerException {
}
public void updateObjectIDM(org.bimserver.interfaces.objects.SObjectIDMPluginConfiguration objectIDM) throws UserException, ServerException {
}
public void updateQueryEngine(org.bimserver.interfaces.objects.SQueryEnginePluginConfiguration queryEngine) throws UserException, ServerException {
}
public void updateRenderEngine(org.bimserver.interfaces.objects.SRenderEnginePluginConfiguration renderEngine) throws UserException, ServerException {
}
public void updateSerializer(org.bimserver.interfaces.objects.SSerializerPluginConfiguration serializer) throws UserException, ServerException {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy