com.landawn.abacus.annotation.JoinedBy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abacus-common Show documentation
Show all versions of abacus-common Show documentation
A general programming library in Java/Android. It's easy to learn and simple to use with concise and powerful APIs.
/*
* Copyright (C) 2019 HaiYang Li
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.landawn.abacus.annotation;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* Sample for one-one or one-many join:
*
*
*
* public class Account {
* private long id;
*
* @JoinedBy("id=accountId")
* private List<Device> devices;
*
* //...
* }
*
* public class Device {
* private long accountId;
* // ...
* }
*
*
*
*
* Sample for many-many join:
*
*
*
* public class Employee {
* private long id;
*
* @JoinedBy({ "id=EmployeeProject.employeeId", "EmployeeProject.projectId = id" })
* private List<Project> projects;
*
* //...
* }
*
* public class Project {
* private long id;
* // ...
* }
*
* public class EmployeeProject {
* private long employeeId;
* private long projectId;
* // ...
* }
*
*
*
*
*/
@Documented
@Target(value = { FIELD /*, METHOD */ })
@Retention(RUNTIME)
public @interface JoinedBy {
String[] value() default {};
// OnDeleteAction onDelete() default OnDeleteAction.NO_ACTION; // TODO it's very complicated to support it.
}