Package fr.igred.omero
Class GenericObjectWrapper<T extends DataObject>
- java.lang.Object
-
- fr.igred.omero.GenericObjectWrapper<T>
-
- Type Parameters:
T
- Subclass ofDataObject
- Direct Known Subclasses:
ChannelWrapper
,ExperimenterWrapper
,GenericAnnotationWrapper
,GenericRepositoryObjectWrapper
,GenericShapeWrapper
,GroupWrapper
,PixelsWrapper
,ROIWrapper
public abstract class GenericObjectWrapper<T extends DataObject> extends Object
Generic class containing a DataObject (or a subclass) object.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GenericObjectWrapper.SortById<U extends GenericObjectWrapper<?>>
Class used to sort wrappers.
-
Constructor Summary
Constructors Modifier Constructor Description protected
GenericObjectWrapper(T object)
Constructor of the class GenericObjectWrapper.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Timestamp
getCreated()
Gets the object creation dateLong
getGroupId()
Gets the group IDlong
getId()
Gets the object idExperimenterWrapper
getOwner()
Gets the owner IDvoid
saveAndUpdate(Client client)
Saves and updates object.String
toString()
Overridden to return the name of the class and the object id.
-
-
-
Field Detail
-
data
protected T extends DataObject data
-
-
Constructor Detail
-
GenericObjectWrapper
protected GenericObjectWrapper(T object)
Constructor of the class GenericObjectWrapper.- Parameters:
object
- The object contained in the GenericObjectWrapper.
-
-
Method Detail
-
getId
public long getId()
Gets the object id- Returns:
- id.
-
getCreated
public Timestamp getCreated()
Gets the object creation date- Returns:
- creation date.
-
getOwner
public ExperimenterWrapper getOwner()
Gets the owner ID- Returns:
- owner id.
-
getGroupId
public Long getGroupId()
Gets the group ID- Returns:
- group id.
-
toString
public String toString()
Overridden to return the name of the class and the object id.- Overrides:
toString
in classObject
- See Also:
Object.toString()
-
saveAndUpdate
public void saveAndUpdate(Client client) throws ExecutionException, ServiceException, AccessException
Saves and updates object.- Parameters:
client
- The client handling the connection.- Throws:
ServiceException
- Cannot connect to OMERO.AccessException
- Cannot access data.ExecutionException
- A Facility can't be retrieved or instantiated.
-
-