Class BaseApplicationDTO
- java.lang.Object
-
- org.osgi.dto.DTO
-
- org.osgi.service.jaxrs.runtime.dto.BaseDTO
-
- org.osgi.service.jaxrs.runtime.dto.BaseApplicationDTO
-
- Direct Known Subclasses:
ApplicationDTO
,FailedApplicationDTO
public abstract class BaseApplicationDTO extends BaseDTO
Represents common information about a JAX-RS application service.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
base
The base URI of the resource defined byJaxrsWhiteboardConstants.JAX_RS_APPLICATION_BASE
.ExtensionDTO[]
extensionDTOs
Returns the representations of the dynamic JAX-RS extension services associated with this Application.ResourceDTO[]
resourceDTOs
Returns the representations of the dynamic JAX-RS resource services associated with this Application.
-
Constructor Summary
Constructors Constructor Description BaseApplicationDTO()
-
-
-
Field Detail
-
base
public java.lang.String base
The base URI of the resource defined byJaxrsWhiteboardConstants.JAX_RS_APPLICATION_BASE
.
-
resourceDTOs
public ResourceDTO[] resourceDTOs
Returns the representations of the dynamic JAX-RS resource services associated with this Application. The returned array may be empty if this application is currently not associated with any JAX-RS Resource services.
-
extensionDTOs
public ExtensionDTO[] extensionDTOs
Returns the representations of the dynamic JAX-RS extension services associated with this Application. The returned array may be empty if this application is currently not associated with any JAX-RS extension services.
-
-