Changeset 7456
- Timestamp:
- Mar 6, 2018, 5:15:04 PM (5 years ago)
- Location:
- branches/3.12-stable/src/core/net/sf/basedb
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.12-stable/src/core/net/sf/basedb/core/AbstractHqlQuery.java
r7381 r7456 46 46 class can be used to build and manage just about any type of HQL 47 47 query. It has no function for executing the query or returning 48 the result. Subclasses may use {@link #getMainHqlQuery(DbControl )}48 the result. Subclasses may use {@link #getMainHqlQuery(DbControl, Class)} 49 49 to generate a Hibernate Query object that is ready to be executed. 50 50 -
branches/3.12-stable/src/core/net/sf/basedb/core/Annotation.java
r7381 r7456 745 745 <p> 746 746 An exception to the above (since BASE 3.11) is if the annotation was loaded with 747 {@link AnnotationSet#getProjectAnnotation(AnnotationType, int)} in747 {@link AnnotationSet#getProjectAnnotation(AnnotationType, Project)} in 748 748 which case currently active project is ignored and the values are 749 749 always changed on this annotation (eg. the same as if this annotation -
branches/3.12-stable/src/core/net/sf/basedb/core/AnnotationBetweenRestriction.java
r7381 r7456 70 70 /** 71 71 @since 3.5 72 @deprecated In 3.11, use {@link #AnnotationBetweenRestriction(String, AnnotationType, Object, Object, Options)} instead72 @deprecated In 3.11, use {@link #AnnotationBetweenRestriction(String, AnnotationType, Object, Object, AnnotationRestriction.Options)} instead 73 73 */ 74 74 @Deprecated … … 83 83 /** 84 84 @since 3.5 85 @deprecated In 3.11, use {@link #AnnotationBetweenRestriction(String, AnnotationType, Object, Object, Options)} instead85 @deprecated In 3.11, use {@link #AnnotationBetweenRestriction(String, AnnotationType, Object, Object, AnnotationRestriction.Options)} instead 86 86 */ 87 87 @Deprecated -
branches/3.12-stable/src/core/net/sf/basedb/core/AnnotationInRestriction.java
r7381 r7456 58 58 /** 59 59 @since 3.5 60 @deprecated In 3.11, use {@link #AnnotationInRestriction(String, AnnotationType, Options, Object...)} instead60 @deprecated In 3.11, use {@link #AnnotationInRestriction(String, AnnotationType, AnnotationRestriction.Options, Object...)} instead 61 61 */ 62 62 @Deprecated -
branches/3.12-stable/src/core/net/sf/basedb/core/AnnotationRestriction.java
r7381 r7456 39 39 Base class for creating restrictions based on annotations. 40 40 Subclasses must implent the {@link #getRestrictionSql(Query, DbControl)} 41 and {@link #setRestrictionParameters( SQLQuery)}41 and {@link #setRestrictionParameters(NativeQuery)} 42 42 method. 43 43 … … 316 316 @param query The query object we are about to execute 317 317 @return An SQL fragment, or null if no additional restriction is required 318 @see #setRestrictionParameters( SQLQuery)318 @see #setRestrictionParameters(NativeQuery) 319 319 */ 320 320 abstract String getRestrictionSql(Query query, DbControl dc) -
branches/3.12-stable/src/core/net/sf/basedb/core/AnnotationSimpleRestriction.java
r7381 r7456 64 64 /** 65 65 @since 3.5 66 @deprecated In 3.11, use {@link #AnnotationSimpleRestriction(String, AnnotationType, Operator, Object, Options)} instead66 @deprecated In 3.11, use {@link #AnnotationSimpleRestriction(String, AnnotationType, Operator, Object, AnnotationRestriction.Options)} instead 67 67 */ 68 68 @Deprecated … … 125 125 /** 126 126 @since 3.5 127 @deprecated In 3.11, use {@link #AnnotationSimpleRestriction(String, AnnotationType, Operator, Object, Options)} instead127 @deprecated In 3.11, use {@link #AnnotationSimpleRestriction(String, AnnotationType, Operator, Object, AnnotationRestriction.Options)} instead 128 128 */ 129 129 @Deprecated … … 163 163 /** 164 164 @since 3.5 165 @deprecated In 3.11, use {@link #AnnotationSimpleRestriction(String, AnnotationType, Operator, List,Options)} instead165 @deprecated In 3.11, use {@link #AnnotationSimpleRestriction(String, AnnotationType, Operator, Object, AnnotationRestriction.Options)} instead 166 166 */ 167 167 @Deprecated -
branches/3.12-stable/src/core/net/sf/basedb/core/HasAnnotationRestriction.java
r7381 r7456 76 76 by the query or not 77 77 @since 3.5 78 @deprecated In 3.11, use {@link #HasAnnotationRestriction(String, AnnotationType, boolean, Options)} instead78 @deprecated In 3.11, use {@link #HasAnnotationRestriction(String, AnnotationType, boolean, AnnotationRestriction.Options)} instead 79 79 */ 80 80 @Deprecated … … 106 106 107 107 /** 108 @see #HasAnnotationRestriction(String, AnnotationType, boolean, boolean, boolean)108 @see #HasAnnotationRestriction(String, AnnotationType, boolean, AnnotationRestriction.Options) 109 109 @since 3.5 110 @deprecated In 3.11, use {@link #HasAnnotationRestriction(String, AnnotationType, boolean, Options)} instead110 @deprecated In 3.11, use {@link #HasAnnotationRestriction(String, AnnotationType, boolean, AnnotationRestriction.Options)} instead 111 111 */ 112 112 @Deprecated -
branches/3.12-stable/src/core/net/sf/basedb/core/HibernateUtil.java
r7416 r7456 2047 2047 using a query. 2048 2048 2049 @param clazz The list should contain objects of this class2050 2049 @param query The query to execute 2051 2050 @param sc A optional SessionControl that is automatically protected from … … 2074 2073 /** 2075 2074 Scroll through the result of a query using an iterator. 2076 @param clazz The iterator returns objects of this class2077 2075 @param query The query to execute 2078 2076 @param sc A optional SessionControl that is automatically protected from -
branches/3.12-stable/src/core/net/sf/basedb/core/Job.java
r7381 r7456 1117 1117 1118 1118 /** 1119 @see {@link #start(String, String, String, JobAgent, Date)}1119 @see #start(String, String, String, JobAgent, Date) 1120 1120 @since 3.3 1121 1121 */ … … 1517 1517 1518 1518 /** 1519 @see {@link #execute(ProgressReporter, String, String, JobAgentSettings)}1519 @see #execute(ProgressReporter, String, String, JobAgentSettings) 1520 1520 */ 1521 1521 public PluginExecutionRequest execute(ProgressReporter progress, String server, JobAgentSettings settings) -
branches/3.12-stable/src/core/net/sf/basedb/core/QueryExecutor.java
r7381 r7456 112 112 /** 113 113 Executes a Hibernate query that returns an iterator on a stateless session. 114 @param clazz The class of items returned by the iterator115 114 @param query The query to execute 116 115 @param session The stateless session, this must be the same session -
branches/3.12-stable/src/core/net/sf/basedb/core/Update.java
r7413 r7456 58 58 import net.sf.basedb.core.data.KitData; 59 59 import net.sf.basedb.core.data.MeasuredBioMaterialData; 60 import net.sf.basedb.core.data.NewsData; 60 61 import net.sf.basedb.core.data.ParameterValueData; 61 62 import net.sf.basedb.core.data.PropertyFilterData; -
branches/3.12-stable/src/core/net/sf/basedb/core/User.java
r7452 r7456 599 599 enable this feature by itself, the email address must first 600 600 be verified. 601 @see #sendEmailVerificationCode( )601 @see #sendEmailVerificationCode(String) 602 602 @see #enableDeviceVerification(String) 603 603 @since 3.12 … … 616 616 Send a verification code to the currently registered email address. 617 617 The client application should ask the user to enter the verification 618 code and then call {@link # verifyEmail(String)}. The verification must618 code and then call {@link #enableDeviceVerification(String)}. The verification must 619 619 be done with the same User instance since the verification code 620 620 is only temporarily stored inside this instance. … … 666 666 Verify the email and enables device verification. 667 667 @param code The code that was sent by email to the user 668 @see #sendEmailVerificationCode( )668 @see #sendEmailVerificationCode(String) 669 669 @since 3.12 670 670 */ -
branches/3.12-stable/src/core/net/sf/basedb/core/data/UserDeviceData.java
r7414 r7456 172 172 /** 173 173 The maximum length of the remote ID that can be stored in the database. 174 @see #set RemoteId(String)174 @see #setLastRemoteId(String) 175 175 */ 176 176 public static final int MAX_REMOTE_ID_LENGTH = 255; -
branches/3.12-stable/src/core/net/sf/basedb/util/HttpUtil.java
r7411 r7456 139 139 Parse the User-Agent string from a HTTP request and return 140 140 information about what it actually means. 141 @see https://github.com/nielsbasjes/yauaa141 @see <a href="https://github.com/nielsbasjes/yauaa">https://github.com/nielsbasjes/yauaa</a> 142 142 @since 3.12 143 143 */ -
branches/3.12-stable/src/core/net/sf/basedb/util/ProgressInputStream.java
r7168 r7456 81 81 /** 82 82 Send a progress report with the given message. This method is called 83 auto amtically at the given intervals. The default message is the number83 automatically at the given intervals. The default message is the number 84 84 of bytes read so far (formatted as a string with 85 85 {@link Values#formatBytes(Long, int)}). Subclasses may override this 86 86 method to generate a different message. 87 88 @param message89 87 */ 90 88 protected void progressReport(String message) -
branches/3.12-stable/src/core/net/sf/basedb/util/extensions/ActionIterator.java
r7275 r7456 173 173 /** 174 174 Send the event to event handlers registered in the registry. 175 @see Registry#handleEvent(EventType, ExtensionPoint, Extension) }175 @see Registry#handleEvent(EventType, ExtensionPoint, Extension) 176 176 @since 3.10 177 177 */ -
branches/3.12-stable/src/core/net/sf/basedb/util/extensions/manager/processor/IgnoreFileProcessor.java
r7233 r7456 100 100 it happend when the {@link #done(ExtensionsManager)} method is 101 101 called by the manager. If this flag is set the 102 {@link #finalizeRegistration(ExtensionsManager , boolean)}102 {@link #finalizeRegistration(ExtensionsManager)} 103 103 method must be explicitely called. 104 104 */ -
branches/3.12-stable/src/core/net/sf/basedb/util/overview/loader/BasicItemNodeLoaderFactory.java
r7004 r7456 123 123 Register a node loader implementation. The implementation must have a 124 124 public no-argument constructor. The given class is checked with 125 {@link ClassUtil#checkAndLoadClass(ClassLoader, String, boolean, Class ...)}125 {@link ClassUtil#checkAndLoadClass(ClassLoader, String, boolean, Class, Class...)} 126 126 127 127 @param key The item type the node loader handles -
branches/3.12-stable/src/core/net/sf/basedb/util/overview/validator/BasicItemNodeValidatorFactory.java
r7005 r7456 149 149 Register a node validator implementation. The implementation must have a 150 150 public no-argument constructor. The given class is checked with 151 {@link ClassUtil#checkAndLoadClass(ClassLoader, String, boolean, Class ...)}151 {@link ClassUtil#checkAndLoadClass(ClassLoader, String, boolean, Class, Class...)} 152 152 153 153 @param key The item type the node validator handles
Note: See TracChangeset
for help on using the changeset viewer.