Magentix2
2.1.1
|
Public Member Functions | |
String | getOMSServiceDescriptionLocation () |
String | getSFServiceDescriptionLocation () |
int | getBridgeHttpPort () |
int | getHttpInterfacepPort () |
boolean | getIsTomcat () |
String | getOS () |
String | getPathTomcat () |
String | getdatabaseServer () |
String | getdatabaseName () |
String | getdatabaseUser () |
String | getdatabasePassword () |
String | getqpidHost () |
int | getqpidPort () |
String | getqpidVhost () |
String | getqpidUser () |
String | getqpidPassword () |
boolean | getqpidSSL () |
boolean | isSecureMode () |
String | getqpidsaslMechs () |
String | getjenadbURL () |
String | getjenadbType () |
String | getjenadbDriver () |
String | getTraceMask () |
Static Public Member Functions | |
static Configuration | getConfiguration () |
This class reads the contents of Settings.xml file that found in the configuration directory
Definition at line 12 of file Configuration.java.
Http port where BridgeAgentOutIn runs.
Definition at line 84 of file Configuration.java.
{
return this.Bridge_http_port;
}
static Configuration es.upv.dsic.gti_ia.organization.Configuration.getConfiguration | ( | ) | [static] |
This method returns the instance configuration using singleton
Definition at line 55 of file Configuration.java.
{ if (configuration == null) configuration = new Configuration(); return configuration; }
Name of the database
Definition at line 138 of file Configuration.java.
{
return this.databaseName;
}
User password of the database
Definition at line 156 of file Configuration.java.
{
return this.databasePassword;
}
Name of the database server
Definition at line 129 of file Configuration.java.
{
return this.databaseServer;
}
User name of the database
Definition at line 147 of file Configuration.java.
{
return this.databaseUser;
}
Http port where HttpInterface runs.
Definition at line 93 of file Configuration.java.
{
return this.HttpInterface_port;
}
If TOMCAT is active
Definition at line 102 of file Configuration.java.
{
return this.isTomcat;
}
Driver of jena database
Definition at line 256 of file Configuration.java.
{
return this.jenadbDriver;
}
Type of jena database
Definition at line 247 of file Configuration.java.
{
return this.jenadbType;
}
Jena database URL
Definition at line 238 of file Configuration.java.
{
return this.jenadbURL;
}
Full path where are the owl's deployed the services of the OMS
Definition at line 66 of file Configuration.java.
{
return this.OMSServiceDescriptionLocation;
}
Path where the TOMCAT is located
Definition at line 111 of file Configuration.java.
{
return this.os;
}
Path where the TOMCAT is located
Definition at line 120 of file Configuration.java.
{
return this.pathTomcat;
}
Qpid host
Definition at line 165 of file Configuration.java.
{
return this.qpidHost;
}
Qpid user password
Definition at line 203 of file Configuration.java.
{
return this.qpidPassword;
}
Virtual Qpid host
Definition at line 185 of file Configuration.java.
{
return this.qpidVhost;
}
Full path where are the owl's deployed the services of the SF
Definition at line 75 of file Configuration.java.
{
return this.SFServiceDescriptionLocation;
}
Initial mask of the TraceManager.
Definition at line 265 of file Configuration.java.
{ return new String(this.traceMask); }
If the platform is in secure mode or not
Definition at line 222 of file Configuration.java.
{
return this.isSecure;
}