You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On OCCI specification document (GFD.185 - RESTful HTTP Rendering, section 3.1 - p6), the id representing a resource must be identified with a unique UUID.
For server usage and saving resource purpose, CloudDesigner should generate an uuid (v4?) on id to replace "r1", "r2", "rN".
The method is fairly simple like this :
public static String createUUID() {
return UUID.randomUUID().toString();
}
The attribute "occi.core.id" must be set as given by the spec with urn.
The text was updated successfully, but these errors were encountered:
Hello,
On OCCI specification document (GFD.185 - RESTful HTTP Rendering, section 3.1 - p6), the id representing a resource must be identified with a unique UUID.
For server usage and saving resource purpose, CloudDesigner should generate an uuid (v4?) on id to replace "r1", "r2", "rN".
The method is fairly simple like this :
The attribute "occi.core.id" must be set as given by the spec with urn.
The text was updated successfully, but these errors were encountered: