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

org.bimserver.models.store.InternalServicePluginConfiguration Maven / Gradle / Ivy

Go to download

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

The newest version!
/**
 * Copyright (C) 2009-2014 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 .
 */
package org.bimserver.models.store;

/**
 * 
 * A representation of the model object 'Internal Service Plugin Configuration'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.store.InternalServicePluginConfiguration#isRemoteAccessible Remote Accessible}
  • *
  • {@link org.bimserver.models.store.InternalServicePluginConfiguration#getUserSettings User Settings}
  • *
  • {@link org.bimserver.models.store.InternalServicePluginConfiguration#isPublicProfile Public Profile}
  • *
* * @see org.bimserver.models.store.StorePackage#getInternalServicePluginConfiguration() * @model * @generated */ public interface InternalServicePluginConfiguration extends PluginConfiguration { /** * Returns the value of the 'Remote Accessible' attribute. * *

* If the meaning of the 'Remote Accessible' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Remote Accessible' attribute. * @see #setRemoteAccessible(boolean) * @see org.bimserver.models.store.StorePackage#getInternalServicePluginConfiguration_RemoteAccessible() * @model * @generated */ boolean isRemoteAccessible(); /** * Sets the value of the '{@link org.bimserver.models.store.InternalServicePluginConfiguration#isRemoteAccessible Remote Accessible}' attribute. * * * @param value the new value of the 'Remote Accessible' attribute. * @see #isRemoteAccessible() * @generated */ void setRemoteAccessible(boolean value); /** * Returns the value of the 'User Settings' reference. * It is bidirectional and its opposite is '{@link org.bimserver.models.store.UserSettings#getServices Services}'. * *

* If the meaning of the 'User Settings' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'User Settings' reference. * @see #setUserSettings(UserSettings) * @see org.bimserver.models.store.StorePackage#getInternalServicePluginConfiguration_UserSettings() * @see org.bimserver.models.store.UserSettings#getServices * @model opposite="services" * @generated */ UserSettings getUserSettings(); /** * Sets the value of the '{@link org.bimserver.models.store.InternalServicePluginConfiguration#getUserSettings User Settings}' reference. * * * @param value the new value of the 'User Settings' reference. * @see #getUserSettings() * @generated */ void setUserSettings(UserSettings value); /** * Returns the value of the 'Public Profile' attribute. * *

* If the meaning of the 'Public Profile' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Public Profile' attribute. * @see #setPublicProfile(boolean) * @see org.bimserver.models.store.StorePackage#getInternalServicePluginConfiguration_PublicProfile() * @model * @generated */ boolean isPublicProfile(); /** * Sets the value of the '{@link org.bimserver.models.store.InternalServicePluginConfiguration#isPublicProfile Public Profile}' attribute. * * * @param value the new value of the 'Public Profile' attribute. * @see #isPublicProfile() * @generated */ void setPublicProfile(boolean value); } // InternalServicePluginConfiguration




© 2015 - 2025 Weber Informatics LLC | Privacy Policy