本文整理汇总了Java中org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec.setReportName方法的典型用法代码示例。如果您正苦于以下问题:Java ECReportSpec.setReportName方法的具体用法?Java ECReportSpec.setReportName怎么用?Java ECReportSpec.setReportName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec
的用法示例。
在下文中一共展示了ECReportSpec.setReportName方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testCheckReportSpecs
import org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec; //导入方法依赖的package包/类
/**
* test the report spec validation.
* @throws ECSpecValidationException violation against the specification.
*/
@Test
public void testCheckReportSpecs() throws ECSpecValidationException {
ECSpec.ReportSpecs reportSpecs = new ECSpec.ReportSpecs();
ECReportSpec spec1 = new ECReportSpec();
spec1.setReportName("spec1");
ECReportSpec spec2 = new ECReportSpec();
spec2.setReportName("spec2");
ECReportOutputSpec outputSpec1 = new ECReportOutputSpec();
outputSpec1.setIncludeCount(true);
spec1.setOutput(outputSpec1);
ECReportOutputSpec outputSpec2 = new ECReportOutputSpec();
outputSpec2.setIncludeEPC(true);
spec2.setOutput(outputSpec2);
reportSpecs.getReportSpec().add(spec1);
reportSpecs.getReportSpec().add(spec2);
Assert.assertTrue(validator.checkReportSpecs(reportSpecs));
}
示例2: testCheckReportSpecNoDuplicateReportSpecNames
import org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec; //导入方法依赖的package包/类
/**
* test the report spec validation - specifically test that no two report specs can have the same name.
* @throws ECSpecValidationException violation against the specification.
*/
@Test
public void testCheckReportSpecNoDuplicateReportSpecNames() throws ECSpecValidationException {
ECReportSpec spec1 = new ECReportSpec();
spec1.setReportName("spec1");
ECReportSpec spec2 = new ECReportSpec();
spec2.setReportName("spec2");
List<ECReportSpec> reportSpecList = new LinkedList<ECReportSpec> ();
reportSpecList.add(spec1);
reportSpecList.add(spec2);
Set<String> names = validator.checkReportSpecNoDuplicateReportSpecNames(reportSpecList);
Assert.assertNotNull(names);
Assert.assertTrue(names.contains("spec1"));
Assert.assertTrue(names.contains("spec2"));
}
示例3: createECReportSpec
import org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec; //导入方法依赖的package包/类
public static ECReportSpec createECReportSpec() {
// create spec
ECReportSpec spec = new ECReportSpec();
// set paramteters
spec.setReportName(REPORT_NAME);
spec.setReportOnlyOnChange(REPORT_ONLY_ON_CHANGE);
spec.setReportIfEmpty(REPORT_IF_EMPTY);
spec.setReportSet(createECReportSetSpec());
spec.setFilterSpec(createECFilterSpec());
spec.setGroupSpec(new ECGroupSpec());
spec.getGroupSpec().getPattern().addAll(GROUP_PATTERNS);
spec.setOutput(createECReportOutputSpec());
return spec;
}
示例4: testCheckReportSpecs
import org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec; //导入方法依赖的package包/类
/**
* test the report spec validation.
* @throws ECSpecValidationException violation against the specification.
*/
//@Test
public void testCheckReportSpecs() throws ECSpecValidationException {
ECSpec.ReportSpecs reportSpecs = new ECSpec.ReportSpecs();
ECReportSpec spec1 = new ECReportSpec();
spec1.setReportName("spec1");
ECReportSpec spec2 = new ECReportSpec();
spec2.setReportName("spec2");
ECReportOutputSpec outputSpec1 = new ECReportOutputSpec();
outputSpec1.setIncludeCount(true);
spec1.setOutput(outputSpec1);
ECReportOutputSpec outputSpec2 = new ECReportOutputSpec();
outputSpec2.setIncludeEPC(true);
spec2.setOutput(outputSpec2);
reportSpecs.getReportSpec().add(spec1);
reportSpecs.getReportSpec().add(spec2);
Assert.assertTrue(validator.checkReportSpecs(reportSpecs));
}
示例5: testCheckReportSpecNoDuplicateReportSpecNamesIllegalInput
import org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec; //导入方法依赖的package包/类
/**
* test the report spec validation - specifically test that no two report specs can have the same name - give illegal input.
* @throws ECSpecValidationException violation against the specification.
*/
@Test(expected = ECSpecValidationException.class)
public void testCheckReportSpecNoDuplicateReportSpecNamesIllegalInput() throws ECSpecValidationException {
ECReportSpec spec1 = new ECReportSpec();
spec1.setReportName("spec1");
ECReportSpec spec2 = new ECReportSpec();
spec2.setReportName("spec1");
List<ECReportSpec> reportSpecList = new LinkedList<ECReportSpec> ();
reportSpecList.add(spec1);
reportSpecList.add(spec2);
validator.checkReportSpecNoDuplicateReportSpecNames(reportSpecList);
}
示例6: createDummyReportSpecs
import org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec; //导入方法依赖的package包/类
public ReportSpecs createDummyReportSpecs() {
ExcludePatterns excludePatterns = new ExcludePatterns();
excludePatterns.getExcludePattern().add(FILTER_SPEC_EXCLUDE_PATTERN);
IncludePatterns includePatterns = new IncludePatterns();
includePatterns.getIncludePattern().add(FILTER_SPEC_INCLUDE_PATTERN);
ECFilterSpec filterSpec = new ECFilterSpec();
filterSpec.setExcludePatterns(excludePatterns);
filterSpec.setIncludePatterns(includePatterns);
ECGroupSpec groupSpec = new ECGroupSpec();
groupSpec.getPattern().add(GROUP_SPEC_PATTERN);
ECReportOutputSpec outputSpec = new ECReportOutputSpec();
outputSpec.setIncludeCount(true);
outputSpec.setIncludeEPC(true);
outputSpec.setIncludeRawDecimal(true);
outputSpec.setIncludeRawHex(true);
outputSpec.setIncludeTag(true);
ECReportSetSpec reportSet = new ECReportSetSpec();
reportSet.setSet(REPORT_SET);
ECReportSpec reportSpec = new ECReportSpec();
reportSpec.setFilterSpec(filterSpec);
reportSpec.setGroupSpec(groupSpec);
reportSpec.setOutput(outputSpec);
reportSpec.setReportIfEmpty(true);
reportSpec.setReportName(REPORT_NAME);
reportSpec.setReportOnlyOnChange(true);
reportSpec.setReportSet(reportSet);
ReportSpecs specs = new ReportSpecs();
specs.getReportSpec().add(reportSpec);
return specs;
}