Interface IConfiguration
-
- All Known Implementing Classes:
AzureConfiguration
,Configuration
,WSConfiguration
public interface IConfiguration
Interface representing Dermis Configuration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IAuthenticationConfig
getAuthentication()
Gets the authentication of this configuration.java.lang.String
getAuthenticationType()
Gets the authentication type of this configuration.java.lang.String
getDataSourceType()
Gets the connector type of this configuration.java.lang.String
getId()
Gets the id of the fdm configuration.java.lang.String
getName()
Gets the name of this configuration.java.lang.String
getPath()
Gets the path of this configuration.java.lang.String
getThumbnailPath()
Gets the thumbnail url of this configuration.java.lang.String
getTitle()
Gets the title of this configuration.java.lang.String
getUrl()
Gets the base url of this configuration.
-
-
-
Method Detail
-
getId
java.lang.String getId()
Gets the id of the fdm configuration.- Returns:
- the id of the fdm configuration.
-
getName
java.lang.String getName()
Gets the name of this configuration.- Returns:
- the name of this configuration.
-
getTitle
java.lang.String getTitle()
Gets the title of this configuration.- Returns:
- the title of this configuration.
-
getPath
java.lang.String getPath()
Gets the path of this configuration.- Returns:
- the path of this configuration.
-
getUrl
java.lang.String getUrl()
Gets the base url of this configuration.- Returns:
- the baseUrl of this configuration.
-
getDataSourceType
java.lang.String getDataSourceType()
Gets the connector type of this configuration.- Returns:
- the connector type of this configuration.
-
getAuthenticationType
java.lang.String getAuthenticationType()
Gets the authentication type of this configuration.- Returns:
- the authenticationType of this configuration.
-
getAuthentication
IAuthenticationConfig getAuthentication()
Gets the authentication of this configuration.- Returns:
- the authentication of this configuration.
-
getThumbnailPath
java.lang.String getThumbnailPath()
Gets the thumbnail url of this configuration.- Returns:
- the thumbnail url of this configuration.
-
-