public class LowLevelServiceImpl extends GenericServiceImpl implements org.bimserver.shared.interfaces.LowLevelInterface
| Constructor and Description |
|---|
LowLevelServiceImpl(ServiceMap serviceMap) |
| Modifier and Type | Method and Description |
|---|---|
void |
abortTransaction(Long tid) |
void |
addBooleanAttribute(Long tid,
Long oid,
String attributeName,
Boolean value) |
void |
addDoubleAttribute(Long tid,
Long oid,
String attributeName,
Double value) |
void |
addIntegerAttribute(Long tid,
Long oid,
String attributeName,
Integer value) |
void |
addReference(Long tid,
Long oid,
String referenceName,
Long referenceOid) |
void |
addStringAttribute(Long tid,
Long oid,
String attributeName,
String value) |
Long |
commitTransaction(Long tid,
String comment) |
Integer |
count(Long roid,
String className) |
Long |
createObject(Long tid,
String className,
Boolean generateGuid) |
Boolean |
getBooleanAttribute(Long tid,
Long oid,
String attributeName) |
Boolean |
getBooleanAttributeAtIndex(Long tid,
Long oid,
String attributeName,
Integer index) |
List<Boolean> |
getBooleanAttributes(Long tid,
Long oid,
String attributeName) |
byte[] |
getByteArrayAttribute(Long tid,
Long oid,
String attributeName) |
List<byte[]> |
getByteArrayAttributes(Long tid,
Long oid,
String attributeName) |
org.bimserver.interfaces.objects.SDataObject |
getDataObjectByGuid(Long roid,
String guid) |
org.bimserver.interfaces.objects.SDataObject |
getDataObjectByOid(Long roid,
Long oid) |
List<org.bimserver.interfaces.objects.SDataObject> |
getDataObjects(Long roid) |
List<org.bimserver.interfaces.objects.SDataObject> |
getDataObjectsByType(Long roid,
String packageName,
String className,
Boolean flat) |
Double |
getDoubleAttribute(Long tid,
Long oid,
String attributeName) |
Double |
getDoubleAttributeAtIndex(Long tid,
Long oid,
String attributeName,
Integer index) |
List<Double> |
getDoubleAttributes(Long tid,
Long oid,
String attributeName) |
String |
getEnumAttribute(Long tid,
Long oid,
String attributeName) |
Integer |
getIntegerAttribute(Long tid,
Long oid,
String attributeName) |
Integer |
getIntegerAttributeAtIndex(Long tid,
Long oid,
String attributeName,
Integer index) |
List<Integer> |
getIntegerAttributes(Long tid,
Long oid,
String attributeName) |
Long |
getLongAttribute(Long tid,
Long oid,
String attributeName) |
Long |
getLongAttributeAtIndex(Long tid,
Long oid,
String attributeName,
Integer index) |
Long |
getReference(Long tid,
Long oid,
String referenceName) |
List<Long> |
getReferences(Long tid,
Long oid,
String referenceName) |
String |
getStringAttribute(Long tid,
Long oid,
String attributeName) |
List<String> |
getStringAttributes(Long tid,
Long oid,
String attributeName) |
void |
removeAllReferences(Long tid,
Long oid,
String referenceName) |
void |
removeAttribute(Long tid,
Long oid,
String attributeName,
Integer index) |
void |
removeObject(Long tid,
Long oid) |
void |
removeReference(Long tid,
Long oid,
String referenceName,
Integer index) |
void |
removeReferenceByOid(Long tid,
Long oid,
String referenceName,
Long referencedOid) |
void |
setBooleanAttribute(Long tid,
Long oid,
String attributeName,
Boolean value) |
void |
setBooleanAttributeAtIndex(Long tid,
Long oid,
String attributeName,
Integer index,
Boolean value) |
void |
setBooleanAttributes(Long tid,
Long oid,
String attributeName,
List<Boolean> values) |
void |
setByteArrayAttribute(Long tid,
Long oid,
String attributeName,
Byte[] value) |
void |
setDoubleAttribute(Long tid,
Long oid,
String attributeName,
Double value) |
void |
setDoubleAttributeAtIndex(Long tid,
Long oid,
String attributeName,
Integer index,
Double value) |
void |
setDoubleAttributes(Long tid,
Long oid,
String attributeName,
List<Double> values) |
void |
setEnumAttribute(Long tid,
Long oid,
String attributeName,
String value) |
void |
setIntegerAttribute(Long tid,
Long oid,
String attributeName,
Integer value) |
void |
setIntegerAttributeAtIndex(Long tid,
Long oid,
String attributeName,
Integer index,
Integer value) |
void |
setIntegerAttributes(Long tid,
Long oid,
String attributeName,
List<Integer> values) |
void |
setLongAttribute(Long tid,
Long oid,
String attributeName,
Long value) |
void |
setLongAttributeAtIndex(Long tid,
Long oid,
String attributeName,
Integer index,
Long value) |
void |
setLongAttributes(Long tid,
Long oid,
String attributeName,
List<Long> values) |
void |
setReference(Long tid,
Long oid,
String referenceName,
Long referenceOid) |
void |
setStringAttribute(Long tid,
Long oid,
String attributeName,
String value) |
void |
setStringAttributeAtIndex(Long tid,
Long oid,
String attributeName,
Integer index,
String value) |
void |
setWrappedBooleanAttribute(Long tid,
Long oid,
String attributeName,
String type,
Boolean value) |
void |
setWrappedDoubleAttribute(Long tid,
Long oid,
String attributeName,
String type,
Double value) |
void |
setWrappedIntegerAttribute(Long tid,
Long oid,
String attributeName,
String type,
Integer value) |
void |
setWrappedLongAttribute(Long tid,
Long oid,
String attributeName,
String type,
Long value) |
void |
setWrappedStringAttribute(Long tid,
Long oid,
String attributeName,
String type,
String value) |
Long |
startTransaction(Long poid) |
void |
unsetAttribute(Long tid,
Long oid,
String attributeName) |
void |
unsetReference(Long tid,
Long oid,
String referenceName) |
getAuthorization, getBimServer, getCurrentUser, getInternalAccessMethod, getServiceMap, getUserSettings, handleException, requireAdminAuthentication, requireAdminAuthenticationAndRunningServer, requireAdminOrMonitorAuthentication, requireAuthentication, requireAuthenticationAndRunningServer, requireRealUserAuthentication, requireRunningServer, requireSelfregistrationAllowed, setAuthorizationpublic LowLevelServiceImpl(ServiceMap serviceMap)
public Long startTransaction(Long poid) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
startTransaction in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic Long commitTransaction(Long tid, String comment) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
commitTransaction in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void abortTransaction(Long tid) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
abortTransaction in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void addStringAttribute(Long tid, Long oid, String attributeName, String value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
addStringAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void addIntegerAttribute(Long tid, Long oid, String attributeName, Integer value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
addIntegerAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void addDoubleAttribute(Long tid, Long oid, String attributeName, Double value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
addDoubleAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void setDoubleAttributes(Long tid, Long oid, String attributeName, List<Double> values) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
setDoubleAttributes in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void setDoubleAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index, Double value) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
setDoubleAttributeAtIndex in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void setBooleanAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index, Boolean value) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
setBooleanAttributeAtIndex in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void setIntegerAttributes(Long tid, Long oid, String attributeName, List<Integer> values) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
setIntegerAttributes in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void setIntegerAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index, Integer value) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
setIntegerAttributeAtIndex in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void setLongAttributes(Long tid, Long oid, String attributeName, List<Long> values) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
setLongAttributes in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void setBooleanAttributes(Long tid, Long oid, String attributeName, List<Boolean> values) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
setBooleanAttributes in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void addBooleanAttribute(Long tid, Long oid, String attributeName, Boolean value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
addBooleanAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void addReference(Long tid, Long oid, String referenceName, Long referenceOid) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
addReference in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic Long createObject(Long tid, String className, Boolean generateGuid) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
createObject in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void removeAttribute(Long tid, Long oid, String attributeName, Integer index) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
removeAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void removeObject(Long tid, Long oid) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
removeObject in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void removeReference(Long tid, Long oid, String referenceName, Integer index) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
removeReference in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void removeReferenceByOid(Long tid, Long oid, String referenceName, Long referencedOid) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
removeReferenceByOid in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void removeAllReferences(Long tid, Long oid, String referenceName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
removeAllReferences in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void setStringAttribute(Long tid, Long oid, String attributeName, String value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
setStringAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void setStringAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index, String value) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
setStringAttributeAtIndex in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void setWrappedStringAttribute(Long tid, Long oid, String attributeName, String type, String value) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
setWrappedStringAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic String getStringAttribute(Long tid, Long oid, String attributeName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getStringAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void setIntegerAttribute(Long tid, Long oid, String attributeName, Integer value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
setIntegerAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void setWrappedIntegerAttribute(Long tid, Long oid, String attributeName, String type, Integer value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
setWrappedIntegerAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void setByteArrayAttribute(Long tid, Long oid, String attributeName, Byte[] value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
setByteArrayAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void setLongAttribute(Long tid, Long oid, String attributeName, Long value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
setLongAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void setLongAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index, Long value) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
setLongAttributeAtIndex in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void setWrappedLongAttribute(Long tid, Long oid, String attributeName, String type, Long value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
setWrappedLongAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic Integer getIntegerAttribute(Long tid, Long oid, String attributeName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getIntegerAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic Integer getIntegerAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getIntegerAttributeAtIndex in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic Long getLongAttribute(Long tid, Long oid, String attributeName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getLongAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic Long getLongAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getLongAttributeAtIndex in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void setBooleanAttribute(Long tid, Long oid, String attributeName, Boolean value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
setBooleanAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void setWrappedBooleanAttribute(Long tid, Long oid, String attributeName, String type, Boolean value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
setWrappedBooleanAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic Boolean getBooleanAttribute(Long tid, Long oid, String attributeName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getBooleanAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic Boolean getBooleanAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getBooleanAttributeAtIndex in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void setDoubleAttribute(Long tid, Long oid, String attributeName, Double value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
setDoubleAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void setWrappedDoubleAttribute(Long tid, Long oid, String attributeName, String type, Double value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
setWrappedDoubleAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic Double getDoubleAttribute(Long tid, Long oid, String attributeName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getDoubleAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic Double getDoubleAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getDoubleAttributeAtIndex in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic List<Double> getDoubleAttributes(Long tid, Long oid, String attributeName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getDoubleAttributes in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic List<Boolean> getBooleanAttributes(Long tid, Long oid, String attributeName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getBooleanAttributes in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic byte[] getByteArrayAttribute(Long tid, Long oid, String attributeName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getByteArrayAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic List<byte[]> getByteArrayAttributes(Long tid, Long oid, String attributeName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getByteArrayAttributes in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic List<Integer> getIntegerAttributes(Long tid, Long oid, String attributeName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getIntegerAttributes in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic List<String> getStringAttributes(Long tid, Long oid, String attributeName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getStringAttributes in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void setEnumAttribute(Long tid, Long oid, String attributeName, String value) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
setEnumAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic String getEnumAttribute(Long tid, Long oid, String attributeName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getEnumAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void setReference(Long tid, Long oid, String referenceName, Long referenceOid) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
setReference in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic Long getReference(Long tid, Long oid, String referenceName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getReference in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic List<Long> getReferences(Long tid, Long oid, String referenceName) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getReferences in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic void unsetAttribute(Long tid, Long oid, String attributeName) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
unsetAttribute in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic void unsetReference(Long tid, Long oid, String referenceName) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
unsetReference in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionpublic List<org.bimserver.interfaces.objects.SDataObject> getDataObjects(Long roid) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getDataObjects in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic org.bimserver.interfaces.objects.SDataObject getDataObjectByGuid(Long roid, String guid) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getDataObjectByGuid in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic List<org.bimserver.interfaces.objects.SDataObject> getDataObjectsByType(Long roid, String packageName, String className, Boolean flat) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getDataObjectsByType in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic org.bimserver.interfaces.objects.SDataObject getDataObjectByOid(Long roid, Long oid) throws org.bimserver.shared.exceptions.ServerException, org.bimserver.shared.exceptions.UserException
getDataObjectByOid in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.ServerExceptionorg.bimserver.shared.exceptions.UserExceptionpublic Integer count(Long roid, String className) throws org.bimserver.shared.exceptions.UserException, org.bimserver.shared.exceptions.ServerException
count in interface org.bimserver.shared.interfaces.LowLevelInterfaceorg.bimserver.shared.exceptions.UserExceptionorg.bimserver.shared.exceptions.ServerExceptionCopyright © 2019 OpenSource BIM. All rights reserved.