comparison artifact-database/src/main/java/de/intevation/artifactdatabase/Backend.java @ 156:a76de72ad6d1

Added stubs for the collection handling in db backend. Added missing attribute column to the collection item table. artifacts/trunk@1381 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 03 Mar 2011 09:53:02 +0000
parents 1a72f08ce8d7
children 6e6965873a48
comparison
equal deleted inserted replaced
155:f797093c60bd 156:a76de72ad6d1
1078 } 1078 }
1079 } 1079 }
1080 1080
1081 return null; 1081 return null;
1082 } 1082 }
1083
1084 public Collection [] listCollections(String userId) {
1085 // TODO: Implement me!
1086 return null;
1087 }
1088
1089 public Collection createCollection(String ownerId, Document data) {
1090 // TODO: Implement me!
1091 return null;
1092 }
1093
1094 public boolean deleteCollection(String collectionId) {
1095 // TODO: Implement me!
1096 return false;
1097 }
1098
1099 public Document getCollectionAttribute(
1100 String collectionId,
1101 String artifactId
1102 ) {
1103 // TODO: Implement me!
1104 return null;
1105 }
1106
1107 public boolean setCollectionAttribute(
1108 String collectionId,
1109 String artifactId,
1110 Document attribute
1111 ) {
1112 // TODO: Implement me!
1113 return false;
1114 }
1115
1116 public boolean addCollectionArtifact(
1117 String collectionId,
1118 String artifactId
1119 ) {
1120 // TODO: Implement me!
1121 return false;
1122 }
1123
1124 public boolean removeCollectionArtifact(
1125 String collectionId,
1126 String artifactId
1127 ) {
1128 // TODO: Implement me!
1129 return false;
1130 }
1131
1132 public Collection [] listCollectionArtifacts(String collectionId) {
1133 // TODO: Implement me!
1134 return null;
1135 }
1136
1083 } 1137 }
1084 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : 1138 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org