Changeset 7043
- Timestamp:
- Dec 11, 2015, 1:49:44 PM (7 years ago)
- Location:
- branches/3.7-stable/src
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7-stable/src/clients/web/net/sf/basedb/clients/web/plugins/AnyToAnyDataLoader.java
r6932 r7043 48 48 @param linkName Name of the any-to-any link (required) 49 49 @param linkType Target item type of the link (optional) 50 @param propertyPathProperty of the target item to load (optional)50 @param linkProperty Property of the target item to load (optional) 51 51 */ 52 52 @SuppressWarnings("unchecked") -
branches/3.7-stable/src/core/net/sf/basedb/core/Annotation.java
r6937 r7043 93 93 Create a new inherited or cloned annotation. 94 94 @param dc The DbControl object 95 @param annotationType The annotation type of the new annotation95 @param inheritedFrom The annotation to inherit 96 96 @param annotationSet The annotation set of the new annotation 97 @param clone If the annotation values should be cloned or not 97 98 @see AnnotationSet#getAnnotation(AnnotationType) 98 99 @since 3.6 -
branches/3.7-stable/src/core/net/sf/basedb/core/AnnotationSet.java
r6940 r7043 1044 1044 inherit by annotation set is no longer supported. Calling 1045 1045 this method will be translated to inheriting all individual annotations 1046 from the annotation set using {@link #inheritAll(AnnotationSet )}1046 from the annotation set using {@link #inheritAll(AnnotationSet, boolean)} 1047 1047 1048 1048 @param annotationSet The annotation set to inherit … … 1051 1051 use permission for the annotation set to inherit 1052 1052 @throws InvalidDataException If the annotation set is null 1053 @deprecated In 3.6, use {@link #inheritAll(AnnotationSet )} instead1053 @deprecated In 3.6, use {@link #inheritAll(AnnotationSet, boolean)} instead 1054 1054 */ 1055 1055 @Deprecated -
branches/3.7-stable/src/core/net/sf/basedb/core/Kit.java
r6996 r7043 49 49 The ID for the sampling kit type, for example a kit 50 50 used when creating a {@link Sample} from a {@link 51 Bio source}.51 BioSource}. 52 52 */ 53 53 public static final String SAMPLING = "net.sf.basedb.core.KitType.SAMPLING"; … … 294 294 <ul> 295 295 <li>{@link BioMaterial}:s and {@link PhysicalBioAssay}:s using this kit 296 <li>{@link BioPlateEvent s}:s with this kit296 <li>{@link BioPlateEvent}:s with this kit 297 297 <li>{@link DerivedBioAssay}: with this kit 298 298 </ul> -
branches/3.7-stable/src/core/net/sf/basedb/core/Update.java
r7035 r7043 247 247 <td>122</td> 248 248 <td> 249 Added {@link RootRawBioAssayData}. Existing raw bioassay <->Experiment links249 Added {@link RootRawBioAssayData}. Existing raw bioassay -- Experiment links 250 250 are moved over to this item. 251 251 </td> -
branches/3.7-stable/src/core/net/sf/basedb/core/query/ConditionalQueryElement.java
r7018 r7043 35 35 @author Nicklas 36 36 @since 3.7 37 @see Restrictions#conditionalRestriction(Filter, Restriction, Restriction )37 @see Restrictions#conditionalRestriction(Filter, Restriction, Restriction, boolean) 38 38 */ 39 39 public class ConditionalQueryElement -
branches/3.7-stable/src/core/net/sf/basedb/core/query/ReturnClassFilter.java
r7034 r7043 31 31 with a conditiona restriction or expression as 32 32 created by {@link Restrictions#conditionalRestriction(Filter, Restriction, Restriction, boolean)} 33 and {@link Expressions#conditional Restriction(Filter, Expression, Expression, boolean)}33 and {@link Expressions#conditionalExpression(Filter, Expression, Expression)} 34 34 35 35 @author nicklas -
branches/3.7-stable/src/core/net/sf/basedb/core/snapshot/AnnotationSnapshot.java
r6962 r7043 400 400 Get the unit the annotatation values should use for display. 401 401 NOTE! The unit is only available for primary and cloned annotations. Use 402 {@link #getActualUnit( )} or {@link #getInheritedFrom()}.getThisUnit() to get402 {@link #getActualUnit(DbControl)} or {@link #getInheritedFrom()}.getThisUnit() to get 403 403 the unit also for inherited annotations. 404 404 -
branches/3.7-stable/src/core/net/sf/basedb/util/bcrypt/BCrypt.java
r6906 r7043 31 31 * <p> 32 32 * <code> 33 * String pw_hash = BCrypt.hashpw(plain_password, BCrypt.gensalt()); <br />33 * String pw_hash = BCrypt.hashpw(plain_password, BCrypt.gensalt()); <br> 34 34 * </code> 35 35 * <p> … … 38 38 * <p> 39 39 * <code> 40 * if (BCrypt.checkpw(candidate_password, stored_hash))<br />41 * System.out.println("It matches");<br />42 * else<br />43 * System.out.println("It does not match");<br />40 * if (BCrypt.checkpw(candidate_password, stored_hash))<br> 41 * System.out.println("It matches");<br> 42 * else<br> 43 * System.out.println("It does not match");<br> 44 44 * </code> 45 45 * <p> … … 48 48 * <p> 49 49 * <code> 50 * String strong_salt = BCrypt.gensalt(10)<br />51 * String stronger_salt = BCrypt.gensalt(12)<br />50 * String strong_salt = BCrypt.gensalt(10)<br> 51 * String stronger_salt = BCrypt.gensalt(12)<br> 52 52 * </code> 53 53 * <p>
Note: See TracChangeset
for help on using the changeset viewer.