Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cadc-registry: prototype posix mapping constants #170

Merged
merged 1 commit into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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