Package org.exbin.xbup.catalog.entity
Class XBETran
- java.lang.Object
-
- org.exbin.xbup.catalog.entity.XBETran
-
- All Implemented Interfaces:
java.io.Serializable
,XBMBase
,XBMTran
,org.exbin.xbup.core.catalog.base.XBCBase
,org.exbin.xbup.core.catalog.base.XBCTran
@ParametersAreNonnullByDefault public class XBETran extends java.lang.Object implements XBMTran, java.io.Serializable
Transformations database entity.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XBETran()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XBEBlockRev
getExcept()
long
getId()
XBELimitSpec
getLimit()
XBEBlockSpec
getOwner()
XBEBlockRev
getTarget()
void
setExcept(org.exbin.xbup.core.catalog.base.XBCBlockRev except)
Sets exception of the procedure.void
setLimit(org.exbin.xbup.core.catalog.base.XBCLimitSpec limit)
Sets limitation of the procedure.void
setOwner(org.exbin.xbup.core.catalog.base.XBCBlockSpec owner)
Sets owner which is directory.void
setTarget(org.exbin.xbup.core.catalog.base.XBCBlockRev target)
Sets target of the procedure.
-
-
-
Method Detail
-
getId
public long getId()
- Specified by:
getId
in interfaceorg.exbin.xbup.core.catalog.base.XBCBase
-
getOwner
@Nonnull public XBEBlockSpec getOwner()
- Specified by:
getOwner
in interfaceorg.exbin.xbup.core.catalog.base.XBCTran
-
setOwner
public void setOwner(org.exbin.xbup.core.catalog.base.XBCBlockSpec owner)
Description copied from interface:XBMTran
Sets owner which is directory.
-
getTarget
@Nonnull public XBEBlockRev getTarget()
- Specified by:
getTarget
in interfaceorg.exbin.xbup.core.catalog.base.XBCTran
-
setTarget
public void setTarget(org.exbin.xbup.core.catalog.base.XBCBlockRev target)
Description copied from interface:XBMTran
Sets target of the procedure.
-
getLimit
@Nonnull public XBELimitSpec getLimit()
- Specified by:
getLimit
in interfaceorg.exbin.xbup.core.catalog.base.XBCTran
-
setLimit
public void setLimit(org.exbin.xbup.core.catalog.base.XBCLimitSpec limit)
Description copied from interface:XBMTran
Sets limitation of the procedure.
-
getExcept
@Nonnull public XBEBlockRev getExcept()
- Specified by:
getExcept
in interfaceorg.exbin.xbup.core.catalog.base.XBCTran
-
-