mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
No effective change - format code
This commit is contained in:
@@ -55,4 +55,4 @@ public @interface CacheStrategy {
|
||||
*/
|
||||
String warmingQuery() default "";
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -44,4 +44,4 @@ public @interface CacheTuning {
|
||||
* </p>
|
||||
*/
|
||||
int maxSecsToLive() default 0;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -28,4 +28,4 @@ import java.lang.annotation.Target;
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface CreatedTimestamp {
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -28,4 +28,4 @@ public @interface EmbeddedColumns {
|
||||
*/
|
||||
String columns() default "";
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -21,4 +21,4 @@ public @interface Encrypted {
|
||||
* Used to specify the DB column length.
|
||||
*/
|
||||
int dbLength() default 0;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -87,4 +87,4 @@ public @interface EnumMapping {
|
||||
* The length of DB column if mapping to string values.
|
||||
*/
|
||||
int length() default 0;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -43,4 +43,4 @@ public @interface EnumValue {
|
||||
* </p>
|
||||
*/
|
||||
String value();
|
||||
};
|
||||
}
|
||||
|
||||
@@ -12,17 +12,17 @@ import java.lang.annotation.Target;
|
||||
@Target(ElementType.FIELD)
|
||||
public @interface Expose {
|
||||
|
||||
/**
|
||||
* If {@code true}, the field marked with this annotation is written out in the JSON while
|
||||
* serializing. If {@code false}, the field marked with this annotation is skipped from the
|
||||
* serialized output. Defaults to {@code true}.
|
||||
*/
|
||||
public boolean serialize() default true;
|
||||
/**
|
||||
* If {@code true}, the field marked with this annotation is written out in the JSON while
|
||||
* serializing. If {@code false}, the field marked with this annotation is skipped from the
|
||||
* serialized output. Defaults to {@code true}.
|
||||
*/
|
||||
boolean serialize() default true;
|
||||
|
||||
/**
|
||||
* If {@code true}, the field marked with this annotation is deserialized from the JSON.
|
||||
* If {@code false}, the field marked with this annotation is skipped during deserialization.
|
||||
* Defaults to {@code true}.
|
||||
*/
|
||||
public boolean deserialize() default true;
|
||||
/**
|
||||
* If {@code true}, the field marked with this annotation is deserialized from the JSON.
|
||||
* If {@code false}, the field marked with this annotation is skipped during deserialization.
|
||||
* Defaults to {@code true}.
|
||||
*/
|
||||
boolean deserialize() default true;
|
||||
}
|
||||
@@ -100,4 +100,4 @@ public @interface Formula {
|
||||
*/
|
||||
String join() default "";
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -14,11 +14,11 @@ import java.lang.annotation.Target;
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface Index {
|
||||
|
||||
/**
|
||||
* Name of the index
|
||||
*
|
||||
* @return index name
|
||||
*/
|
||||
String value() default "";
|
||||
/**
|
||||
* Name of the index
|
||||
*
|
||||
* @return index name
|
||||
*/
|
||||
String value() default "";
|
||||
|
||||
}
|
||||
|
||||
@@ -34,4 +34,4 @@ public @interface NamedUpdate {
|
||||
*/
|
||||
boolean notifyCache() default true;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -17,4 +17,4 @@ public @interface NamedUpdates {
|
||||
*/
|
||||
NamedUpdate[] value();
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -31,4 +31,4 @@ public @interface PrivateOwned {
|
||||
*/
|
||||
boolean cascadeRemove() default true;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -21,4 +21,4 @@ public @interface Sql {
|
||||
*/
|
||||
SqlSelect[] select() default { @SqlSelect };
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -295,4 +295,4 @@ public @interface SqlSelect {
|
||||
* Set this to true to have debug output when Ebean parses the sql-select.
|
||||
*/
|
||||
boolean debug() default false;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -125,4 +125,4 @@ public @interface Transactional {
|
||||
*/
|
||||
Class<? extends Throwable>[] noRollbackFor() default {};
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -31,4 +31,4 @@ public @interface UpdateMode {
|
||||
*/
|
||||
boolean updateChangesOnly() default true;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -13,4 +13,4 @@ import java.lang.annotation.Target;
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface UpdatedTimestamp {
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -48,4 +48,4 @@ public @interface Where {
|
||||
*/
|
||||
String clause();
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user