|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RemoteException | |
---|---|
com.sas.drugdev.remote.admin | Provides classes and interfaces for accessing user and group information. |
com.sas.drugdev.remote.repository | Provides classes and interfaces for retrieving and writing content and metadata. |
com.sas.drugdev.remote.sas | Provides classes and interfaces for publishing and examining an SDD process. |
com.sas.drugdev.remote.session | Contains all the necessary classes and interfaces for creating sessions and connecting to the server. |
com.sas.drugdev.remote.type | Provides classes and interfaces for retrieving type information. |
Uses of RemoteException in com.sas.drugdev.remote.admin |
---|
Methods in com.sas.drugdev.remote.admin that throw RemoteException | |
---|---|
boolean |
UserService.canManage()
Tests if the current user can manage user accounts on this SDD instance by verifying they have the User Manager policy. |
boolean |
GroupService.canManage()
Tests whether the current user can manage groups on this SDD instance as determined by their policies |
void |
UserService.changePassword(char[] currentPassword,
char[] newPassword)
Change the current user's password. |
void |
AdminService.changePassword(char[] currentPassword,
char[] newPassword)
Deprecated. Use UserService.changePassword(char[], char[]) instead.
Change the current user's password. |
RemoteGroup |
GroupService.create(GroupBean groupBean)
Creates a new group on the server as described by the GroupBean |
RemoteUser |
UserService.create(UserBean userBean)
Create the user described by the given UserBean. |
void |
GroupService.delete(Group group)
Deletes the specified group from the server as determined by the Group |
boolean |
GroupService.exists(GroupBean groupBean)
Tests whether the specified group exists on the server |
boolean |
UserService.exists(java.lang.String userId)
Tests if the user with the specified userId exists |
RemoteGroup |
GroupService.get(GroupBean groupBean)
Retrieves a group from the server as described by the GroupBean . |
RemoteUser |
UserService.get(java.lang.String userId)
Get the user with the specified userId. |
java.util.List |
UserService.getAll()
Gets a list of all users defined in SDD including active, inactive, and retired users. |
java.util.List |
GroupService.getAll()
Returns all the Group objects currently available on the server |
java.util.List |
AdminService.getGroupNames()
Deprecated. Use GroupService.get(GroupBean) instead.
Gets a list of all the group names in the system. |
java.util.Date |
UserService.getPasswordExpirationDate()
Get the date that the current user's password will expire. |
java.util.Date |
AdminService.getPasswordExpirationDate()
Deprecated. Use UserService.getPasswordExpirationDate() instead.
Get the date that the current user's password will expire. |
java.util.List |
GroupService.getUserGroups(User user)
Gets all the groups that a given user is in |
java.util.List |
AdminService.getUserIds()
Deprecated. Use UserService.getAll() instead.
Gets a list of all userids in the system where the user is active or inactive.
No retired userids are returned in the list. |
java.util.List |
UserService.getUsersWithPolicy(Policy policy)
Gets a list of all users with the given policy |
boolean |
AdminService.groupExists(java.lang.String groupName)
Deprecated. Use GroupService.exists(GroupBean) instead.
Tests whether a group of the given name exists. |
boolean |
GroupService.isUserInGroup(User user,
Group group)
Tests whether the specified User is in the given Group |
RemoteGroup |
GroupService.update(GroupBean groupBean)
Updates the group on the server with the parameters of the provided GroupBean . |
RemoteUser |
UserService.update(UserBean userBean)
Apply the changes that have been made on the given User on the server side. |
boolean |
AdminService.userExists(java.lang.String userid)
Deprecated. Use UserService.exists(String) instead.
Check whether a user with the given userid exists. This method will return true
if the user exists and is either active or inactive. It will return false if the
user doesn't exist or if the user exists, but is retired. |
Uses of RemoteException in com.sas.drugdev.remote.repository |
---|
Methods in com.sas.drugdev.remote.repository that throw RemoteException | |
---|---|
RemoteFile |
RepositoryService.checkinFile(File file)
Check in the file described by the given File. |
RemoteFile |
RepositoryService.checkinFile(File file,
java.lang.String comment)
Check in the file described by the given File. |
RemoteFile |
RepositoryService.checkoutFile(File file)
Checkout the file described by the given File. |
RemoteNode |
RepositoryService.copyNode(Node srcNode,
Node destNode)
Copy the node described by srcNode to destNode. |
RemoteContainer |
RepositoryService.createContainer(ContainerBean containerBean)
Create the container described by the given ContainerBean. |
RemoteFile |
RepositoryService.createFile(FileBean fileBean)
Create the file described by the given FileBean. |
void |
RepositoryService.deleteNode(Node node)
Delete the node described by the given Node. |
RemoteFile |
RepositoryService.enableVersioning(File file)
Enable versioning on the file described by the given File. |
AccessControlList |
RepositoryService.getAccessControlList(Node node)
Get the AccessControlList of the given node |
java.util.List |
RepositoryService.getChildren(Container container)
Get the children of the container described by the given Container. |
RemoteContainer |
RepositoryService.getContainer(ContainerBean container)
Get the Container described by the given ContainerBean. |
void |
RepositoryService.getContents(File file,
java.io.OutputStream stream)
Get the contents of the file described by the given file, including the version specified in file. |
RemoteFile |
RepositoryService.getFile(FileBean file)
Get the File described by the given FileBean. |
RemoteNode |
RepositoryService.getNode(NodeBean node)
Get the RemoteNode specified by the given NodeBean. |
RemoteNode |
RepositoryService.moveNode(Node srcNode,
Node destNode)
Move the node described by srcNode to destNode. |
boolean |
RepositoryService.nodeExists(NodeBean node)
Test whether the node described by the given NodeBean exists. |
RemoteNode |
RepositoryService.renameNode(Node srcNode,
java.lang.String newName)
Rename the node desribed by srcNode to the newName. |
RemoteContainer |
RepositoryService.setDefaultContainerVersioning(Container container,
ContainerDepth depth,
boolean onOff)
Turn on default versioning for the specified container, to the given depth. |
RemoteContainer |
RepositoryService.setOwnerOnContainer(Container container,
ContainerDepth depth,
java.lang.String userid)
Set the owner of the given container to the given userid. |
RemoteFile |
RepositoryService.setOwnerOnFile(File file,
java.lang.String userid)
Set the owner of the given file to the given userid. |
RemoteFile |
RepositoryService.undoCheckout(File file)
Undo the check out of the file described by the given File. |
void |
RepositoryService.updateContainerAccessControlList(AccessControlList acl,
AclRecurseBehavior recurseBehavior)
Apply the changes that have been made on the given AccessControlList on the server side. |
void |
RepositoryService.updateFileAccessControlList(AccessControlList acl)
Apply the changes that have been made on the given AccessControlList on the server side. |
RemoteNode |
RepositoryService.updateNode(NodeBean nodeBean)
Apply the changes that have been made on the given Node on the server side. |
Uses of RemoteException in com.sas.drugdev.remote.sas |
---|
Methods in com.sas.drugdev.remote.sas that throw RemoteException | |
---|---|
java.util.List |
SASService.getProcessParameters(File file)
Gets the parameters as defined in the current SDD process. |
RemoteFile |
SASService.publishProcess(FileBean processFile,
java.util.List parameters)
Takes the SAS code contents on the FileBean and the associated list of parameters and saves it to SDD as a process. |
Uses of RemoteException in com.sas.drugdev.remote.session |
---|
Methods in com.sas.drugdev.remote.session that throw RemoteException | |
---|---|
void |
SessionAuthenticator.connect(java.net.URL url,
Credentials credentials)
Internal method. |
static Session |
SessionFactory.newSession(java.net.URL url,
Credentials credentials)
Create and authenticate the Session . |
Uses of RemoteException in com.sas.drugdev.remote.type |
---|
Methods in com.sas.drugdev.remote.type that throw RemoteException | |
---|---|
RemoteType |
TypeService.getType(java.lang.String name)
Get the Type with the given name, null if the type doesn't exist. |
java.util.List |
TypeService.getTypes()
Get a list of all Type s defined in SDD. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |