本文整理汇总了Java中gov.nih.nci.security.authorization.domainobjects.ProtectionGroup.setProtectionGroupDescription方法的典型用法代码示例。如果您正苦于以下问题:Java ProtectionGroup.setProtectionGroupDescription方法的具体用法?Java ProtectionGroup.setProtectionGroupDescription怎么用?Java ProtectionGroup.setProtectionGroupDescription使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gov.nih.nci.security.authorization.domainobjects.ProtectionGroup
的用法示例。
在下文中一共展示了ProtectionGroup.setProtectionGroupDescription方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testCreateProtectionGroup
import gov.nih.nci.security.authorization.domainobjects.ProtectionGroup; //导入方法依赖的package包/类
private void testCreateProtectionGroup() throws CSTransactionException
{
byte tempFlag = 0;
for (int x=0; x<NumberOfProtectionGroupsToTest; x++)
{
ProtectionGroup tempProtectionGroup = new ProtectionGroup();
java.util.Date CurrentTime = new java.util.Date();
tempProtectionGroup.setProtectionGroupName(ProtectionGroupStringArray[x][0]);
tempProtectionGroup.setProtectionGroupDescription(ProtectionGroupStringArray[x][1]);
tempProtectionGroup.setUpdateDate(CurrentTime);
tempProtectionGroup.setLargeElementCountFlag(tempFlag);
if (tempFlag == 1)
tempFlag = 0;
else
tempFlag = 1;
userProvisioningManager.createProtectionGroup(tempProtectionGroup);
}
}
示例2: testModifyProtectionGroup
import gov.nih.nci.security.authorization.domainobjects.ProtectionGroup; //导入方法依赖的package包/类
private void testModifyProtectionGroup() throws CSTransactionException, CSObjectNotFoundException
{
byte tempFlag = 0;
ProtectionGroup tempProtectionGroup = new ProtectionGroup();
java.util.Date tempDate = new java.util.Date();
tempProtectionGroup = userProvisioningManager.getProtectionGroupById("4");
tempProtectionGroup.setProtectionGroupName(ProtectionGroupStringArray[3][0] + "Modified");
tempProtectionGroup.setProtectionGroupDescription(ProtectionGroupStringArray[3][1] + "Modified");
tempProtectionGroup.setUpdateDate(tempDate);
tempProtectionGroup.setLargeElementCountFlag(tempFlag);
userProvisioningManager.modifyProtectionGroup(tempProtectionGroup);
tempProtectionGroup = userProvisioningManager.getProtectionGroupById("4");
assertEquals("\nModifyProtectionGroup did not modify the Group Name\n", ProtectionGroupStringArray[3][0] + "Modified", tempProtectionGroup.getProtectionGroupName());
assertEquals("\nModifyProtectionGroup did not modify the Group Description\n", ProtectionGroupStringArray[3][1] + "Modified", tempProtectionGroup.getProtectionGroupDescription());
assertEquals("\nModifyProtectionGroup did not modify the Large Element Count Flag\n", tempFlag, tempProtectionGroup.getLargeElementCountFlag());
//assertEquals("\nModifyProtectionGroup did not modify the UpdateDate\n", tempDate, tempProtectionGroup.getUpdateDate());
}
示例3: testProtectionGroupCreate
import gov.nih.nci.security.authorization.domainobjects.ProtectionGroup; //导入方法依赖的package包/类
public void testProtectionGroupCreate(){
//UserProvisioningManager upm = SecurityServiceProvider.getUserProvisioningManger("Security");
try{
for(int i=1;i<101;i++){
ProtectionGroup pg = new ProtectionGroup();
pg.setProtectionGroupName("protection_group_name_="+i);
pg.setProtectionGroupDescription("PG_Desc_"+i);
upm.createProtectionGroup(pg);
System.out.println("The returned id is"+pg.getProtectionGroupId());
}
}catch(Exception ex){
ex.printStackTrace();
}
}
示例4: testCreateProtectionGroup
import gov.nih.nci.security.authorization.domainobjects.ProtectionGroup; //导入方法依赖的package包/类
private void testCreateProtectionGroup() throws CSTransactionException
{
byte tempFlag = 0;
for (int x = 0; x < NumberOfProtectionGroupsToTest; x++)
{
ProtectionGroup tempProtectionGroup = new ProtectionGroup();
java.util.Date CurrentTime = new java.util.Date();
tempProtectionGroup.setProtectionGroupName(ProtectionGroupStringArray[x][0]);
tempProtectionGroup.setProtectionGroupDescription(ProtectionGroupStringArray[x][1]);
tempProtectionGroup.setUpdateDate(CurrentTime);
tempProtectionGroup.setLargeElementCountFlag(tempFlag);
if (tempFlag == 1)
tempFlag = 0;
else
tempFlag = 1;
userProvisioningManager.createProtectionGroup(tempProtectionGroup);
}
}
示例5: testCreateProtectionGroup
import gov.nih.nci.security.authorization.domainobjects.ProtectionGroup; //导入方法依赖的package包/类
private static void testCreateProtectionGroup() throws CSTransactionException
{
byte tempFlag = 0;
for (int x=0; x<NumberOfProtectionGroupsToTest; x++)
{
ProtectionGroup tempProtectionGroup = new ProtectionGroup();
java.util.Date CurrentTime = new java.util.Date();
tempProtectionGroup.setProtectionGroupName(ProtectionGroupStringArray[x][0]);
tempProtectionGroup.setProtectionGroupDescription(ProtectionGroupStringArray[x][1]);
tempProtectionGroup.setUpdateDate(CurrentTime);
tempProtectionGroup.setLargeElementCountFlag(tempFlag);
if (tempFlag == 1)
tempFlag = 0;
else
tempFlag = 1;
userProvisioningManager.createProtectionGroup(tempProtectionGroup);
}
}
示例6: xtestCreateProtectionGroup
import gov.nih.nci.security.authorization.domainobjects.ProtectionGroup; //导入方法依赖的package包/类
private void xtestCreateProtectionGroup() throws CSTransactionException
{
byte tempFlag = 0;
for (int x=0; x<NumberOfProtectionGroupsToxtest; x++)
{
ProtectionGroup tempProtectionGroup = new ProtectionGroup();
java.util.Date CurrentTime = new java.util.Date();
tempProtectionGroup.setProtectionGroupName(ProtectionGroupStringArray[x][0]);
tempProtectionGroup.setProtectionGroupDescription(ProtectionGroupStringArray[x][1]);
tempProtectionGroup.setUpdateDate(CurrentTime);
tempProtectionGroup.setLargeElementCountFlag(tempFlag);
if (tempFlag == 1)
tempFlag = 0;
else
tempFlag = 1;
userProvisioningManager.createProtectionGroup(tempProtectionGroup);
}
}
示例7: xtestModifyProtectionGroup
import gov.nih.nci.security.authorization.domainobjects.ProtectionGroup; //导入方法依赖的package包/类
private void xtestModifyProtectionGroup() throws CSTransactionException, CSObjectNotFoundException
{
byte tempFlag = 0;
ProtectionGroup tempProtectionGroup = new ProtectionGroup();
java.util.Date tempDate = new java.util.Date();
tempProtectionGroup = userProvisioningManager.getProtectionGroupById("4");
tempProtectionGroup.setProtectionGroupName(ProtectionGroupStringArray[3][0] + "Modified");
tempProtectionGroup.setProtectionGroupDescription(ProtectionGroupStringArray[3][1] + "Modified");
tempProtectionGroup.setUpdateDate(tempDate);
tempProtectionGroup.setLargeElementCountFlag(tempFlag);
userProvisioningManager.modifyProtectionGroup(tempProtectionGroup);
tempProtectionGroup = userProvisioningManager.getProtectionGroupById("4");
assertEquals("\nModifyProtectionGroup did not modify the Group Name\n", ProtectionGroupStringArray[3][0] + "Modified", tempProtectionGroup.getProtectionGroupName());
assertEquals("\nModifyProtectionGroup did not modify the Group Description\n", ProtectionGroupStringArray[3][1] + "Modified", tempProtectionGroup.getProtectionGroupDescription());
assertEquals("\nModifyProtectionGroup did not modify the Large Element Count Flag\n", tempFlag, tempProtectionGroup.getLargeElementCountFlag());
//assertEquals("\nModifyProtectionGroup did not modify the UpdateDate\n", tempDate, tempProtectionGroup.getUpdateDate());
}
示例8: testProtectionGroupCreate
import gov.nih.nci.security.authorization.domainobjects.ProtectionGroup; //导入方法依赖的package包/类
public void testProtectionGroupCreate(){
//UserProvisioningManager upm = SecurityServiceProvider.getUserProvisioningManger("Security");
try{
AuthorizationManager authorizationManager = SecurityServiceProvider.getAuthorizationManager("caarray");
for(int i=1;i<101;i++){
ProtectionGroup pg = new ProtectionGroup();
pg.setProtectionGroupName("protection_group_name_="+i);
pg.setProtectionGroupDescription("PG_Desc_"+i);
authorizationManager.createProtectionGroup(pg);
System.out.println("The returned id is"+pg.getProtectionGroupId());
}
}catch(Exception ex){
ex.printStackTrace();
}
}
示例9: testCreateProtectionGroup
import gov.nih.nci.security.authorization.domainobjects.ProtectionGroup; //导入方法依赖的package包/类
private static void testCreateProtectionGroup() throws CSTransactionException
{
byte tempFlag = 0;
for (int x=0; x<NumberOfProtectionGroupsToTest; x++)
{
ProtectionGroup tempProtectionGroup = new ProtectionGroup();
java.util.Date CurrentTime = new java.util.Date();
tempProtectionGroup.setProtectionGroupName(ProtectionGroupStringArray[x][0]);
tempProtectionGroup.setProtectionGroupDescription(ProtectionGroupStringArray[x][1]);
tempProtectionGroup.setUpdateDate(CurrentTime);
tempProtectionGroup.setLargeElementCountFlag(tempFlag);
if (tempFlag == 1)
tempFlag = 0;
else
tempFlag = 1;
userProvisioningManager.createProtectionGroup(tempProtectionGroup);
}
}
示例10: createProtectionGroup
import gov.nih.nci.security.authorization.domainobjects.ProtectionGroup; //导入方法依赖的package包/类
/**
* Test method: void createPrivilege(Privilege)
*/
protected ProtectionGroup createProtectionGroup()
throws CSTransactionException {
ProtectionGroup g = new ProtectionGroup();
g.setProtectionGroupDescription("Test PG Desc");
g.setProtectionGroupName("Test PG Name" + System.currentTimeMillis());
upm.createProtectionGroup(g);
System.out.println("Created Protection Group with ID: "
+ g.getProtectionGroupId());
return g;
}
示例11: createDefaultUptProtectionGroup
import gov.nih.nci.security.authorization.domainobjects.ProtectionGroup; //导入方法依赖的package包/类
private ProtectionGroup createDefaultUptProtectionGroup(UserProvisioningManager upManager, String pgName, Application application) throws CSTransactionException
{
ProtectionGroup pg=new ProtectionGroup();
pg.setProtectionGroupName(pgName);
pg.setProtectionGroupDescription("Default protection group for \""+pgName +"\"; Do not chnage name.");
upManager.createProtectionGroup(pg);
// pg has been as to current application
//set it to target application
pg.setApplication(application);
upManager.modifyProtectionGroup(pg);
return pg;
}