diff --git a/openbis-ipad/BisKit/Classes/CISDOBIpadEntity.m b/openbis-ipad/BisKit/Classes/CISDOBIpadEntity.m index 93c002df53dd01601b279e7002ea72cbe57810e0..1269c501e4eb9721b1abfb5bdfde26544ee2d890 100644 --- a/openbis-ipad/BisKit/Classes/CISDOBIpadEntity.m +++ b/openbis-ipad/BisKit/Classes/CISDOBIpadEntity.m @@ -90,7 +90,7 @@ self.identifier = rawEntity.identifier; self.permId = rawEntity.permId; self.refcon = rawEntity.refcon; - self.group = rawEntity.group; + self.group = rawEntity.category; self.imageUrl = rawEntity.imageUrl; self.childrenPermIdsJson = rawEntity.children; self.propertiesJson = rawEntity.properties; diff --git a/openbis-ipad/BisKit/Classes/CISDOBIpadService.h b/openbis-ipad/BisKit/Classes/CISDOBIpadService.h index 42c07eb23519f0160d05c74798d5cc6e978e496d..50def3e2c910b055063a0402400959ef7278d057 100644 --- a/openbis-ipad/BisKit/Classes/CISDOBIpadService.h +++ b/openbis-ipad/BisKit/Classes/CISDOBIpadService.h @@ -72,7 +72,7 @@ enum CISOBIpadServiceErrorCode { @property(readonly) NSString *identifier; @property(readonly) NSString *permId; @property(readonly) NSString *refcon; -@property(readonly) NSString *group; +@property(readonly) NSString *category; @property(readonly) NSString *imageUrl; @property(readonly) NSString *children; //<! The permIds of the children as a JSON string @property(readonly) NSString *properties; //<! The properties as a JSON string. diff --git a/openbis-ipad/BisKit/Classes/CISDOBIpadService.m b/openbis-ipad/BisKit/Classes/CISDOBIpadService.m index 201bb72b58d0e9ff84a96d6220a7204460274070..bc81e9a3d785d12f10af964f6e447fcb6549861c 100644 --- a/openbis-ipad/BisKit/Classes/CISDOBIpadService.m +++ b/openbis-ipad/BisKit/Classes/CISDOBIpadService.m @@ -198,7 +198,7 @@ NSString *const CISDOBIpadServiceErrorDomain = @"CISDOBIpadServiceErrorDomain"; - (NSString *)identifier { return [self stringContentValueAtIndex: 2]; } - (NSString *)permId { return [self stringContentValueAtIndex: 3]; } - (NSString *)refcon { return [self stringContentValueAtIndex: 4]; } -- (NSString *)group { return [self stringContentValueAtIndex: 5]; } +- (NSString *)category { return [self stringContentValueAtIndex: 5]; } - (NSString *)imageUrl { return [self stringContentValueAtIndex: 6]; } - (NSString *)children { return [self stringContentValueAtIndex: 7]; } - (NSString *)properties { return [self stringContentValueAtIndex: 8]; } diff --git a/openbis-ipad/BisKit/Tests/CISDOBIpadServiceTest.m b/openbis-ipad/BisKit/Tests/CISDOBIpadServiceTest.m index 9b98eac92ec8c41772d77208c085c8d4ce211bc1..c0b46a1ff4389115fffd6ec068c67ce00e1c366e 100644 --- a/openbis-ipad/BisKit/Tests/CISDOBIpadServiceTest.m +++ b/openbis-ipad/BisKit/Tests/CISDOBIpadServiceTest.m @@ -73,7 +73,7 @@ STAssertNotNil(rawEntity.identifier, @"Identifier should not be nil"); STAssertNotNil(rawEntity.permId, @"PermId should not be nil"); STAssertNotNil(rawEntity.refcon, @"Ref con should not be nil"); - STAssertNotNil(rawEntity.group, @"Group should not be nil"); + STAssertNotNil(rawEntity.category, @"Group should not be nil"); STAssertNotNil(rawEntity.imageUrl, @"Image url should not be nil"); STAssertNotNil(rawEntity.children, @"Children should not be nil"); STAssertNotNil(rawEntity.properties, @"Properties type should not be nil"); diff --git a/openbis-ipad/Research/BisMac.xcodeproj/project.pbxproj b/openbis-ipad/Research/BisMac.xcodeproj/project.pbxproj index 658599a7cd936bf15e3d076677cb9b5bd8b57f8f..b19d40381e5e0a83b2f636e35b51de7ec91af075 100644 --- a/openbis-ipad/Research/BisMac.xcodeproj/project.pbxproj +++ b/openbis-ipad/Research/BisMac.xcodeproj/project.pbxproj @@ -228,8 +228,8 @@ 36F71E541619837800C87277 /* JSON-RPC */, 3649C8A815EBB2950019AC55 /* CISDOBConnection.h */, 3649C8A915EBB2950019AC55 /* CISDOBConnection.m */, - 3680B1331611B5CE008BA207 /* CISDOBIpadService.m */, 3680B1321611B5CE008BA207 /* CISDOBIpadService.h */, + 3680B1331611B5CE008BA207 /* CISDOBIpadService.m */, 36F71E4A1619829300C87277 /* persistent-data-model.xcdatamodeld */, 36F71E4D1619834600C87277 /* CISDOBIpadEntity.h */, 36F71E4E1619834600C87277 /* CISDOBIpadEntity.m */, diff --git a/openbis-ipad/Research/BisMac.xcodeproj/project.xcworkspace/xcuserdata/cramakri.xcuserdatad/UserInterfaceState.xcuserstate b/openbis-ipad/Research/BisMac.xcodeproj/project.xcworkspace/xcuserdata/cramakri.xcuserdatad/UserInterfaceState.xcuserstate index 49c6afc4d35dcb9e33dc36776ac029774c16a2b0..974296f893f5dccfd7992798ab7c7d24e0638cb5 100644 Binary files a/openbis-ipad/Research/BisMac.xcodeproj/project.xcworkspace/xcuserdata/cramakri.xcuserdatad/UserInterfaceState.xcuserstate and b/openbis-ipad/Research/BisMac.xcodeproj/project.xcworkspace/xcuserdata/cramakri.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/openbis-ipad/openBIS/openBIS.xcodeproj/project.xcworkspace/xcuserdata/cramakri.xcuserdatad/UserInterfaceState.xcuserstate b/openbis-ipad/openBIS/openBIS.xcodeproj/project.xcworkspace/xcuserdata/cramakri.xcuserdatad/UserInterfaceState.xcuserstate index 181a2da07f0af65cab7ab176bc844a4922b0d12b..cb66ea48ad961f5ec14ebc4281896b8801cf11e9 100644 Binary files a/openbis-ipad/openBIS/openBIS.xcodeproj/project.xcworkspace/xcuserdata/cramakri.xcuserdatad/UserInterfaceState.xcuserstate and b/openbis-ipad/openBIS/openBIS.xcodeproj/project.xcworkspace/xcuserdata/cramakri.xcuserdatad/UserInterfaceState.xcuserstate differ