| Package | Description |
|---|---|
| org.exoplatform.application.registry | |
| org.exoplatform.application.registry.impl |
| Modifier and Type | Method and Description |
|---|---|
Application |
ApplicationRegistryService.getApplication(String id)
Return Application with id provided
|
Application |
ApplicationRegistryService.getApplication(String category,
String name)
Return Application in specific category and have name provided in param
If it can't be found, return null |
| Modifier and Type | Method and Description |
|---|---|
List<Application> |
ApplicationRegistryService.getAllApplications()
Return list of all Application in database (unsorted)
If there are not any Application in database, return an empty list |
List<Application> |
ApplicationCategory.getApplications() |
List<Application> |
ApplicationRegistryService.getApplications(ApplicationCategory category,
ApplicationType<?>... appTypes)
Return list of applications (unsorted) in specific category and have specific type
|
List<Application> |
ApplicationRegistryService.getApplications(ApplicationCategory category,
Comparator<Application> sortComparator,
ApplicationType<?>... appTypes)
Return list of applications (sorted) in specific category and have specific type
|
| Modifier and Type | Method and Description |
|---|---|
void |
ApplicationRegistryService.remove(Application app)
Remove an Application from database
If it can't be found, it will be ignored (no exception) |
void |
ApplicationRegistryService.save(ApplicationCategory category,
Application application)
Save Application in an ApplicationCategory
If ApplicationCategory or Application don't exist, they'll be created If Application has been already existed, it will be updated |
void |
ApplicationRegistryService.update(Application application)
Update an Application
It must be existed in database, if not, this will throw an IllegalStateException |
| Modifier and Type | Method and Description |
|---|---|
List<Application> |
ApplicationRegistryService.getApplications(ApplicationCategory category,
Comparator<Application> sortComparator,
ApplicationType<?>... appTypes)
Return list of applications (sorted) in specific category and have specific type
|
void |
ApplicationCategory.setApplications(List<Application> applications) |
| Modifier and Type | Method and Description |
|---|---|
Application |
ApplicationRegistryServiceImpl.getApplication(String id) |
Application |
ApplicationRegistryServiceImpl.getApplication(String category,
String name) |
| Modifier and Type | Method and Description |
|---|---|
List<Application> |
ApplicationRegistryServiceImpl.getAllApplications() |
List<Application> |
ApplicationRegistryServiceImpl.getApplications(ApplicationCategory category,
ApplicationType<?>... appTypes) |
List<Application> |
ApplicationRegistryServiceImpl.getApplications(ApplicationCategory category,
Comparator<Application> sortComparator,
ApplicationType<?>... appTypes) |
| Modifier and Type | Method and Description |
|---|---|
void |
ApplicationRegistryServiceImpl.remove(Application app) |
void |
ApplicationRegistryServiceImpl.save(ApplicationCategory category,
Application application) |
void |
ApplicationRegistryServiceImpl.update(Application application) |
| Modifier and Type | Method and Description |
|---|---|
List<Application> |
ApplicationRegistryServiceImpl.getApplications(ApplicationCategory category,
Comparator<Application> sortComparator,
ApplicationType<?>... appTypes) |
Copyright © 2016 JBoss by Red Hat. All Rights Reserved.