gluu
静的公開メンバ関数 | 静的公開変数類 | 全メンバ一覧
org.gluu.oxtrust.util.ProductInstallationChecker クラス
org.gluu.oxtrust.util.ProductInstallationChecker 連携図
Collaboration graph

静的公開メンバ関数

static boolean isGluuCE ()
 
static boolean isOxAsimbaInstalled ()
 
static boolean isOxAuthInstalled ()
 
static boolean isOxTrustInstalled ()
 
static boolean isShibbolethIDP2Installed ()
 
static boolean isShibbolethIDP3Installed ()
 
static boolean isCASInstalled ()
 

静的公開変数類

static final String GLUU_CE_PATH = "/install/community-edition-setup"
 
static final String OXASIMBA_PATH = "/opt/gluu/jetty/asimba/webapps/asimba.war"
 
static final String OXAUTH_PATH = "/opt/gluu/jetty/oxauth/webapps/oxauth.war"
 
static final String OXTRUST_PATH = "/opt/gluu/jetty/identity/webapps/identity.war"
 
static final String SHIBBOLETH_IDP2_PATH = "/opt/idp/war/idp.war"
 
static final String SHIBBOLETH_IDP3_PATH = "/opt/gluu/jetty/idp/webapps/idp.war"
 
static final String CAS_PATH = "/opt/gluu/jetty/cas/webapps/cas.war"
 

詳解

Action class for updating and adding the SAML IDP to Asimba.

著者
Dmitry Ognyannikov

関数詳解

◆ isCASInstalled()

static boolean org.gluu.oxtrust.util.ProductInstallationChecker.isCASInstalled ( )
inlinestatic
52  {
53  return new File(CAS_PATH).exists();
54  }
static final String CAS_PATH
Definition: ProductInstallationChecker.java:24

◆ isGluuCE()

static boolean org.gluu.oxtrust.util.ProductInstallationChecker.isGluuCE ( )
inlinestatic
26  {
27  return new File(GLUU_CE_PATH).exists();
28  }
static final String GLUU_CE_PATH
Definition: ProductInstallationChecker.java:17

◆ isOxAsimbaInstalled()

static boolean org.gluu.oxtrust.util.ProductInstallationChecker.isOxAsimbaInstalled ( )
inlinestatic
30  {
31  return new File(OXASIMBA_PATH).exists();
32  }
static final String OXASIMBA_PATH
Definition: ProductInstallationChecker.java:19

◆ isOxAuthInstalled()

static boolean org.gluu.oxtrust.util.ProductInstallationChecker.isOxAuthInstalled ( )
inlinestatic
34  {
35  return new File(OXAUTH_PATH).exists();
36  }
static final String OXAUTH_PATH
Definition: ProductInstallationChecker.java:20

◆ isOxTrustInstalled()

static boolean org.gluu.oxtrust.util.ProductInstallationChecker.isOxTrustInstalled ( )
inlinestatic
38  {
39  return new File(OXTRUST_PATH).exists();
40  }
static final String OXTRUST_PATH
Definition: ProductInstallationChecker.java:21

◆ isShibbolethIDP2Installed()

static boolean org.gluu.oxtrust.util.ProductInstallationChecker.isShibbolethIDP2Installed ( )
inlinestatic
43  {
44  return new File(SHIBBOLETH_IDP2_PATH).exists();
45  }
static final String SHIBBOLETH_IDP2_PATH
Definition: ProductInstallationChecker.java:22

◆ isShibbolethIDP3Installed()

static boolean org.gluu.oxtrust.util.ProductInstallationChecker.isShibbolethIDP3Installed ( )
inlinestatic
47  {
48  return new File(SHIBBOLETH_IDP3_PATH).exists();
49  }
static final String SHIBBOLETH_IDP3_PATH
Definition: ProductInstallationChecker.java:23

メンバ詳解

◆ CAS_PATH

final String org.gluu.oxtrust.util.ProductInstallationChecker.CAS_PATH = "/opt/gluu/jetty/cas/webapps/cas.war"
static

◆ GLUU_CE_PATH

final String org.gluu.oxtrust.util.ProductInstallationChecker.GLUU_CE_PATH = "/install/community-edition-setup"
static

◆ OXASIMBA_PATH

final String org.gluu.oxtrust.util.ProductInstallationChecker.OXASIMBA_PATH = "/opt/gluu/jetty/asimba/webapps/asimba.war"
static

◆ OXAUTH_PATH

final String org.gluu.oxtrust.util.ProductInstallationChecker.OXAUTH_PATH = "/opt/gluu/jetty/oxauth/webapps/oxauth.war"
static

◆ OXTRUST_PATH

final String org.gluu.oxtrust.util.ProductInstallationChecker.OXTRUST_PATH = "/opt/gluu/jetty/identity/webapps/identity.war"
static

◆ SHIBBOLETH_IDP2_PATH

final String org.gluu.oxtrust.util.ProductInstallationChecker.SHIBBOLETH_IDP2_PATH = "/opt/idp/war/idp.war"
static

◆ SHIBBOLETH_IDP3_PATH

final String org.gluu.oxtrust.util.ProductInstallationChecker.SHIBBOLETH_IDP3_PATH = "/opt/gluu/jetty/idp/webapps/idp.war"
static

このクラス詳解は次のファイルから抽出されました: