Skip to content

Package: EntityReferenceProxyPropertyAccessor

EntityReferenceProxyPropertyAccessor

Coverage

1: /*
2: * JOPA
3: * Copyright (C) 2024 Czech Technical University in Prague
4: *
5: * This library is free software; you can redistribute it and/or
6: * modify it under the terms of the GNU Lesser General Public
7: * License as published by the Free Software Foundation; either
8: * version 3.0 of the License, or (at your option) any later version.
9: *
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this library.
17: */
18: package cz.cvut.kbss.jopa.proxy.reference;
19:
20: import cz.cvut.kbss.jopa.model.descriptors.Descriptor;
21: import cz.cvut.kbss.jopa.sessions.UnitOfWork;
22:
23: import java.net.URI;
24:
25: /**
26: * Provides access to persistence context-related attributes needed by entity reference proxies.
27: * <p>
28: * This interface should be implemented by the classes generated by {@link EntityReferenceProxyGenerator}.
29: */
30: public interface EntityReferenceProxyPropertyAccessor<T> {
31:
32: URI getIdentifier();
33:
34: void setIdentifier(URI identifier);
35:
36: Class<T> getType();
37:
38: void setType(Class<T> entityType);
39:
40: Descriptor getDescriptor();
41:
42: void setDescriptor(Descriptor descriptor);
43:
44: UnitOfWork getPersistenceContext();
45:
46: void setPersistenceContext(UnitOfWork uow);
47:
48: T getValue();
49:
50: void setValue(T value);
51: }