Skip to content

Commit

Permalink
Merge pull request #170 from pdowler/master
Browse files Browse the repository at this point in the history
cadc-registry: prototype posix mapping constants
  • Loading branch information
pdowler committed Sep 22, 2023
2 parents 0e6d97b + 55e56a3 commit a05cc22
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cadc-registry/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sourceCompatibility = 1.8

group = 'org.opencadc'

version = '1.7.2'
version = '1.7.3'

description = 'OpenCADC Registry client library'
def git_url = 'https://github.com/opencadc/reg'
Expand Down
16 changes: 10 additions & 6 deletions cadc-registry/src/main/java/ca/nrc/cadc/reg/Standards.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,16 @@ public class Standards {
@Deprecated
public static final URI UMS_WHOAMI_01 = URI.create("ivo://ivoa.net/std/UMS#whoami-0.1");

public static final URI UMS_USERS_10 = URI.create("ivo://opencadc.org/std/UMS#users-1.0");
public static final URI UMS_REQS_10 = URI.create("ivo://opencadc.org/std/UMS#reqs-1.0");
public static final URI UMS_LOGIN_10 = URI.create("ivo://opencadc.org/std/UMS#login-1.0");
public static final URI UMS_RESETPASS_10 = URI.create("ivo://opencadc.org/std/UMS#resetpass-1.0");
public static final URI UMS_WHOAMI_10 = URI.create("ivo://opencadc.org/std/UMS#whoami-1.0");

public static final URI UMS_USERS_10 = URI.create("http://www.opencadc.org/std/UMS#users-1.0");
public static final URI UMS_REQS_10 = URI.create("http://www.opencadc.org/std/UMS#reqs-1.0");
public static final URI UMS_LOGIN_10 = URI.create("http://www.opencadc.org/std/UMS#login-1.0");
public static final URI UMS_RESETPASS_10 = URI.create("http://www.opencadc.org/std/UMS#resetpass-1.0");
public static final URI UMS_WHOAMI_10 = URI.create("http://www.opencadc.org/std/UMS#whoami-1.0");

// SRCNet prototypes
public static final URI POSIX_GROUPMAP = URI.create("http://www.opencadc.org/std/posix#group-mapping-0.1");
public static final URI POSIX_USERMAP = URI.create("http://www.opencadc.org/std/posix#user-mapping-0.1");

public static final URI VOSI_CAPABILITIES = URI.create("ivo://ivoa.net/std/VOSI#capabilities");
public static final URI VOSI_AVAILABILITY = URI.create("ivo://ivoa.net/std/VOSI#availability");
public static final URI VOSI_TABLES = URI.create("ivo://ivoa.net/std/VOSI#tables");
Expand Down

0 comments on commit a05cc22

Please sign in to comment.