Class EmptyChangeLog

All Implemented Interfaces:
IExtendedResource, IResource

@OslcNamespace("http://open-services.net/ns/core/trs#") @OslcResourceShape(title="Change Log\tShape", describes="http://open-services.net/ns/core/trs#ChangeLog") @OslcName("ChangeLog") @Deprecated public class EmptyChangeLog extends AbstractChangeLog
Deprecated.
A Change Log provides a list of changes organized in inverse chronological order, most recent first. The following example illustrates the contents of a Change Log:
 # Resource: http://cm1.example.com/trackedResourceSet
 @prefix trs: <http://open-services.net/ns/core/trs#> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

 
 <http://cm1.example.com/trackedResourceSet>
 a trs:TrackedResourceSet ;
 trs:base <http://cm1.example.com/baseResources> ;
 trs:changeLog
 [ a	   trs:ChangeLog
 ] .
 
 
An empty change log essentially contains nothing. This class exists to allow JAX-RS implementations a way to generate the empty change log in the TRS resource's output.
  • Constructor Details

    • EmptyChangeLog

      public EmptyChangeLog()
      Deprecated.