mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Patch checkpoint.
Service descriptor changes including introduction of schema number. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2161 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -25,21 +25,21 @@ package org.alfresco.service.descriptor;
|
||||
public interface Descriptor
|
||||
{
|
||||
/**
|
||||
* Gets the major version number
|
||||
* Gets the major version number, e.g. <u>1</u>.2.3
|
||||
*
|
||||
* @return major version number
|
||||
*/
|
||||
public String getVersionMajor();
|
||||
|
||||
/**
|
||||
* Gets the minor version number
|
||||
* Gets the minor version number, e.g. 1.<u>2</u>.3
|
||||
*
|
||||
* @return minor version number
|
||||
*/
|
||||
public String getVersionMinor();
|
||||
|
||||
/**
|
||||
* Gets the version revision number
|
||||
* Gets the version revision number, e.g. 1.2.<u>3</u>
|
||||
*
|
||||
* @return revision number
|
||||
*/
|
||||
@@ -66,6 +66,13 @@ public interface Descriptor
|
||||
*/
|
||||
public String getEdition();
|
||||
|
||||
/**
|
||||
* Gets the schema number
|
||||
*
|
||||
* @return a positive integer
|
||||
*/
|
||||
public int getSchema();
|
||||
|
||||
/**
|
||||
* Gets the list available descriptors
|
||||
*
|
||||
|
@@ -30,7 +30,7 @@ public interface DescriptorService
|
||||
*
|
||||
* @return server descriptor
|
||||
*/
|
||||
public Descriptor getDescriptor();
|
||||
public Descriptor getServerDescriptor();
|
||||
|
||||
/**
|
||||
* Get descriptor for the repository
|
||||
|
Reference in New Issue
Block a user